diff options
author | unknown <konstantin@mysql.com> | 2004-09-16 22:13:24 +0400 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-09-16 22:13:24 +0400 |
commit | 408ef495756d54292939f3b25a50e710b9c86f70 (patch) | |
tree | 67912f70caa22c565b5d3df01beae04cd44f861a | |
parent | 38779aa81c1d5038546eff18a112698f27dd1698 (diff) | |
download | mariadb-git-408ef495756d54292939f3b25a50e710b9c86f70.tar.gz |
A quick fix for bug#5556: replace a column of SHOW TABLE STATUS resultmysql-4.1.5
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.
mysql-test/t/ps.test:
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 value of record
pointer. It's different on QNX, so the result difference is intentional.
-rw-r--r-- | mysql-test/t/ps.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test index cbc76e02b42..c739e28849e 100644 --- a/mysql-test/t/ps.test +++ b/mysql-test/t/ps.test @@ -200,9 +200,9 @@ drop table t1; # create table t1 ( a int primary key, b varchar(30)) engine = MYISAM ; prepare stmt1 from ' show table status from test like ''t1%'' '; ---replace_column 12 # 13 # 14 # +--replace_column 8 4294967295 12 # 13 # 14 # execute stmt1; ---replace_column 12 # 13 # 14 # +--replace_column 8 4294967295 12 # 13 # 14 # show table status from test like 't1%' ; deallocate prepare stmt1 ; drop table t1; |