mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
11 lines
161 B
C++
11 lines
161 B
C++
|
#include <Functions/geometryFromColumn.h>
|
||
|
|
||
|
namespace DB {
|
||
|
|
||
|
Geometry geometryFromColumn(const ColumnWithTypeAndName &, size_t)
|
||
|
{
|
||
|
return Point(0.0, 0.0);
|
||
|
}
|
||
|
|
||
|
}
|