~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/flush.rst

fixed build warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
flush_option:
10
10
 
11
11
* TABLES table_name [, table_name]
12
 
        (closes all specified tables, forces those tables in use to be closed, and flushes the query cache for the named tables)
 
12
        
 
13
(closes all specified tables, forces those tables in use to be closed, and flushes the query cache for the named tables)
13
14
 
14
15
* TABLES WITH READ LOCK
15
 
        (closes all open tables and locks all tables for all databases with a global read lock*)
 
16
        
 
17
(closes all open tables and locks all tables for all databases with a global read lock*)
16
18
 
17
19
* LOGS
18
 
        (closes and reopens all log files--if binary logging is enabled, the sequence number of the binary log file is incremented by one relative to the previous file)
 
20
        
 
21
(closes and reopens all log files--if binary logging is enabled, the sequence number of the binary log file is incremented by one relative to the previous file)
19
22
 
20
23
* STATUS
21
 
        (adds the current thread's session status variable values to the global values and resets the session values to zero)
 
24
        
 
25
(adds the current thread's session status variable values to the global values and resets the session values to zero)
22
26
    
23
27
To release a FLUSH TABLES WITH READ LOCK, you must issue an UNLOCK TABLES.