Skip to content

Commit 5e8931f

Browse files
committed
Add ColumnNothing to the installation script
Additionally, import it in client.h for consistency and to avoid manually importing it each time this column type is in use.
1 parent 22dc944 commit 5e8931f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

clickhouse/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ INSTALL(FILES columns/ip4.h DESTINATION include/clickhouse/columns/)
221221
INSTALL(FILES columns/ip6.h DESTINATION include/clickhouse/columns/)
222222
INSTALL(FILES columns/itemview.h DESTINATION include/clickhouse/columns/)
223223
INSTALL(FILES columns/lowcardinality.h DESTINATION include/clickhouse/columns/)
224+
INSTALL(FILES columns/nothing.h DESTINATION include/clickhouse/columns/)
224225
INSTALL(FILES columns/nullable.h DESTINATION include/clickhouse/columns/)
225226
INSTALL(FILES columns/numeric.h DESTINATION include/clickhouse/columns/)
226227
INSTALL(FILES columns/map.h DESTINATION include/clickhouse/columns/)

clickhouse/client.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "columns/ip4.h"
1212
#include "columns/ip6.h"
1313
#include "columns/lowcardinality.h"
14+
#include "columns/nothing.h"
1415
#include "columns/nullable.h"
1516
#include "columns/numeric.h"
1617
#include "columns/map.h"

0 commit comments

Comments
 (0)