dylanplural

Results 3 issues of dylanplural

It's required in our product to provide our own filter method (using a fuzzy match) or disable filtering completely in certain cases which are both currently unsupported. Not 100% sure...

```js const dynamicStatements = [] dynamicStatements.push(SQL` WHERE table_1.column_1 = ${x}`) dynamicStatements.push(SQL` AND table_1.column_2 = ${y}`) await QUERY/* sql */` SELECT * FROM table_1 ${dynamicStatements} ` ``` Currently this throws an...

I'm doing some fairly complicated query building with lots of nesting and I hit this error. It's almost impossible to debug as it doesn't log out any useful information about...

enhancement