summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap.result
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2005-08-09 11:21:45 +0300
committerunknown <monty@mysql.com>2005-08-09 11:21:45 +0300
commitc4228519a663869ab3ab3d969890e4c6f5831e0f (patch)
tree0978309486eacab28b3d59db151c9119ba7ff8ec /mysql-test/r/heap.result
parent807a9c8dffa784557e0ed4dcd72175d44e1af917 (diff)
downloadmariadb-git-c4228519a663869ab3ab3d969890e4c6f5831e0f.tar.gz
Fixed test that failed on 32 bit systems
sql/ha_innodb.cc: Don't print not critical warning if log_warnings is not set Use sql_print_warning() instead of fprintf(). (We should not use fprintf() as this causes problems on windows and with the embedded server)
Diffstat (limited to 'mysql-test/r/heap.result')
-rw-r--r--mysql-test/r/heap.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result
index 4725ff6b814..969cb06e9fe 100644
--- a/mysql-test/r/heap.result
+++ b/mysql-test/r/heap.result
@@ -705,6 +705,6 @@ create table t1 (c char(10)) engine=memory;
create table t2 (c varchar(10)) engine=memory;
show table status like 't_';
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
-t1 MEMORY 10 Fixed 0 11 0 720192 0 0 NULL NULL NULL NULL latin1_swedish_ci NULL
-t2 MEMORY 10 Fixed 0 12 0 785664 0 0 NULL NULL NULL NULL latin1_swedish_ci NULL
+t1 MEMORY 10 Fixed 0 11 0 # 0 0 NULL NULL NULL NULL latin1_swedish_ci NULL
+t2 MEMORY 10 Fixed 0 12 0 # 0 0 NULL NULL NULL NULL latin1_swedish_ci NULL
drop table t1, t2;