diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-06-03 14:59:17 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-06-03 14:59:17 +0500 |
commit | 7e05bc77a2df5d212dc3e431966927c93d5c76d1 (patch) | |
tree | f7bb603f0c1323874da13a5e0f5bc44f6781cada /sql/item_create.cc | |
parent | 1aa1d970d4d805a8029a7f197a59163145c7dc60 (diff) | |
download | mariadb-git-7e05bc77a2df5d212dc3e431966927c93d5c76d1.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.cc | 2 |
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) |