mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
17 lines
267 B
C++
17 lines
267 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);
|
|
|
|
|
|
|
|
}
|