aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ClickHouse/clickhouse-go/v2/ya.make
blob: c75e2a2eaf85861e04098d52e245023474309217 (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
GO_LIBRARY()

LICENSE(Apache-2.0)

SRCS(
    bind.go
    clickhouse.go
    clickhouse_options.go
    clickhouse_rows.go
    clickhouse_rows_column_type.go
    clickhouse_std.go
    conn.go
    conn_async_insert.go
    conn_batch.go
    conn_exec.go
    conn_handshake.go
    conn_http.go
    conn_http_async_insert.go
    conn_http_batch.go
    conn_http_exec.go
    conn_http_query.go
    conn_logs.go
    conn_ping.go
    conn_process.go
    conn_profile_events.go
    conn_query.go
    conn_send_query.go
    context.go
    scan.go
    struct_map.go
)

GO_TEST_SRCS(
    bind_test.go
    struct_map_test.go
)

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

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

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

END()

RECURSE(
    benchmark
    contributors
    # examples
    ext
    lib
    resources
    # tests
)