File tree 2 files changed +19
-1
lines changed
sql/mysql/Positive-Technologies
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -1848,7 +1848,7 @@ flushOption
1848
1848
| USER_RESOURCES | TABLES (WITH READ LOCK )?
1849
1849
) #simpleFlushOption
1850
1850
| RELAY LOGS channelOption? #channelFlushOption
1851
- | TABLES tables flushTableOption? #tableFlushOption
1851
+ | ( TABLE | TABLES ) tables? flushTableOption? #tableFlushOption
1852
1852
;
1853
1853
1854
1854
flushTableOption
Original file line number Diff line number Diff line change
1
+ # begin
2
+ flush hosts, status;
3
+ # end
4
+ # begin
5
+ -- Table flushing
6
+ flush tables;
7
+ flush local tables Foo;
8
+ flush tables Foo, Bar;
9
+ flush tables Foo, Bar for export;
10
+ flush tables Foo, Bar with read lock;
11
+ # end
12
+ # begin
13
+ -- 'FLUSH TABLE' is an alias for 'FLUSH TABLES' (https://dev.mysql.com/doc/refman/8.0/en/flush.html)
14
+ flush table;
15
+ flush local table Foo;
16
+ flush TABLE Foo, Bar;
17
+ flush table Foo, Bar for export;
18
+ # end
You can’t perform that action at this time.
0 commit comments