Below is the list of changes that have just been committed into a local
5.1 repository of kostja. When kostja does a push these changes
will be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2008-05-20 21:04:36+04:00, kostja@bodhi.(none) +1 -0
Update test results: the new minimum for the table definition
cache is 256.
mysql-test/r/table_definition_cache_basic.result@stripped, 2008-05-20 21:04:30+04:00,
kostja@bodhi.(none) +20 -10
Update test results: the new minimum for table definition cache is 256
diff -Nrup a/mysql-test/r/table_definition_cache_basic.result
b/mysql-test/r/table_definition_cache_basic.result
--- a/mysql-test/r/table_definition_cache_basic.result 2008-04-10 17:13:44 +04:00
+++ b/mysql-test/r/table_definition_cache_basic.result 2008-05-20 21:04:30 +04:00
@@ -1,27 +1,33 @@
SET @start_value = @@global.table_definition_cache;
SELECT @start_value;
@start_value
-128
+256
'#--------------------FN_DYNVARS_019_01------------------------#'
SET @@global.table_definition_cache = 100;
+Warnings:
+Warning 1292 Truncated incorrect table_definition_cache value: '100'
SET @@global.table_definition_cache = DEFAULT;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-128
+256
'#---------------------FN_DYNVARS_019_02-------------------------#'
SET @@global.table_definition_cache = DEFAULT;
SELECT @@global.table_definition_cache = 128;
@@global.table_definition_cache = 128
-1
+0
'#--------------------FN_DYNVARS_019_03------------------------#'
SET @@global.table_definition_cache = 1;
+Warnings:
+Warning 1292 Truncated incorrect table_definition_cache value: '1'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-1
+256
SET @@global.table_definition_cache = 2;
+Warnings:
+Warning 1292 Truncated incorrect table_definition_cache value: '2'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-2
+256
SET @@global.table_definition_cache = 524287;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
@@ -36,13 +42,13 @@ Warnings:
Warning 1292 Truncated incorrect table_definition_cache value: '0'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-1
+256
SET @@global.table_definition_cache = -1024;
Warnings:
Warning 1292 Truncated incorrect table_definition_cache value: '0'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-1
+256
SET @@global.table_definition_cache = 524289;
Warnings:
Warning 1292 Truncated incorrect table_definition_cache value: '524289'
@@ -73,17 +79,21 @@ WHERE VARIABLE_NAME='table_definition_ca
1
'#---------------------FN_DYNVARS_019_07----------------------#'
SET @@global.table_definition_cache = TRUE;
+Warnings:
+Warning 1292 Truncated incorrect table_definition_cache value: '1'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-1
+256
SET @@global.table_definition_cache = FALSE;
Warnings:
Warning 1292 Truncated incorrect table_definition_cache value: '0'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-1
+256
'#---------------------FN_DYNVARS_019_08----------------------#'
SET @@global.table_definition_cache = 5;
+Warnings:
+Warning 1292 Truncated incorrect table_definition_cache value: '5'
SELECT @@table_definition_cache = @@global.table_definition_cache;
@@table_definition_cache = @@global.table_definition_cache
1
@@ -99,4 +109,4 @@ ERROR 42S22: Unknown column 'table_defin
SET @@global.table_definition_cache = @start_value;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
-128
+256
| Thread |
|---|
| • bk commit into 5.1 tree (kostja:1.2649) | konstantin | 20 May |