summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2002-11-24 15:47:19 +0200
committerunknown <monty@mashka.mysql.fi>2002-11-24 15:47:19 +0200
commit72da2e4c9463aeb80083fd53cc0e6f5091b5f4f7 (patch)
treeed4766483373d3e3ccd10186eea178ace4e50ae4 /sql/item_func.h
parent70a17cd5a7aab52697b494cd8379fb78db15eeea (diff)
downloadmariadb-git-72da2e4c9463aeb80083fd53cc0e6f5091b5f4f7.tar.gz
Added new ANSI functions LOCALTIME, LOCALTIMESTAMP and CURRENT_USER
Added CEIL as an alias for CEILING Cleaned up CHECK constraint handling. (We don't anymore require braces after CHECK) Added casting to CHAR. mysql-test/r/bigint.result: Moved casting test to cast.test mysql-test/r/func_time.result: Test of new functions mysql-test/t/bigint.test: Moved casting test to cast.test mysql-test/t/func_time.test: Test of new functions sql/item_create.cc: Added casting to CHAR sql/item_func.h: Added casting to CHAR sql/item_timefunc.h: Added casting to CHAR sql/lex.h: Added new ANSI functions LOCALTIME, LOCALTIMESTAMP and CURRENT_USER Added CEIL as an alias for CEILING sql/sql_yacc.yy: Cleaned up CHECK constraint handling.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 2e02d7cfd28..b7e0cee540a 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -1003,7 +1003,7 @@ public:
enum Item_cast
{
ITEM_CAST_BINARY, ITEM_CAST_SIGNED_INT, ITEM_CAST_UNSIGNED_INT,
- ITEM_CAST_DATE, ITEM_CAST_TIME, ITEM_CAST_DATETIME
+ ITEM_CAST_DATE, ITEM_CAST_TIME, ITEM_CAST_DATETIME, ITEM_CAST_CHAR
};
Item *create_func_cast(Item *a, Item_cast cast_type);