Commit 558ee2ee authored by Sergei Golubchik's avatar Sergei Golubchik

fix --embedded tests

parent 8ee071a2
...@@ -28,7 +28,7 @@ table_collation latin1_swedish_ci ...@@ -28,7 +28,7 @@ table_collation latin1_swedish_ci
checksum NULL checksum NULL
create_options create_options
table_comment table_comment
select table_catalog,table_schema,table_name,column_name,ordinal_position,column_default,character_maximum_length,character_octet_length,character_set_name,collation_name,column_key,extra,privileges,column_comment,is_generated,generation_expression from information_schema.columns where table_name='t1'; select table_catalog,table_schema,table_name,column_name,ordinal_position,column_default,character_maximum_length,character_octet_length,character_set_name,collation_name,column_key,extra,column_comment,is_generated,generation_expression from information_schema.columns where table_name='t1';
table_catalog def table_catalog def
table_schema test table_schema test
table_name t1 table_name t1
...@@ -41,7 +41,6 @@ character_set_name NULL ...@@ -41,7 +41,6 @@ character_set_name NULL
collation_name NULL collation_name NULL
column_key column_key
extra extra
privileges select,insert,update,references
column_comment column_comment
is_generated NEVER is_generated NEVER
generation_expression NULL generation_expression NULL
...@@ -57,7 +56,6 @@ character_set_name NULL ...@@ -57,7 +56,6 @@ character_set_name NULL
collation_name NULL collation_name NULL
column_key column_key
extra INVISIBLE extra INVISIBLE
privileges select,insert,update,references
column_comment start column_comment start
is_generated ALWAYS is_generated ALWAYS
generation_expression ROW START generation_expression ROW START
...@@ -73,7 +71,6 @@ character_set_name NULL ...@@ -73,7 +71,6 @@ character_set_name NULL
collation_name NULL collation_name NULL
column_key column_key
extra INVISIBLE extra INVISIBLE
privileges select,insert,update,references
column_comment end column_comment end
is_generated ALWAYS is_generated ALWAYS
generation_expression ROW END generation_expression ROW END
......
...@@ -16,7 +16,7 @@ eval create table t1 ( ...@@ -16,7 +16,7 @@ eval create table t1 (
show create table t1; show create table t1;
--query_vertical select table_catalog,table_schema,table_name,table_type,version,table_rows,avg_row_length,data_free,auto_increment,check_time,table_collation,checksum,create_options,table_comment from information_schema.tables where table_name='t1' --query_vertical select table_catalog,table_schema,table_name,table_type,version,table_rows,avg_row_length,data_free,auto_increment,check_time,table_collation,checksum,create_options,table_comment from information_schema.tables where table_name='t1'
--query_vertical select table_catalog,table_schema,table_name,column_name,ordinal_position,column_default,character_maximum_length,character_octet_length,character_set_name,collation_name,column_key,extra,privileges,column_comment,is_generated,generation_expression from information_schema.columns where table_name='t1' --query_vertical select table_catalog,table_schema,table_name,column_name,ordinal_position,column_default,character_maximum_length,character_octet_length,character_set_name,collation_name,column_key,extra,column_comment,is_generated,generation_expression from information_schema.columns where table_name='t1'
--echo # Implicit fields test --echo # Implicit fields test
create or replace table t1 ( create or replace table t1 (
......
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