diff options
author | dlenev@mysql.com <> | 2005-07-19 20:06:49 +0400 |
---|---|---|
committer | dlenev@mysql.com <> | 2005-07-19 20:06:49 +0400 |
commit | 8a3e723b7411826004b45bca14405fe2c18ea719 (patch) | |
tree | 2d8dccfe63df5146991d4448c19a59318ba78941 /sql/lex.h | |
parent | bff3507b1d6ba1c8d0f46f6d19528a0d52e31610 (diff) | |
download | mariadb-git-8a3e723b7411826004b45bca14405fe2c18ea719.tar.gz |
Fix for bugs #5892/6182/8751/8758/10994 (based on Antony's patch)
"Triggers have the wrong namespace"
"Triggers: duplicate names allowed"
"Triggers: CREATE TRIGGER does not accept fully qualified names"
"SHOW TRIGGERS"
Diffstat (limited to 'sql/lex.h')
-rw-r--r-- | sql/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index aa10328ced0..122e7040c80 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -497,6 +497,7 @@ static SYMBOL symbols[] = { { "TRAILING", SYM(TRAILING)}, { "TRANSACTION", SYM(TRANSACTION_SYM)}, { "TRIGGER", SYM(TRIGGER_SYM)}, + { "TRIGGERS", SYM(TRIGGERS_SYM)}, { "TRUE", SYM(TRUE_SYM)}, { "TRUNCATE", SYM(TRUNCATE_SYM)}, { "TYPE", SYM(TYPE_SYM)}, |