diff options
author | timour@mysql.com <> | 2005-11-28 21:57:50 +0200 |
---|---|---|
committer | timour@mysql.com <> | 2005-11-28 21:57:50 +0200 |
commit | cc7d1268c43a2441843b854f70be194ab37ff5a7 (patch) | |
tree | e240ac23234a12c571460f2d81c1fa3ad1bfb391 /sql/mysql_priv.h | |
parent | f5804869e376e7214817a5ccd23737ec9f46f0d0 (diff) | |
download | mariadb-git-cc7d1268c43a2441843b854f70be194ab37ff5a7.tar.gz |
WL#2486 - Natural/using join according to SQL:2003.
Post-review fixes according to Monty's review.
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index 4f5a0032531..3d4651535a2 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -791,12 +791,11 @@ find_field_in_tables(THD *thd, Item_ident *item, bool check_privileges, bool register_tree_change); Field * find_field_in_table_ref(THD *thd, TABLE_LIST *table_list, - const char *name, const char *item_name, - const char *table_name, const char *db_name, - uint length, Item **ref, + const char *name, uint length, + const char *item_name, const char *db_name, + const char *table_name, Item **ref, bool check_grants_table, bool check_grants_view, - bool allow_rowid, - uint *cached_field_index_ptr, + bool allow_rowid, uint *cached_field_index_ptr, bool register_tree_change, TABLE_LIST **actual_table); Field * find_field_in_table(THD *thd, TABLE *table, const char *name, @@ -918,8 +917,9 @@ create_field * new_create_field(THD *thd, char *field_name, enum_field_types typ uint uint_geom_type); void store_position_for_column(const char *name); bool add_to_list(THD *thd, SQL_LIST &list,Item *group,bool asc); -Name_resolution_context *make_join_on_context(THD *thd, TABLE_LIST *left_op, - TABLE_LIST *right_op); +bool push_new_name_resolution_context(THD *thd, + TABLE_LIST *left_op, + TABLE_LIST *right_op); void add_join_on(TABLE_LIST *b,Item *expr); void add_join_natural(TABLE_LIST *a,TABLE_LIST *b,List<String> *using_fields); bool add_proc_to_list(THD *thd, Item *item); |