summaryrefslogtreecommitdiff
path: root/sql/table.h
diff options
context:
space:
mode:
authorunknown <gluh@gluh.mysql.r18.ru>2004-11-23 17:41:39 +0300
committerunknown <gluh@gluh.mysql.r18.ru>2004-11-23 17:41:39 +0300
commit3afa86dc344d96e8bdcacf7672a846407c91efa3 (patch)
tree317505fb908992b13c790b4dbdd9d355907f556b /sql/table.h
parent8941ac568573f059233f37e8bef48039b2ecff41 (diff)
downloadmariadb-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 'sql/table.h')
-rw-r--r--sql/table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.h b/sql/table.h
index b12e82f3c73..09c7719980b 100644
--- a/sql/table.h
+++ b/sql/table.h
@@ -281,7 +281,7 @@ typedef struct st_table_list
struct st_table_list *next_local;
/* link in a global list of all queries tables */
struct st_table_list *next_global, **prev_global;
- char *db, *alias, *real_name;
+ char *db, *alias, *real_name, *schema_table_name;
char *option; /* Used by cache index */
Item *on_expr; /* Used with outer join */
COND_EQUAL *cond_equal; /* Used with outer join */