Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README with correct supported features #94

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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`
Expand Down