1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fix minimum value of query_prealloc_size to be the same as its default. (Bug #13334)

mysql-test/r/variables.result:
  Add new results
mysql-test/t/variables.test:
  Add new regression test
sql/mysqld.cc:
  Fix minimum value of query_prealloc_size to be the same as its default.
This commit is contained in:
unknown
2005-10-10 19:39:16 -07:00
parent a043cc536e
commit 4c3f3bd826
3 changed files with 16 additions and 2 deletions

View File

@ -499,3 +499,8 @@ set names latin1;
select @@have_innodb;
@@have_innodb
#
set @test = @@query_prealloc_size;
set @@query_prealloc_size = @test;
select @@query_prealloc_size = @test;
@@query_prealloc_size = @test
1