diff options
author | unknown <kent@mysql.com> | 2006-02-27 02:56:34 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2006-02-27 02:56:34 +0100 |
commit | 8ead0fe65516c282bd196be79a2ec37a94cbb692 (patch) | |
tree | d4fd5b5faa9a188512364ed13ac4d2801dc3a82d | |
parent | 1e3e30bdc26374d2f16cc67bdff87b172909148d (diff) | |
download | mariadb-git-8ead0fe65516c282bd196be79a2ec37a94cbb692.tar.gz |
example.vcproj:
Bug#17721, hang in exampledb, solved by msvensson
drop-on-restart.inc:
Added drop of tables t00,t03,t04
mysql-test/include/drop-on-restart.inc:
Added drop of tables t00,t03,t04
VC++Files/storage/example/example.vcproj:
Bug#17721, hang in exampledb, solved by msvensson
-rw-r--r-- | VC++Files/storage/example/example.vcproj | 8 | ||||
-rw-r--r-- | mysql-test/include/drop-on-restart.inc | 1 |
2 files changed, 5 insertions, 4 deletions
diff --git a/VC++Files/storage/example/example.vcproj b/VC++Files/storage/example/example.vcproj index 3a2daa55676..257a1e77b71 100644 --- a/VC++Files/storage/example/example.vcproj +++ b/VC++Files/storage/example/example.vcproj @@ -24,7 +24,7 @@ InlineFunctionExpansion="1" OptimizeForProcessor="2" AdditionalIncludeDirectories="../../include,../../regex,../../sql" - PreprocessorDefinitions="DBUG_OFF;_WINDOWS;NDEBUG" + PreprocessorDefinitions="DBUG_OFF;_WINDOWS;NDEBUG;WITH_PARTITION_STORAGE_ENGINE" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" @@ -73,7 +73,7 @@ Optimization="0" OptimizeForProcessor="2" AdditionalIncludeDirectories="../../include,../../regex,../../sql" - PreprocessorDefinitions="_DEBUG;SAFEMALLOC;SAFE_MUTEX;_WINDOWS;USE_TLS" + PreprocessorDefinitions="_DEBUG;SAFEMALLOC;SAFE_MUTEX;_WINDOWS;USE_TLS;WITH_PARTITION_STORAGE_ENGINE" StringPooling="TRUE" RuntimeLibrary="1" PrecompiledHeaderFile=".\example___Win32_TLS_DEBUG/example.pch" @@ -123,7 +123,7 @@ InlineFunctionExpansion="1" OptimizeForProcessor="2" AdditionalIncludeDirectories="../../include,../../regex,../../sql" - PreprocessorDefinitions="DBUG_OFF;_WINDOWS;NDEBUG;USE_TLS" + PreprocessorDefinitions="DBUG_OFF;_WINDOWS;NDEBUG;USE_TLS;WITH_PARTITION_STORAGE_ENGINE" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" @@ -172,7 +172,7 @@ Optimization="0" OptimizeForProcessor="2" AdditionalIncludeDirectories="../../include,../../regex,../../sql" - PreprocessorDefinitions="_DEBUG;SAFEMALLOC;SAFE_MUTEX;_WINDOWS" + PreprocessorDefinitions="_DEBUG;SAFEMALLOC;SAFE_MUTEX;_WINDOWS;WITH_PARTITION_STORAGE_ENGINE" StringPooling="TRUE" RuntimeLibrary="1" PrecompiledHeaderFile=".\debug/example.pch" diff --git a/mysql-test/include/drop-on-restart.inc b/mysql-test/include/drop-on-restart.inc index ecdd24ebef1..af1d0d893e0 100644 --- a/mysql-test/include/drop-on-restart.inc +++ b/mysql-test/include/drop-on-restart.inc @@ -431,6 +431,7 @@ drop table if exists new_t2; drop table if exists not_exist; drop table if exists r1; drop table if exists t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10,t11,t12,t21,t70; +drop table if exists t00,t03,t04; drop table if exists t0_template; drop table if exists t1Aa,t2Aa,v1Aa,v2Aa; drop table if exists t1_1,t1_2,t9_1,t9_2,t1aa,t2aa; |