goccy / bigquery-emulator

BigQuery emulator server implemented in Go
MIT License
845 stars 108 forks source link

`Too many SQL variables` when inserting data #270

Closed ohaibbq closed 8 months ago

ohaibbq commented 9 months ago

What happened?

Some queries return a Too many SQL variables error when run against the BQ emulator. It looks like this an error where we bind too many variables (limit defaults to 999) when inserting into a table, and sqlite complains.

What did you expect to happen?

Table data to be inserted

How can we reproduce it (as minimally and precisely as possible)?

Create a BigQuery table Try to insert more than 999 values into the table

Anything else we need to know?

No response

ohaibbq commented 9 months ago

Blocked by goccy/go-zetasqlite#170

ohaibbq commented 8 months ago

This has been fixed in #283