Dan Goodman
Dan Goodman
That worked for me too. This is an issue with the duckdb api because doing the same in rusqlite works fine: ```rust let mut stmt = conn.prepare("SELECT id, name, data...
FWIW you can access the rows later in the row iterator: ```rs let mut rows = stmt.query([]).unwrap(); while let Some(row) = rows.next().unwrap() { let cols = row.as_ref().column_names(); // ... ```
I've also tried downloading an importing, and using `import 'htmlx.org'`, same behavior observed
That fixed it, thanks!
This is definitely a pain point for us as well. We have to include it outside in the query on the cagg, which complicates the SQL statements we have since...
Any update on this? I want to divide 2 metrics where one uses `exported_pod`, and another uses `name` but am unable to.
And update on this? We've had to move a lot _off_ temporal because of this
Ideally we'd want to just be able to dynamically change an allow-list
Yeah problem with that is mixing timeouts and such becomes hacky, but it’s a workaround
fwiw I intended to do `where url_code = any($1::TEXT[])` originally and stumbled over this, also get the error `expected $1::STRING[] to be of type string, found type string[] (SQLSTATE 22023)`...