summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorkonstantin@mysql.com <>2004-06-24 20:08:42 +0400
committerkonstantin@mysql.com <>2004-06-24 20:08:42 +0400
commit674a1c4e1802f6819a6e428a6684bfe3c06c161b (patch)
tree557af228d3312f09aad76172c41e30b3134a57a9 /tests
parent29b88ff53902b4dd0bbcd06b3e2a19eefbed49c6 (diff)
downloadmariadb-git-674a1c4e1802f6819a6e428a6684bfe3c06c161b.tar.gz
- fixed test_frm_bug test to work with increased number of columns in
result of SHOW TABLE STATUS
Diffstat (limited to 'tests')
-rw-r--r--tests/client_test.c4
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);