mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
9 lines
277 B
C++
9 lines
277 B
C++
#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);
|
|
}
|