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 | 1a2c7c18a131d4803b5a44e5aed619297156e76f (patch) | |
tree | 104d3112b2ec2919d0c342a6c47b4ed10a052bb6 /sql/item_create.cc | |
parent | d9965d31745ff7229621553d96deb88ff3bdcb7a (diff) | |
download | mariadb-git-1a2c7c18a131d4803b5a44e5aed619297156e76f.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); |