mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Added a comment
This commit is contained in:
parent
a753ba9c6a
commit
d08736f708
@ -16,6 +16,19 @@ class Context;
|
||||
class AccessRightsElements;
|
||||
class ASTSystemQuery;
|
||||
|
||||
|
||||
/** Implement various SYSTEM queries.
|
||||
* Examples: SYSTEM SHUTDOWN, SYSTEM DROP MARK CACHE.
|
||||
*
|
||||
* Some commands are intended to stop/start background actions for tables and comes with two variants:
|
||||
*
|
||||
* 1. SYSTEM STOP MERGES table, SYSTEM START MERGES table
|
||||
* - start/stop actions for specific table.
|
||||
*
|
||||
* 2. SYSTEM STOP MERGES, SYSTEM START MERGES
|
||||
* - start/stop actions for all existing tables.
|
||||
* Note that the actions for tables that will be created after this query will not be affected.
|
||||
*/
|
||||
class InterpreterSystemQuery : public IInterpreter
|
||||
{
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user