mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
15 lines
265 B
C++
15 lines
265 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTLiteral.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
template <typename T>
|
|
T checkAndGetLiteralArgument(const ASTPtr & arg, const String & arg_name);
|
|
|
|
template <typename T>
|
|
T checkAndGetLiteralArgument(const ASTLiteral & arg, const String & arg_name);
|
|
|
|
}
|