mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
12 lines
229 B
C++
12 lines
229 B
C++
#pragma once
|
|
|
|
#include <DataTypes/IDataType.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
DataTypePtr createOneElementTuple(const DataTypePtr & type, const String & name, bool escape_delimiter = true);
|
|
bool isOneElementTuple(const DataTypePtr & type);
|
|
|
|
}
|