Added a comment

This commit is contained in:
Alexey Milovidov 2020-06-16 02:27:22 +03:00
parent a753ba9c6a
commit d08736f708

View File

@ -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: