blob: b21c0319c61181fbbb33c4008f93ec84717fe3bd (
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
|
GO_LIBRARY()
LICENSE(MIT)
SRCS(
batch.go
conn.go
copy_from.go
doc.go
extended_query_builder.go
large_objects.go
named_args.go
rows.go
tracer.go
tx.go
values.go
)
GO_XTEST_SRCS(
# batch_test.go
# bench_test.go
# conn_test.go
# copy_from_test.go
# helper_test.go
# large_objects_test.go
named_args_test.go
# pgbouncer_test.go
# pipeline_test.go
# query_test.go
# rows_test.go
# tracer_test.go
# tx_test.go
# values_test.go
)
END()
RECURSE(
examples
gotest
internal
log
pgconn
pgproto3
pgtype
pgxpool
pgxtest
stdlib
tracelog
)
|