Felix Becker

Results 540 comments of Felix Becker

I'm sorry if I overlooked it in the issue, but what was the exact problem with ```js SQL`SELECT * FROM example_table`; ``` ? My first intuition is that if that...

This functionality is provided with `.append()`. I think passing template strings into template strings is confusing tbh.

I guess why not, as long as it has test cases covering all the cases where both statements have values and not

Btw, `SQL("table")` doesn't actually work. The first parameter to a template string tag is an array.

```ts const seedCombined = seedOne.append(seedTwo); ``` ?

Thanks Brian, I'm flattered 🌹 Keep up the great work with pg!

This was actually the API in 1.x, you had to use `SQL.raw()`

Hmm, apparently it would have complicated the implementation: https://github.com/felixfbecker/node-sql-template-strings/releases/tag/v2.0.0

Honest question, do you really think this is that bad? ```js query(SQL` UPDATE thetable SET thecolumn1 = null, othercolumn`.append(version).append(SQL` = null WHERE id = ${id} `) ```