mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
9 lines
144 B
C++
9 lines
144 B
C++
|
#include <Common/PODArray.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
/// Used for left padding of PODArray when empty
|
||
|
const char EmptyPODArray[EmptyPODArraySize]{};
|
||
|
|
||
|
}
|