diff options
author | bar@bar.mysql.r18.ru <> | 2003-08-21 14:15:25 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-08-21 14:15:25 +0500 |
commit | 8c55440ba4cfbc23ffe05dc07bd1b625bced05c8 (patch) | |
tree | c97e84f2eab14aa455ae3c07b91e184b75d6cd28 /sql/item_create.h | |
parent | 1ab66ddad881fc77d67cbc003daa66aa95be385b (diff) | |
download | mariadb-git-8c55440ba4cfbc23ffe05dc07bd1b625bced05c8.tar.gz |
CAST(expr AS CHAR(10)) is now working
Diffstat (limited to 'sql/item_create.h')
-rw-r--r-- | sql/item_create.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_create.h b/sql/item_create.h index 1326077b096..16c4fccf709 100644 --- a/sql/item_create.h +++ b/sql/item_create.h @@ -28,7 +28,7 @@ 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, CHARSET_INFO *cs); +Item *create_func_cast(Item *a, Cast_target cast_type, int len, CHARSET_INFO *cs); Item *create_func_connection_id(void); Item *create_func_conv(Item* a, Item *b, Item *c); Item *create_func_cos(Item* a); |