sql-bricks-postgres icon indicating copy to clipboard operation
sql-bricks-postgres copied to clipboard

Transparent, Schemaless SQL Generation for the PostgreSQL

Results 4 sql-bricks-postgres issues
Sort by recently updated
recently updated
newest added

Hi, After upgrading from `0.5.0` into `0.6.0` cloned statements stops working. Steps to reproduce: ``` const query = sql.select().from('user'); query.limit(10); //

In the document there is an example as follow: ``` .onConflict('name').doUpdate('age') ``` but actually it should be: ``` .onConflict('name').doUpdate(['age']) ``` do I miss a thing?

for https://github.com/CSNW/sql-bricks/issues/98