Well I had an opportunity to munge some data, but the .CSV file had spaces in its name so the generated SQL failed with an error because it started by creating a DuckDB view named the same as the file, without escaping the spaces.

I tried putting []'s (brackets) around the name to escape the spaces but apparently that's not how DuckDB works.

Also, I'm used to using F5 to run the queries but that didn't work either.