mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Changes for --with-server-suffix
Fixed mutex bug in logging (crash on windows when doing SET PASSWORD=) Changed MERGE tables to not use FILE BitKeeper/deleted/.del-m.MRG~3f5632c37af00f18: Delete: mysql-test/std_data/m.MRG BitKeeper/deleted/.del-m.frm~e351dfe0b6824c0c: Delete: mysql-test/std_data/m.frm Docs/manual.texi: Added DNS section configure.in: Update to 3.23.32 include/Makefile.am: Added my_config.h include/mysql_com.h: Changes for --with-server-suffix include/mysql_version.h.in: cleanup merge/open.c: Don't use FILE mysql-test/Makefile.am: removed not needed data files mysql-test/r/merge.result: generate merge file mysql-test/t/merge.test: generate merge file sql-bench/Results/ATIS-mysql-NT_4.0: New benchmark results sql-bench/Results/RUN-mysql-NT_4.0: New benchmark results sql-bench/Results/alter-table-mysql-NT_4.0: New benchmark results sql-bench/Results/big-tables-mysql-NT_4.0: New benchmark results sql-bench/Results/connect-mysql-NT_4.0: New benchmark results sql-bench/Results/create-mysql-NT_4.0: New benchmark results sql-bench/Results/insert-mysql-NT_4.0: New benchmark results sql-bench/Results/select-mysql-NT_4.0: New benchmark results sql-bench/Results/wisconsin-mysql-NT_4.0: New benchmark results sql/log.cc: Ensure that mutex are initialized before used sql/log_event.h: Changes for --with-server-suffix sql/mysql_priv.h: Changes for --with-server-suffix sql/mysqlbinlog.cc: Changes for --with-server-suffix sql/mysqld.cc: changed strnmov -> strmake sql/net_pkg.cc: Prepare for adding char-set conversion to SHOW commands
This commit is contained in:
@ -30,8 +30,7 @@ dist-hook:
|
||||
cp -p $(srcdir)/t/*.test $(srcdir)/t/*.opt $(distdir)/t
|
||||
cp -p $(srcdir)/include/*.inc $(distdir)/include
|
||||
cp -p $(srcdir)/r/*.result $(srcdir)/r/*.require $(distdir)/r
|
||||
cp -p $(srcdir)/std_data/*.dat $(srcdir)/std_data/*.frm \
|
||||
$(srcdir)/std_data/*.MRG $(distdir)/std_data
|
||||
cp -p $(srcdir)/std_data/*.dat $(distdir)/std_data
|
||||
|
||||
install-data-local:
|
||||
$(mkinstalldirs) \
|
||||
|
@ -106,4 +106,4 @@ incr othr
|
||||
2 24
|
||||
4 33
|
||||
3 53
|
||||
c
|
||||
a
|
||||
|
Binary file not shown.
@ -75,5 +75,6 @@ drop table t3,t2,t1;
|
||||
#
|
||||
# Test table without unions
|
||||
#
|
||||
select * from m;
|
||||
|
||||
create table t1 (a int not null) type=merge;
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user