rubenv / sql-migrate

SQL schema migration tool for Go.
MIT License
3.18k stars 270 forks source link

fix: Quote `id` column as it described in dialect definition #173

Closed zzet closed 4 years ago

zzet commented 4 years ago

Using sql-migrate with Snowflake I got the problem with the execution of the "SELECT * FROM %s ORDER BY id ASC". The quoting of the ID column solving the problem.

rubenv commented 4 years ago

Thanks!

zzet commented 4 years ago

Thank you!