diff options
author | unknown <bell@sanja.is.com.ua> | 2003-11-18 22:04:01 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-11-18 22:04:01 +0200 |
commit | 0d412844ef6a84cfea1320dc558aaa4e24ba383e (patch) | |
tree | 42927169e3db046d89ba974c436584dfdc0f0698 /sql/item_create.cc | |
parent | 1ea21d7085f49d42047dd97feda6a6892762e2e8 (diff) | |
download | mariadb-git-0d412844ef6a84cfea1320dc558aaa4e24ba383e.tar.gz |
changed name of bit on more descriptive (after rewie change)
sql/item_create.cc:
changed name of bit on more descriptive
sql/item_func.cc:
changed name of bit on more descriptive
sql/mysql_priv.h:
changed name of bit on more descriptive
sql/sql_lex.h:
changed name of bit on more descriptive
sql/sql_yacc.yy:
changed name of bit on more descriptive
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r-- | sql/item_create.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/item_create.cc b/sql/item_create.cc index c46696dfabf..1c0588b06a8 100644 --- a/sql/item_create.cc +++ b/sql/item_create.cc @@ -159,7 +159,7 @@ Item *create_func_from_days(Item* a) Item *create_func_get_lock(Item* a, Item *b) { - current_thd->lex.uncacheable(UNCACHEABLE_UNCACHEABLE); + current_thd->lex.uncacheable(UNCACHEABLE_SIDEEFFECT); return new Item_func_get_lock(a, b); } @@ -324,7 +324,7 @@ Item *create_func_radians(Item *a) Item *create_func_release_lock(Item* a) { - current_thd->lex.uncacheable(UNCACHEABLE_UNCACHEABLE); + current_thd->lex.uncacheable(UNCACHEABLE_SIDEEFFECT); return new Item_func_release_lock(a); } @@ -445,7 +445,7 @@ Item *create_func_year(Item* a) Item *create_load_file(Item* a) { - current_thd->lex.uncacheable(UNCACHEABLE_UNCACHEABLE); + current_thd->lex.uncacheable(UNCACHEABLE_SIDEEFFECT); return new Item_load_file(a); } @@ -472,13 +472,13 @@ Item *create_func_cast(Item *a, Cast_target cast_type, int len, Item *create_func_is_free_lock(Item* a) { - current_thd->lex.uncacheable(UNCACHEABLE_UNCACHEABLE); + current_thd->lex.uncacheable(UNCACHEABLE_SIDEEFFECT); return new Item_func_is_free_lock(a); } Item *create_func_is_used_lock(Item* a) { - current_thd->lex.uncacheable(UNCACHEABLE_UNCACHEABLE); + current_thd->lex.uncacheable(UNCACHEABLE_SIDEEFFECT); return new Item_func_is_used_lock(a); } |