diff options
author | unknown <serg@serg.mylan> | 2003-10-11 13:06:55 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-10-11 13:06:55 +0200 |
commit | 2e1115edc1b5899975c33b4367256ce650d3a0f4 (patch) | |
tree | ff3da12e7e88d561877cd7b6f3fe64edad0c10c0 /sql/item.cc | |
parent | 7154615de30122f4dcf719b11fcbc32563ff11d2 (diff) | |
download | mariadb-git-2e1115edc1b5899975c33b4367256ce650d3a0f4.tar.gz |
key_map with more that 64 bits width
sql/field.cc:
typedef Bitmap<64> key_map
all tests pass
sql/ha_berkeley.cc:
typedef Bitmap<64> key_map
all tests pass
sql/ha_berkeley.h:
typedef Bitmap<64> key_map
all tests pass
sql/item.cc:
typedef Bitmap<64> key_map
all tests pass
sql/item_func.cc:
typedef Bitmap<64> key_map
all tests pass
sql/opt_sum.cc:
typedef Bitmap<64> key_map
all tests pass
sql/sql_delete.cc:
typedef Bitmap<64> key_map
all tests pass
sql/sql_show.cc:
typedef Bitmap<64> key_map
all tests pass
sql/sql_test.cc:
typedef Bitmap<64> key_map
all tests pass
sql/sql_update.cc:
typedef Bitmap<64> key_map
all tests pass
include/my_bitmap.h:
more bitmap methods
mysys/my_bitmap.c:
more bitmap methods
sql/field.h:
init bitmaps
sql/ha_innodb.h:
optimization
sql/ha_isam.cc:
optimization
sql/ha_myisam.cc:
optimization
sql/ha_myisammrg.cc:
optimization
sql/handler.h:
optimization
sql/mysqld.cc:
bitmap_init() interface changed
sql/opt_range.cc:
optimization
sql/opt_range.h:
optimization
sql/slave.cc:
bitmap_init() interface changed
sql/sql_base.cc:
optimization
sql/sql_select.cc:
init bitmaps
using const for bitmaps whenever possible
sql/sql_select.h:
cleanup
sql/table.cc:
always init bitmaps
BitKeeper/etc/ignore:
Added sql/udf_example.so to the ignore list
sql/mysql_priv.h:
use Bitmap over ulonglong by default
Diffstat (limited to 'sql/item.cc')
-rw-r--r-- | sql/item.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sql/item.cc b/sql/item.cc index 9d34f299a07..30c4e465544 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -799,11 +799,11 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref) not_found_field) { /* - We can't find table field in table list of current select, + We can't find table field in table list of current select, consequently we have to find it in outer subselect(s). - We can't join lists of outer & current select, because of scope - of view rules. For example if both tables (outer & current) have - field 'field' it is not mistake to refer to this field without + We can't join lists of outer & current select, because of scope + of view rules. For example if both tables (outer & current) have + field 'field' it is not mistake to refer to this field without mention of table name, but if we join tables in one list it will cause error ER_NON_UNIQ_ERROR in find_field_in_tables. */ @@ -832,8 +832,8 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref) 0)) != not_found_field) break; if (sl->resolve_mode == SELECT_LEX::SELECT_MODE && - (refer= find_item_in_list(this, sl->item_list, &counter, - REPORT_EXCEPT_NOT_FOUND)) != + (refer= find_item_in_list(this, sl->item_list, &counter, + REPORT_EXCEPT_NOT_FOUND)) != (Item **) not_found_item) break; if (sl->master_unit()->first_select()->linkage == @@ -897,7 +897,7 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref) TABLE *table=field->table; field->query_id=thd->query_id; table->used_fields++; - table->used_keys&=field->part_of_key; + table->used_keys.intersect(field->part_of_key); } fixed= 1; return 0; @@ -906,14 +906,14 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref) void Item::init_make_field(Send_field *tmp_field, enum enum_field_types field_type) -{ +{ char *empty_name= (char*) ""; - tmp_field->db_name= empty_name; + tmp_field->db_name= empty_name; tmp_field->org_table_name= empty_name; tmp_field->org_col_name= empty_name; tmp_field->table_name= empty_name; tmp_field->col_name= name; - tmp_field->charsetnr= collation.collation->number; + tmp_field->charsetnr= collation.collation->number; tmp_field->flags=maybe_null ? 0 : NOT_NULL_FLAG; tmp_field->type=field_type; tmp_field->length=max_length; |