1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +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

@@ -7348,7 +7348,7 @@ int get_part_iter_for_interval_cols_via_map(partition_info *part_info,
PARTITION_ITERATOR *part_iter)
{
uint32 nparts;
get_col_endpoint_func get_col_endpoint;
get_col_endpoint_func UNINIT_VAR(get_col_endpoint);
DBUG_ENTER("get_part_iter_for_interval_cols_via_map");
if (part_info->part_type == RANGE_PARTITION)