diff options
author | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-10 00:17:21 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-10 00:17:21 +0500 |
commit | f2a52dd0f021b02177c10443cb1ee6b7ad20281a (patch) | |
tree | 5a715b5abe3283afbc2d322486f1f725316b9932 /sql/item_create.h | |
parent | 187ccf4bca5bf865fec86581d894fb8e6df0792a (diff) | |
download | mariadb-git-f2a52dd0f021b02177c10443cb1ee6b7ad20281a.tar.gz |
Bug #27921 View ignores precision for CAST()
Item_decimal_typecast::print properly implemented
mysql-test/r/view.result:
Bug #27921 View ignores precision for CAST()
test result
mysql-test/t/view.test:
Bug #27921 View ignores precision for CAST()
test case
sql/field.cc:
zero decimals handling unified
sql/item_create.cc:
Bug #27921 View ignores precision for CAST()
create_func_cast parameters changed, zero precision handling unified
sql/item_create.h:
Bug #27921 View ignores precision for CAST()
create_func_cast parameters changed
sql/item_func.cc:
Bug #27921 View ignores precision for CAST()
Item_decimal_typecast::print properly implemented
sql/item_func.h:
Bug #27921 View ignores precision for CAST()
max_length counting fixed
sql/my_decimal.h:
Bug #27921 View ignores precision for CAST()
my_decimal_trim() implemented to unify zero precision handling
sql/sql_yacc.yy:
Bug #27921 View ignores precision for CAST()
create_func_cast calls simplified
Diffstat (limited to 'sql/item_create.h')
-rw-r--r-- | sql/item_create.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item_create.h b/sql/item_create.h index 2ff849263c6..46b209b3e49 100644 --- a/sql/item_create.h +++ b/sql/item_create.h @@ -27,7 +27,8 @@ Item *create_func_bit_length(Item* a); Item *create_func_coercibility(Item* a); Item *create_func_ceiling(Item* a); Item *create_func_char_length(Item* a); -Item *create_func_cast(Item *a, Cast_target cast_type, int len, int dec, +Item *create_func_cast(Item *a, Cast_target cast_type, + const char *len, const char *dec, CHARSET_INFO *cs); Item *create_func_connection_id(void); Item *create_func_conv(Item* a, Item *b, Item *c); |