From fc73f7155afcd3927b61011c7adafd45fea3ccbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Wa=C5=9B?= Date: Fri, 20 Oct 2023 11:44:03 +0200 Subject: [PATCH] Update README with correct supported features --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 21f06a8..eb3e5f5 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,6 @@ Make sure you have Git installed and in your $PATH. This Trino client is an implementation of Go's `database/sql/driver` interface. In order to use it, you need to import the package and use the [`database/sql`](https://golang.org/pkg/database/sql/) API then. -Only read operations are supported, such as SHOW and SELECT. - Use `trino` as `driverName` and a valid [DSN](#dsn-data-source-name) as the `dataSourceName`. Example: @@ -207,7 +205,6 @@ When passing arguments to queries, the driver supports the following Go data typ * the result of `trino.Timestamp(year, month, day, hour, minute, second, nanosecond)` - passed to Trino as a timestamp without a time zone It's not yet possible to pass: -* `nil` * `float32` or `float64` * `byte` * `time.Duration`