mirror of
https://github.com/MariaDB/server.git
synced 2025-08-05 13:16:09 +03:00
A quick fix for bug#5556: replace a column of SHOW TABLE STATUS result
with a fixed constant to pass on QNX: max_data_file_length is calculated depending on max possible value of record pointer. It's different on QNX, so the difference in results is OK.
This commit is contained in:
@@ -200,9 +200,9 @@ drop table t1;
|
|||||||
#
|
#
|
||||||
create table t1 ( a int primary key, b varchar(30)) engine = MYISAM ;
|
create table t1 ( a int primary key, b varchar(30)) engine = MYISAM ;
|
||||||
prepare stmt1 from ' show table status from test like ''t1%'' ';
|
prepare stmt1 from ' show table status from test like ''t1%'' ';
|
||||||
--replace_column 12 # 13 # 14 #
|
--replace_column 8 4294967295 12 # 13 # 14 #
|
||||||
execute stmt1;
|
execute stmt1;
|
||||||
--replace_column 12 # 13 # 14 #
|
--replace_column 8 4294967295 12 # 13 # 14 #
|
||||||
show table status from test like 't1%' ;
|
show table status from test like 't1%' ;
|
||||||
deallocate prepare stmt1 ;
|
deallocate prepare stmt1 ;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
Reference in New Issue
Block a user