Breaking Changes
- SQLQuery API changed:
SQLQuerynow accepts aTableobject instead of a table name string. Update calls fromSQLQuery("table_name", query)toSQLQuery(Table("table_name"), query).
Bug Fixes
- Division operators fixed: Fixed
__truediv__(/) and__floordiv__(//) being incorrectly swapped for scalars and vectors. - Sorting MAPCOMMON columns: Fixed issue when tables containing MAPCOMMON columns were sorted incorrectly.