1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

fixes for non-debug builds (CMAKE_BUILD_TYPE=Release or RelWithDebInfo)

client/CMakeLists.txt:
  1. -rdynamic is a linker flag.
  2. it should be used in all builds, not debug only
libmysql/get_password.c:
  prefer a standard function, when possible
  (otherwise a plugin will need to load it from the client)
This commit is contained in:
Sergei Golubchik
2012-01-17 09:11:20 +01:00
parent 8b278b4415
commit 1433621c14
5 changed files with 4 additions and 6 deletions

View File

@ -1722,7 +1722,7 @@ bool add_table_for_trigger(THD *thd,
LEX *lex= thd->lex;
char trn_path_buff[FN_REFLEN];
LEX_STRING trn_path= { trn_path_buff, 0 };
LEX_STRING tbl_name;
LEX_STRING tbl_name= null_lex_str;
DBUG_ENTER("add_table_for_trigger");