diff options
author | monty@donna.mysql.com <> | 2000-09-16 19:06:21 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-09-16 19:06:21 +0300 |
commit | f2f515e5c2733dfe95471640ff740d0f936579b9 (patch) | |
tree | 38f12ed194dbac086831cd3d00180599d1df8444 /sql/sql_lex.h | |
parent | 30bcd690f20bc187929eedae502ee9a1487ef6b5 (diff) | |
download | mariadb-git-f2f515e5c2733dfe95471640ff740d0f936579b9.tar.gz |
Fix that REPAIR/ALTER TABLE use myisam_tempdir
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index f4c527cefbc..1047cffffe1 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -93,10 +93,12 @@ typedef struct st_lex { uint yylineno,yytoklen; /* Simulate lex */ LEX_YYSTYPE yylval; uchar *ptr,*tok_start,*tok_end,*end_of_query; - ha_rows select_limit,offset_limit; char *length,*dec,*change,*name; + char *db,*db1,*table1,*db2,*table2; /* For outer join using .. */ + char *backup_dir; /* For RESTORE/BACKUP */ String *wild; sql_exchange *exchange; + ha_rows select_limit,offset_limit; List<List_item> expr_list; List<List_item> when_list; @@ -119,7 +121,6 @@ typedef struct st_lex { Item *where,*having,*default_value; CONVERT *convert_set; LEX_USER *grant_user; - char *db,*db1,*table1,*db2,*table2; /* For outer join using .. */ gptr yacc_yyss,yacc_yyvs; THD *thd; udf_func udf; |