diff options
author | unknown <gluh@gluh.mysql.r18.ru> | 2004-11-20 01:17:18 +0300 |
---|---|---|
committer | unknown <gluh@gluh.mysql.r18.ru> | 2004-11-20 01:17:18 +0300 |
commit | 15092975f506dfadeb379805f78e50e2939a2911 (patch) | |
tree | ecfdcb794b19654e0b65010dcbeb12964a95b730 /tests | |
parent | b7ae32a0f31d6ab333b4d6299efb92fce92e9b79 (diff) | |
download | mariadb-git-15092975f506dfadeb379805f78e50e2939a2911.tar.gz |
changed field names, fields order according to WL description
fixed bug: "create view v7 as select * from information_schema.tables;" failed
mysql-test/r/information_schema.result:
changed field names, fields order according to WL description
mysql-test/t/information_schema.test:
changed field names, fields order according to WL description
sql/sql_show.cc:
changed field names, fields order according to WL description
sql/sql_view.cc:
fixed bug: "create view v7 as select * from information_schema.tables;" failed
tests/client_test.c:
changed field names, fields order according to WL description
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 7d264d682da..12462cd35b9 100644 --- a/tests/client_test.c +++ b/tests/client_test.c @@ -7263,13 +7263,13 @@ static void test_explain_bug() verify_prepare_field(result, 0, "Field", "COLUMN_NAME", MYSQL_TYPE_STRING, 0, 0, "", 192, 0); - verify_prepare_field(result, 1, "Type", "TYPE", + verify_prepare_field(result, 1, "Type", "COLUMN_TYPE", MYSQL_TYPE_STRING, 0, 0, "", 120, 0); verify_prepare_field(result, 2, "Null", "IS_NULLABLE", MYSQL_TYPE_STRING, 0, 0, "", 9, 0); - verify_prepare_field(result, 3, "Key", "KEY", + verify_prepare_field(result, 3, "Key", "COLUMN_KEY", MYSQL_TYPE_STRING, 0, 0, "", 9, 0); verify_prepare_field(result, 4, "Default", "COLUMN_DEFAULT", |