2018-11-21 19:20:27 +00:00
|
|
|
set(SRCS)
|
2016-06-07 08:23:15 +00:00
|
|
|
|
|
|
|
add_executable (expression_stream expression_stream.cpp ${SRCS})
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (expression_stream PRIVATE dbms clickhouse_storages_system clickhouse_parsers)
|
2016-06-07 08:23:15 +00:00
|
|
|
|
|
|
|
add_executable (filter_stream filter_stream.cpp ${SRCS})
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (filter_stream PRIVATE dbms clickhouse_storages_system clickhouse_parsers clickhouse_common_io)
|
2016-06-07 08:23:15 +00:00
|
|
|
|
|
|
|
add_executable (union_stream2 union_stream2.cpp ${SRCS})
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (union_stream2 PRIVATE dbms)
|
2016-06-07 08:23:15 +00:00
|
|
|
|
|
|
|
add_executable (collapsing_sorted_stream collapsing_sorted_stream.cpp ${SRCS})
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (collapsing_sorted_stream PRIVATE dbms)
|
2018-10-05 14:35:35 +00:00
|
|
|
|
|
|
|
add_executable (finish_sorting_stream finish_sorting_stream.cpp ${SRCS})
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (finish_sorting_stream PRIVATE dbms)
|