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:
@ -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");
|
||||
|
||||
|
Reference in New Issue
Block a user