Commit 57ee2443 authored by unknown's avatar unknown

- fixed test_frm_bug test to work with increased number of columns in

result of SHOW TABLE STATUS


BitKeeper/etc/ignore:
  added libmysqld/my_time.c
parent 8d0f2687
...@@ -787,3 +787,6 @@ vio/viotest-ssl ...@@ -787,3 +787,6 @@ vio/viotest-ssl
extra/tztime.cc extra/tztime.cc
extra/mysql_tzinfo_to_sql extra/mysql_tzinfo_to_sql
sql/mysql_tzinfo_to_sql_tztime.cc sql/mysql_tzinfo_to_sql_tztime.cc
sql/my_time.c
libmysql/my_time.c
libmysqld/my_time.c
This diff is collapsed.
...@@ -6622,8 +6622,8 @@ static void test_frm_bug() ...@@ -6622,8 +6622,8 @@ static void test_frm_bug()
row= mysql_fetch_row(result); row= mysql_fetch_row(result);
mytest(row); mytest(row);
fprintf(stdout, "\n Comment: %s", row[16]); fprintf(stdout, "\n Comment: %s", row[17]);
assert(row[16] != 0); assert(row[17] != 0);
mysql_free_result(result); mysql_free_result(result);
mysql_stmt_close(stmt); mysql_stmt_close(stmt);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment