summaryrefslogtreecommitdiff
path: root/sql/item_create.cc
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2003-12-20 00:54:38 +0300
committersergefp@mysql.com <>2003-12-20 00:54:38 +0300
commit23b25675f269acb2ae07e8a32bb37f68d523b299 (patch)
tree6f1ee123b4c43806a2d62ab70bfdc1402e51dff9 /sql/item_create.cc
parenta8456e6801040e9b10aa3a89621b360684dc543c (diff)
parent29e1bddb4337481ae2fbdfb6558060f85841eacb (diff)
downloadmariadb-git-23b25675f269acb2ae07e8a32bb37f68d523b299.tar.gz
Merge mysql.com:/home/psergey/mysql-5.0-latest-pull
into mysql.com:/dbdata/psergey/mysql-5.0-imerge-unique
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 aa64cf52017..cccbf6e4226 100644
--- a/sql/item_create.cc
+++ b/sql/item_create.cc
@@ -72,7 +72,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 :
@@ -144,7 +144,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);
}