summaryrefslogtreecommitdiff
path: root/sql/item_create.cc
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2003-11-18 22:04:01 +0200
committerbell@sanja.is.com.ua <>2003-11-18 22:04:01 +0200
commitb4044128777e345b06ec24e710090fe215c66435 (patch)
tree42927169e3db046d89ba974c436584dfdc0f0698 /sql/item_create.cc
parentb02af20aff40cc16655d7966069e9d12d408d4b9 (diff)
downloadmariadb-git-b4044128777e345b06ec24e710090fe215c66435.tar.gz
changed name of bit on more descriptive (after rewie change)
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r--sql/item_create.cc10
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);
}