aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ClickHouse/clickhouse-go/ya.make
blob: 57471e00cc38ee2ad85e51ce78140f85b6e32399 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
GO_LIBRARY()

LICENSE(MIT)

SRCS(
    array.go
    bootstrap.go
    clickhouse.go
    clickhouse_exception.go
    clickhouse_ping.go
    clickhouse_profile_info.go
    clickhouse_progress.go
    clickhouse_read_block.go
    clickhouse_read_meta.go
    clickhouse_send_external_data.go
    clickhouse_send_query.go
    clickhouse_write_block.go
    connect.go
    helpers.go
    query_settings.go
    result.go
    rows.go
    stmt.go
    tls_config.go
    word_matcher.go
    write_column.go
)

GO_TEST_SRCS(
    bootstrap_test.go
    clickhouse_naive_test.go
    # clickhouse_nullable_array_test.go
    # connect_check_test.go
    helpers_test.go
    # issues_test.go
    word_matcher_test.go
)

GO_XTEST_SRCS(
    # clickhouse_columnar_test.go
    # clickhouse_compress_test.go
    # clickhouse_custom_types_test.go
    # clickhouse_decimal128_test.go
    # clickhouse_decimal_test.go
    # clickhouse_direct_test.go
    # clickhouse_negative_test.go
    # clickhouse_nullable_test.go
    # clickhouse_test.go
)

IF (OS_LINUX)
    SRCS(connect_check.go)
ENDIF()

IF (OS_DARWIN)
    SRCS(connect_check.go)
ENDIF()

IF (OS_WINDOWS)
    SRCS(connect_check_dummy.go)
ENDIF()

END()

RECURSE(
    # examples
    gotest
    lib
)