summaryrefslogtreecommitdiff
path: root/sql/lex.h
diff options
context:
space:
mode:
authorunknown <harrison@bud.lordblink.com>2003-10-15 02:11:03 -0400
committerunknown <harrison@bud.lordblink.com>2003-10-15 02:11:03 -0400
commitacb47c93be78fbc59ca75fc1195444e7d8dc3568 (patch)
tree61ece9d1249d602850409cb88d9ac7e67a14362f /sql/lex.h
parenta14c1e411cb763688a0673b326cdd09c589fecf0 (diff)
downloadmariadb-git-acb47c93be78fbc59ca75fc1195444e7d8dc3568.tar.gz
Add in bit_xor function (approved by Sergei)
sql/item_sum.cc: Add in bit_xor class functions. sql/item_sum.h: Add bit_xor class. sql/lex.h: Add in bit_xor symbol. sql/sql_yacc.yy: Add in bit_xor function BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/lex.h')
-rw-r--r--sql/lex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h
index 859f92dd752..f8bb34c5c5b 100644
--- a/sql/lex.h
+++ b/sql/lex.h
@@ -465,6 +465,7 @@ static SYMBOL sql_functions[] = {
{ "BIT_COUNT", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_bit_count)},
{ "BIT_OR", SYM(BIT_OR),0,0},
{ "BIT_AND", SYM(BIT_AND),0,0},
+ { "BIT_XOR", SYM(BIT_XOR),0,0},
{ "CAST", SYM(CAST_SYM),0,0},
{ "CEIL", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_ceiling)},
{ "CEILING", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_ceiling)},