2018-05-11 00:08:49 +00:00
|
|
|
add_executable (read_buffer read_buffer.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (read_buffer PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (read_buffer_perf read_buffer_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (read_buffer_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (read_float_perf read_float_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (read_float_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (write_buffer write_buffer.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (write_buffer PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (write_buffer_perf write_buffer_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (write_buffer_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (valid_utf8_perf valid_utf8_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (valid_utf8_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (valid_utf8 valid_utf8.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (valid_utf8 PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (var_uint var_uint.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (var_uint PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (read_escaped_string read_escaped_string.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (read_escaped_string PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (async_write async_write.cpp)
|
2019-07-09 21:37:43 +00:00
|
|
|
target_link_libraries (async_write PRIVATE dbms)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (parse_int_perf parse_int_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (parse_int_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (parse_int_perf2 parse_int_perf2.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (parse_int_perf2 PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (read_write_int read_write_int.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (read_write_int PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (mempbrk mempbrk.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (mempbrk PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (o_direct_and_dirty_pages o_direct_and_dirty_pages.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (o_direct_and_dirty_pages PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (hashing_write_buffer hashing_write_buffer.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (hashing_write_buffer PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
add_check(hashing_write_buffer)
|
|
|
|
|
|
|
|
add_executable (hashing_read_buffer hashing_read_buffer.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (hashing_read_buffer PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
add_check (hashing_read_buffer)
|
|
|
|
|
2019-02-22 17:16:11 +00:00
|
|
|
add_executable (io_operators io_operators.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (io_operators PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2019-03-02 01:31:34 +00:00
|
|
|
add_executable (write_int write_int.cpp)
|
|
|
|
target_link_libraries (write_int PRIVATE clickhouse_common_io)
|
|
|
|
|
|
|
|
if (OS_LINUX OR OS_FREEBSD)
|
2017-04-01 07:20:54 +00:00
|
|
|
add_executable(write_buffer_aio write_buffer_aio.cpp)
|
2019-09-15 10:35:12 +00:00
|
|
|
target_link_libraries (write_buffer_aio PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
add_executable(read_buffer_aio read_buffer_aio.cpp)
|
2019-09-15 10:35:12 +00:00
|
|
|
target_link_libraries (read_buffer_aio PRIVATE clickhouse_common_io)
|
2016-12-06 13:19:42 +00:00
|
|
|
endif ()
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (zlib_buffers zlib_buffers.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (zlib_buffers PRIVATE clickhouse_common_io)
|
2017-04-06 18:32:00 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (limit_read_buffer limit_read_buffer.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (limit_read_buffer PRIVATE clickhouse_common_io)
|
2017-08-15 20:17:50 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (limit_read_buffer2 limit_read_buffer2.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (limit_read_buffer2 PRIVATE clickhouse_common_io)
|
2018-02-11 04:09:02 +00:00
|
|
|
|
2018-05-11 00:08:49 +00:00
|
|
|
add_executable (parse_date_time_best_effort parse_date_time_best_effort.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (parse_date_time_best_effort PRIVATE clickhouse_common_io)
|
2018-08-13 04:35:12 +00:00
|
|
|
|
|
|
|
add_executable (zlib_ng_bug zlib_ng_bug.cpp)
|
2020-01-05 06:39:06 +00:00
|
|
|
target_link_libraries (zlib_ng_bug PRIVATE ${Poco_Foundation_LIBRARY} ${ZLIB_LIBRARY})
|
2020-01-06 10:34:33 +00:00
|
|
|
|
|
|
|
add_executable (ryu_test ryu_test.cpp)
|
|
|
|
target_link_libraries (ryu_test PRIVATE ryu)
|