diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-02-28 19:22:20 +0400 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-02-28 19:22:20 +0400 |
commit | 3467b168a74122e221ec7d87cbcda66ed881ba7a (patch) | |
tree | 104d3112b2ec2919d0c342a6c47b4ed10a052bb6 /sql/item_create.cc | |
parent | 304086b6411ee1d33be35c52f7e9477a99ed4747 (diff) | |
download | mariadb-git-3467b168a74122e221ec7d87cbcda66ed881ba7a.tar.gz |
Many files:
Coercibility, initial stage
item_func.h:
Coercibility, initial stage
sql/item_func.h:
Coercibility, initial stage
sql/item.cc:
Coercibility, initial stage
sql/item_create.cc:
Coercibility, initial stage
sql/item_create.h:
Coercibility, initial stage
sql/item.h:
Coercibility, initial stage
sql/item_func.cc:
Coercibility, initial stage
sql/lex.h:
Coercibility, initial stage
sql/sql_yacc.yy:
Coercibility, initial stage
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r-- | sql/item_create.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/item_create.cc b/sql/item_create.cc index 8b2cf52f660..d90c708fc0f 100644 --- a/sql/item_create.cc +++ b/sql/item_create.cc @@ -230,6 +230,11 @@ Item *create_func_bit_length(Item* a) return new Item_func_bit_length(a); } +Item *create_func_coercibility(Item* a) +{ + return new Item_func_coercibility(a); +} + Item *create_func_char_length(Item* a) { return new Item_func_char_length(a); |