diff options
author | unknown <gluh@gluh.mysql.r18.ru> | 2004-11-23 17:41:39 +0300 |
---|---|---|
committer | unknown <gluh@gluh.mysql.r18.ru> | 2004-11-23 17:41:39 +0300 |
commit | 3afa86dc344d96e8bdcacf7672a846407c91efa3 (patch) | |
tree | 317505fb908992b13c790b4dbdd9d355907f556b /tests | |
parent | 8941ac568573f059233f37e8bef48039b2ecff41 (diff) | |
download | mariadb-git-3afa86dc344d96e8bdcacf7672a846407c91efa3.tar.gz |
More test cases are added
Fixed bug 'using of alias with information schema tables in views'
removed compiler warnings
mysql-test/r/information_schema.result:
More test cases are added
mysql-test/t/information_schema.test:
More test cases are added
sql/sql_select.cc:
Fixed bug 'using of alias with information schema tables in views'
sql/sql_show.cc:
Fixed bug 'using of alias with information schema tables in views'
Changed length of some columns
sql/table.h:
Fixed bug 'using of alias with information schema tables in views'
tests/client_test.c:
Changed length of some columns
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/client_test.c b/tests/client_test.c index eb0dd840e40..4f76600aa2e 100644 --- a/tests/client_test.c +++ b/tests/client_test.c @@ -7280,7 +7280,7 @@ static void test_explain_bug() MYSQL_TYPE_STRING, 0, 0, "", 192, 0); verify_prepare_field(result, 1, "Type", "COLUMN_TYPE", - MYSQL_TYPE_STRING, 0, 0, "", 120, 0); + MYSQL_TYPE_BLOB, 0, 0, "", 193203, 0); verify_prepare_field(result, 2, "Null", "IS_NULLABLE", MYSQL_TYPE_STRING, 0, 0, "", 9, 0); |