aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Analyzer/Passes/AutoFinalOnQueryPass.h
blob: 3489597108c73406d2d68d588ed7214f9b767d54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include <Analyzer/IQueryTreePass.h>
#include <Storages/IStorage_fwd.h>
#include <Analyzer/TableNode.h>

namespace DB
{

/** Automatically applies final modifier to table expressions in queries if it is supported and if user level final setting is set.
  *
  * Example: SELECT id, value FROM test_table;
  * Result: SELECT id, value FROM test_table FINAL;
  */
class AutoFinalOnQueryPass final : public IQueryTreePass
{
public:
    String getName() override
    {
        return "AutoFinalOnQueryPass";
    }

    String getDescription() override
    {
        return "Automatically applies final modifier to table expressions in queries if it is supported and if user level final setting is set";
    }

    void run(QueryTreeNodePtr query_tree_node, ContextPtr context) override;
};

}