Wilfredo Pomier
Wilfredo Pomier
When a client is created using `lazyConnect`, then a `connect()` is required and it works fine. However, when a `disconnect()` is called, a new `connect()` is not allowed anymore. Let's...
# Describe the bug A query using numeric literals with scientific notation fails. # To Reproduce ## In psql ```sql db=> select 1e3; ?column? ---------- 1000 (1 row) db=> select...
# Describe the bug A query with a GROUP BY clause using the field ordinal position instead of field name fails. # To Reproduce ```sql db=> CREATE TABLE test(field int);...
# Describe the bug The ORDER BY clause sorts the columns of type ENUM alphabetically. It should consider the order inside the ENUM definition. # To Reproduce ## In pg-mem...
# Describe the bug Trying to execute an insert, I found the following errors: * A duplicate error points to an unexistent key `test_pkey` while it should be `uk01`. *...