diff options
author | unknown <reggie@linux.site> | 2006-02-16 15:02:44 -0600 |
---|---|---|
committer | unknown <reggie@linux.site> | 2006-02-16 15:02:44 -0600 |
commit | fc5f022ee156b47ad45e0f3d7de08a4f3e3fd7aa (patch) | |
tree | 8714eda7b2981d1afa121a31a4772cebe4bf829b /libmysqld | |
parent | 80263d114e48bf7a679138214c012429e205f472 (diff) | |
download | mariadb-git-fc5f022ee156b47ad45e0f3d7de08a4f3e3fd7aa.tar.gz |
BUG# 15408 Partitions: subpartition names are not unique
THis patch goes along with 1.2098.23.1 to form the complete patch
libmysqld/Makefile.am:
added partition_info.cpp to libmysqld sources
sql/ha_ndbcluster.cc:
using the new member versions of these
sql/sql_partition.cc:
using the member version of is_sub_partitioned
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/Makefile.am b/libmysqld/Makefile.am index 62418c0d669..7b9e7431beb 100644 --- a/libmysqld/Makefile.am +++ b/libmysqld/Makefile.am @@ -67,7 +67,7 @@ sqlsources = derror.cc field.cc field_conv.cc strfunc.cc filesort.cc \ event_executor.cc event.cc event_timed.cc \ rpl_filter.cc sql_partition.cc handlerton.cc sql_plugin.cc \ sql_tablespace.cc \ - rpl_injector.cc my_user.c + rpl_injector.cc my_user.c partition_info.cpp libmysqld_int_a_SOURCES= $(libmysqld_sources) $(libmysqlsources) $(sqlsources) EXTRA_libmysqld_a_SOURCES = ha_innodb.cc ha_berkeley.cc ha_archive.cc \ |