summaryrefslogtreecommitdiff
path: root/sql/item_create.cc
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-06-03 14:59:17 +0500
committerunknown <bar@bar.mysql.r18.ru>2003-06-03 14:59:17 +0500
commit93d3ba840d1fe746929c68c262d3337cf4f38fc0 (patch)
treef7bb603f0c1323874da13a5e0f5bc44f6781cada /sql/item_create.cc
parent4beedd513eecdc4f57715112c1496e976a2f079c (diff)
downloadmariadb-git-93d3ba840d1fe746929c68c262d3337cf4f38fc0.tar.gz
MY_CS_NONTEXT flag for sprintf() incompatible charsets (ucs2 if the only one now)
Some default_charset_info were removed
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r--sql/item_create.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_create.cc b/sql/item_create.cc
index 3edec7fdab0..00c98937659 100644
--- a/sql/item_create.cc
+++ b/sql/item_create.cc
@@ -324,7 +324,7 @@ Item *create_func_current_user()
length= (uint) (strxmov(buff, thd->priv_user, "@", thd->priv_host, NullS) -
buff);
return new Item_string(NullS, thd->memdup(buff, length), length,
- default_charset_info);
+ system_charset_info);
}
Item *create_func_quarter(Item* a)