diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-01-17 09:11:20 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-01-17 09:11:20 +0100 |
commit | 1433621c14e480dbedf3d7ea2b4885cff94bc6e5 (patch) | |
tree | 1c7e1a241c115c731fc91debcdc6fa714c931a7a /sql/sql_partition.cc | |
parent | 8b278b44154009168e4bf7b377f5b21159c5dfb4 (diff) | |
download | mariadb-git-1433621c14e480dbedf3d7ea2b4885cff94bc6e5.tar.gz |
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)
Diffstat (limited to 'sql/sql_partition.cc')
-rw-r--r-- | sql/sql_partition.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index ace785948e0..070b48f7a7b 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -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) |