mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
11 lines
111 B
C++
11 lines
111 B
C++
|
#pragma once
|
||
|
|
||
|
#include <DataTypes/IDataType.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
bool hasNullable(const DataTypePtr & type);
|
||
|
|
||
|
}
|