diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-09-14 16:34:50 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-09-14 16:34:50 -0600 |
commit | 2fdcf82ec5acae2bfd03ea00d1158ec5f9d51573 (patch) | |
tree | 6f789a128f7f2f981c423d22a6bebd80ccf71633 /sql/lex.h | |
parent | 51fc63837a558cbf8d0ce6007012492dd71696de (diff) | |
download | mariadb-git-2fdcf82ec5acae2bfd03ea00d1158ec5f9d51573.tar.gz |
BACKUP TABLE TO 'directory'
RESTORE TABLE FROM 'directory'
log on slave when it connects to the master
include/mysql_com.h:
Added COM_CONNECT_OUT so we can log on the slave when
connects to the master
sql/ha_myisam.cc:
added restore() and backup()
sql/ha_myisam.h:
Added restore() and backup()
sql/handler.cc:
restore()/backup()
sql/handler.h:
restore()/backup()
sql/lex.h:
BACKUP/RESTORE
sql/mysql_priv.h:
gave global ( non-static) scope to generate_table()
added mysql_backup_table()/mysql_restore_table()
sql/slave.cc:
Log when slave connects to the master on the slave
sql/sql_delete.cc:
changed the scope of generate_table() from static to global
sql/sql_lex.h:
changes for BACKUP TABLE/RESTORE TABLE
sql/sql_parse.cc:
Changes for BACKUP TABLE/RESTORE TABLE
sql/sql_table.cc:
Changes for BACKUP TABLE/RESTORE TABLE
sql/sql_yacc.yy:
BACKUP TABLE/ RESTORE TABLE
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 2be54a56b1a..5ea58c4cd80 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -62,6 +62,7 @@ static SYMBOL symbols[] = { { "AVG_ROW_LENGTH", SYM(AVG_ROW_LENGTH),0,0}, { "AUTO_INCREMENT", SYM(AUTO_INC),0,0}, { "AUTOCOMMIT", SYM(AUTOCOMMIT),0,0}, + { "BACKUP", SYM(BACKUP_SYM),0,0}, { "BEGIN", SYM(BEGIN_SYM),0,0}, { "BERKELEYDB", SYM(BERKELEY_DB_SYM),0,0}, { "BDB", SYM(BERKELEY_DB_SYM),0,0}, @@ -247,6 +248,7 @@ static SYMBOL symbols[] = { { "RENAME", SYM(RENAME),0,0}, { "REPAIR", SYM(REPAIR),0,0}, { "REPLACE", SYM(REPLACE),0,0}, + { "RESTORE", SYM(RESTORE_SYM),0,0}, { "RESTRICT", SYM(RESTRICT),0,0}, { "RETURNS", SYM(UDF_RETURNS_SYM),0,0}, { "REVOKE", SYM(REVOKE),0,0}, |