File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
- # Trino client
1
+ # Trino Go client
2
2
3
- A [ Trino] ( https://trino.io ) client for the [ Go] ( https://golang.org ) programming language.
3
+ A [ Trino] ( https://trino.io ) client for the [ Go] ( https://golang.org ) programming
4
+ language. It enables you to send SQL statements from your Go application to
5
+ Trino, and receive the resulting data.
4
6
5
7
[ ![ Build Status] ( https://github.com/trinodb/trino-go-client/workflows/ci/badge.svg )] ( https://github.com/trinodb/trino-go-client/actions?query=workflow%3Aci+event%3Apush+branch%3Amaster )
6
8
[ ![ GoDoc] ( https://godoc.org/github.com/trinodb/trino-go-client?status.svg )] ( https://godoc.org/github.com/trinodb/trino-go-client )
@@ -259,7 +261,15 @@ will receive a `[]interface{}` slice, with values of the following types:
259
261
260
262
## License
261
263
262
- As described in the [ LICENSE] ( ./LICENSE ) file.
264
+ Apache License V2.0, as described in the [ LICENSE] ( ./LICENSE ) file.
265
+
266
+ ## Build
267
+
268
+ You can build the client code locally and run tests with the following command:
269
+
270
+ ```
271
+ go test -v -race -timeout 2m ./...
272
+ ```
263
273
264
274
## Contributing
265
275
You can’t perform that action at this time.
0 commit comments