ClickHouse/src/Parsers/getInsertQuery.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
277 B
C++
Raw Normal View History

2021-08-24 12:29:42 +00:00
#pragma once
2021-08-24 18:28:38 +00:00
#include <Core/ColumnsWithTypeAndName.h>
#include <Parsers/IdentifierQuotingStyle.h>
2021-08-24 12:29:42 +00:00
namespace DB
{
2021-08-24 18:28:38 +00:00
std::string getInsertQuery(const std::string & db_name, const std::string & table_name, const ColumnsWithTypeAndName & columns, IdentifierQuotingStyle quoting);
2021-08-24 12:29:42 +00:00
}