mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Fix value returned from SELECT of unsigned long system
variables. (Bug #10351)
This commit is contained in:
parent
d6d1a9aae2
commit
72a6c71d08
5 changed files with 26 additions and 3 deletions
|
|
@ -406,3 +406,13 @@ drop table t1;
|
|||
set @@warning_count=1;
|
||||
--error 1238
|
||||
set @@global.error_count=1;
|
||||
|
||||
#
|
||||
# Bug #10351: Setting max_heap_table_size to 4G fails
|
||||
#
|
||||
set @@max_heap_table_size= 4294967296;
|
||||
select @@max_heap_table_size;
|
||||
set global max_heap_table_size= 4294967296;
|
||||
select @@max_heap_table_size;
|
||||
set @@max_heap_table_size= 4294967296;
|
||||
select @@max_heap_table_size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue