diff options
author | unknown <bell@sanja.is.com.ua> | 2003-10-31 11:52:01 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-10-31 11:52:01 +0200 |
commit | d6aacb9e22a202ecb65679d7af17174664917a45 (patch) | |
tree | e88beb5cdcf2a2ab511a67c534066e739ad23629 /sql | |
parent | b90ae6fdc2486a981f06a07bf28a8ff8a471f24b (diff) | |
download | mariadb-git-d6aacb9e22a202ecb65679d7af17174664917a45.tar.gz |
amall fix
mysql-test/r/derived.result:
fixed results after merge
mysql-test/r/func_in.result:
small fix to amke all names uniform
mysql-test/r/func_math.result:
forgot to change
sql/item.cc:
fix
sql/item_create.cc:
small fix to amke all names uniform
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item.cc | 4 | ||||
-rw-r--r-- | sql/item_create.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sql/item.cc b/sql/item.cc index 735d67c6c3f..ce143f71a3c 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -1650,10 +1650,10 @@ void Item_default_value::print(String *str) { if (!arg) { - str->append("default", 6); + str->append("default", 7); return; } - str->append("default", 7); + str->append("default(", 8); arg->print(str); str->append(')'); } diff --git a/sql/item_create.cc b/sql/item_create.cc index 0755a43a48e..a25ccfe984b 100644 --- a/sql/item_create.cc +++ b/sql/item_create.cc @@ -292,7 +292,7 @@ Item *create_func_period_diff(Item* a, Item *b) Item *create_func_pi(void) { - return new Item_real("Pi()",M_PI,6,8); + return new Item_real("pi()",M_PI,6,8); } Item *create_func_pow(Item* a, Item *b) |