diff options
author | unknown <konstantin@mysql.com> | 2004-06-24 20:08:42 +0400 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-06-24 20:08:42 +0400 |
commit | 57ee2443eafa0433740c28335a532368c251616c (patch) | |
tree | 557af228d3312f09aad76172c41e30b3134a57a9 /tests | |
parent | 8d0f2687779de0354d14c83e093991d811138b42 (diff) | |
download | mariadb-git-57ee2443eafa0433740c28335a532368c251616c.tar.gz |
- 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
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/client_test.c b/tests/client_test.c index de9f9cfd577..191a6f4dff8 100644 --- a/tests/client_test.c +++ b/tests/client_test.c @@ -6622,8 +6622,8 @@ static void test_frm_bug() row= mysql_fetch_row(result); mytest(row); - fprintf(stdout, "\n Comment: %s", row[16]); - assert(row[16] != 0); + fprintf(stdout, "\n Comment: %s", row[17]); + assert(row[17] != 0); mysql_free_result(result); mysql_stmt_close(stmt); |