diff options
author | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2006-01-24 16:48:19 +0400 |
---|---|---|
committer | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2006-01-24 16:48:19 +0400 |
commit | 333b1f8594922647278808a4c114c16695551343 (patch) | |
tree | 847fce48cce8fd12c1deb74d0c82e424c197d071 /sql/table.h | |
parent | 74f670f291acd3ffaaca60a6659290c80f472c76 (diff) | |
download | mariadb-git-333b1f8594922647278808a4c114c16695551343.tar.gz |
Fix for bug#15307 GROUP_CONCAT() with ORDER BY returns empty set on information_schema(2nd ver)
Fill schema tables with data before filesort if it's necessary
mysql-test/r/information_schema.result:
Fix for bug#15307 GROUP_CONCAT() with ORDER BY returns empty set on information_schema(2nd ver)
test result
mysql-test/t/information_schema.test:
Fix for bug#15307 GROUP_CONCAT() with ORDER BY returns empty set on information_schema(2nd ver)
test case
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index ce0616a6833..947316e253f 100644 --- a/sql/table.h +++ b/sql/table.h @@ -515,6 +515,7 @@ typedef struct st_table_list st_select_lex_unit *derived; /* SELECT_LEX_UNIT of derived table */ ST_SCHEMA_TABLE *schema_table; /* Information_schema table */ st_select_lex *schema_select_lex; + bool is_schema_table_processed; /* True when the view field translation table is used to convert schema table fields for backwards compatibility with SHOW command. |