diff options
author | unknown <monty@donna.mysql.com> | 2000-08-17 01:05:02 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-08-17 01:05:02 +0300 |
commit | 7496ec3173ed1ad87f07ff87058a40e1748ae64c (patch) | |
tree | eff8fc8b2beebf362d7ac8de2cad48821df97d02 /sql/lex.h | |
parent | e318f3a607f609c28636a9ac29cd67662166f01a (diff) | |
download | mariadb-git-7496ec3173ed1ad87f07ff87058a40e1748ae64c.tar.gz |
Additions for CHECK table + update of benchmarks
Docs/manual.texi:
Updated for 3.23.23
myisam/mi_check.c:
Fix for CHECK table
sql-bench/bench-init.pl.sh:
Fix of benchmarks for PostgreSQL 7.0.2
sql-bench/server-cfg.sh:
Fix of benchmarks for PostgreSQL 7.0.2
sql-bench/test-insert.sh:
Fix of benchmarks for PostgreSQL 7.0.2
sql-bench/test-select.sh:
Fix of benchmarks for PostgreSQL 7.0.2
sql/ha_myisam.cc:
Fix for CHECK table
sql/handler.h:
Fix for CHECK table
sql/lex.h:
Fix for CHECK table
sql/sql_load.cc:
Fix bug in delayed keys
sql/sql_table.cc:
Fix for CHECK table
sql/sql_yacc.yy:
Fix for CHECK table
sql/structs.h:
Fix wrong type
Diffstat (limited to 'sql/lex.h')
-rw-r--r-- | sql/lex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index 75c11a52273..08fc4d5d2e5 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -78,6 +78,7 @@ static SYMBOL symbols[] = { { "CHAR", SYM(CHAR_SYM),0,0}, { "CHARACTER", SYM(CHAR_SYM),0,0}, { "CHANGE", SYM(CHANGE),0,0}, + { "CHANGED", SYM(CHANGED),0,0}, { "CHECK", SYM(CHECK_SYM),0,0}, { "CHECKSUM", SYM(CHECKSUM_SYM),0,0}, { "COLLECTION", SYM(COLLECTION),0,0}, @@ -124,6 +125,7 @@ static SYMBOL symbols[] = { { "EXPLAIN", SYM(DESCRIBE),0,0}, { "EXISTS", SYM(EXISTS),0,0}, { "EXTENDED", SYM(EXTENDED_SYM),0,0}, + { "FAST", SYM(FAST_SYM),0,0}, { "FIELDS", SYM(COLUMNS),0,0}, { "FILE", SYM(FILE_SYM),0,0}, { "FIRST", SYM(FIRST_SYM),0,0}, |