diff --git a/Makefile.am b/Makefile.am index 81656d67f74..6f260fee8e4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -103,8 +103,10 @@ dist-hook: tags: support-files/build-tags -.PHONY: init-db bin-dist test test-full test-ps test-nr \ - test-ns test-pr test-unit +.PHONY: init-db bin-dist \ + test test-force test-full test-force-full test-force-mem \ + test-pl test-force-pl test-full-pl test-force-full-pl test-force-pl-mem \ + test-unit test-ps test-nr test-pr test-ns test-binlog-statement # Target 'test' will run the regression test suite using the built server. # @@ -119,23 +121,23 @@ test-unit: test-ps: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=mixed + @PERL@ ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=mixed test-nr: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --mysqld=--binlog-format=row + @PERL@ ./mysql-test-run.pl $(force) --mysqld=--binlog-format=row test-pr: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=row + @PERL@ ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=row test-ns: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --mysqld=--binlog-format=mixed + @PERL@ ./mysql-test-run.pl $(force) --mysqld=--binlog-format=mixed test-binlog-statement: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --mysqld=--binlog-format=statement + @PERL@ ./mysql-test-run.pl $(force) --mysqld=--binlog-format=statement test: test-unit test-ns test-pr diff --git a/include/mysql.h b/include/mysql.h index f2a82c99fc3..99d6fc27407 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -65,9 +65,9 @@ typedef int my_socket; #endif /* my_socket_defined */ #endif /* _global_h */ +#include "mysql_version.h" #include "mysql_com.h" #include "mysql_time.h" -#include "mysql_version.h" #include "typelib.h" #include "my_list.h" /* for LISTs used in 'MYSQL' and 'MYSQL_STMT' */ diff --git a/include/mysql_h.ic b/include/mysql_h.ic index 51cbb1fb7eb..f802d4bb31d 100644 --- a/include/mysql_h.ic +++ b/include/mysql_h.ic @@ -576,6 +576,7 @@ enum mysql_enum_shutdown_level SHUTDOWN_WAIT_UPDATES = (unsigned char)((1 << 3)), SHUTDOWN_WAIT_ALL_BUFFERS = ((unsigned char)((1 << 3)) << 1), SHUTDOWN_WAIT_CRITICAL_BUFFERS = (((unsigned char)((1 << 3)) << 1) + 1), + KILL_QUERY = 254, KILL_CONNECTION = 255, }; # 154 "mysql.h"