You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
I submitted a query "select * from $1;" and executed con.Query(ctx, query, "table")
Received the error message: ERROR: syntax error at or near "$1" (SQLSTATE 42601)
I repeated the exercise with the query: "select * from table;" executed con.Query(ctx, query)
no error message
From the documentation it is not clear to me whether this is an error or a feature limitation.
To Reproduce
Steps to reproduce the behavior:
create a simple table with columns "first" and "last". Insert some dummy data and retrieve the data as outlined above
If possible, please provide runnable example such as:
Please run your example with the race detector enabled. For example, go run -race main.go or go test -race.
Expected behavior
A clear and concise description of what you expected to happen.
Actual behavior
A clear and concise description of what actually happened.
Version
Go: $ go version -> [e.g. go version go1.18.3 darwin/amd64] 1.22.5
PostgreSQL: $ psql --no-psqlrc --tuples-only -c 'select version()' -> [e.g. PostgreSQL 14.4 on x86_64-apple-darwin21.5.0, compiled by Apple clang version 13.1.6 (clang-1316.0.21.2.5), 64-bit] pg 16.04
pgx: $ grep 'github.com/jackc/pgx/v[0-9]' go.mod -> [e.g. v4.16.1]
github.com/jackc/pgx/v5 v5.4.1 Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
A clear and concise description of what the bug is.
I submitted a query "select * from $1;" and executed con.Query(ctx, query, "table")
Received the error message: ERROR: syntax error at or near "$1" (SQLSTATE 42601)
I repeated the exercise with the query: "select * from table;" executed con.Query(ctx, query)
no error message
From the documentation it is not clear to me whether this is an error or a feature limitation.
To Reproduce
Steps to reproduce the behavior:
create a simple table with columns "first" and "last". Insert some dummy data and retrieve the data as outlined above
If possible, please provide runnable example such as:
Please run your example with the race detector enabled. For example,
go run -race main.go
orgo test -race
.Expected behavior
A clear and concise description of what you expected to happen.
Actual behavior
A clear and concise description of what actually happened.
Version
$ go version
-> [e.g. go version go1.18.3 darwin/amd64] 1.22.5$ psql --no-psqlrc --tuples-only -c 'select version()'
-> [e.g. PostgreSQL 14.4 on x86_64-apple-darwin21.5.0, compiled by Apple clang version 13.1.6 (clang-1316.0.21.2.5), 64-bit] pg 16.04$ grep 'github.com/jackc/pgx/v[0-9]' go.mod
-> [e.g. v4.16.1]github.com/jackc/pgx/v5 v5.4.1
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: