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
feat: Add postgres support
Postgres is more picky about submitting a string to the id column in a
table. Postgres requires the use of only integers for the array of
values in a select statement containing: where id IN (...array...)
This patch fixes all the following class of problems:
SELECT * FROM "ssh_keys" WHERE
"ssh_keys"."deleted_at" IS NULL AND ((id IN ('host')) OR (name IN
('host'))) ORDER BY "ssh_keys"."id" ASC LIMIT 1 [0 rows affected or
returned ] error: pq: invalid input syntax for
type integer: "host"
Signed-off-by: Jason Wessel <[email protected]>