Releases: DerekStride/sql_tools
Releases · DerekStride/sql_tools
v0.2.2
v0.2.1
Bugfix: update gemfile.lock
v0.2.0
Added support for parsing create_table
DDL statements
v0.1.0
Initial Release
- Selections should be mostly complete, please raise issues if there's problems with them.
- Predicates & JOINs are still a work in progress, you can consider their implementation incomplete or incorrect.
- CTE's exist but are largely untested and may behave in strange mannors
Usage
query = SqlTools.query_from_sql(<<~SQL)
SELECT id, name
FROM table
WHERE id IN (1, 2, 3)
SQL
pp query.selections