summaryrefslogtreecommitdiff
path: root/sql/item_create.cc
diff options
context:
space:
mode:
authorpem@mysql.com <>2003-12-19 20:13:48 +0100
committerpem@mysql.com <>2003-12-19 20:13:48 +0100
commit12187684ca10653a5c3b4539b1abdf55686c23d6 (patch)
tree73743d8dde65062bfe86e66e9d220a27139cfede /sql/item_create.cc
parent843d5b907b60d64ec0512b8e49778a3fb37b380c (diff)
parentd37da004f6ffb32d170ce4cb9d93ba166de5b6b0 (diff)
downloadmariadb-git-12187684ca10653a5c3b4539b1abdf55686c23d6.tar.gz
Merging lex-pointer change from 4.1 to 5.0.
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r--sql/item_create.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_create.cc b/sql/item_create.cc
index 7a548962cde..a5b4a8904f1 100644
--- a/sql/item_create.cc
+++ b/sql/item_create.cc
@@ -76,7 +76,7 @@ Item *create_func_ceiling(Item* a)
Item *create_func_connection_id(void)
{
THD *thd=current_thd;
- thd->lex->safe_to_cache_query=0;
+ thd->lex->safe_to_cache_query= 0;
return new Item_int(NullS,(longlong)
((thd->slave_thread) ?
thd->variables.pseudo_thread_id :
@@ -148,7 +148,7 @@ Item *create_func_floor(Item* a)
Item *create_func_found_rows(void)
{
THD *thd=current_thd;
- thd->lex->safe_to_cache_query=0;
+ thd->lex->safe_to_cache_query= 0;
return new Item_int(NullS,(longlong) thd->found_rows(),21);
}