aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/getInsertQuery.h
blob: 0bcb5e3660b0ad2597a586101e701045550e721c (plain) (blame)
1
2
3
4
5
6
7
8
#pragma once
#include <Core/ColumnsWithTypeAndName.h>
#include <Parsers/IdentifierQuotingStyle.h>

namespace DB
{
std::string getInsertQuery(const std::string & db_name, const std::string & table_name, const ColumnsWithTypeAndName & columns, IdentifierQuotingStyle quoting);
}