Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
dolt-windows-amd64.msi | 2025-08-06 | 44.0 MB | |
install.sh | 2025-08-06 | 3.2 kB | |
dolt-windows-amd64.7z | 2025-08-06 | 22.0 MB | |
dolt-windows-amd64.zip | 2025-08-06 | 38.4 MB | |
dolt-darwin-arm64.tar.gz | 2025-08-06 | 40.4 MB | |
dolt-darwin-amd64.tar.gz | 2025-08-06 | 42.3 MB | |
dolt-linux-arm64.tar.gz | 2025-08-06 | 39.7 MB | |
dolt-linux-amd64.tar.gz | 2025-08-06 | 42.3 MB | |
1.58.2 source code.tar.gz | 2025-08-06 | 12.3 MB | |
1.58.2 source code.zip | 2025-08-06 | 14.0 MB | |
README.md | 2025-08-06 | 1.4 kB | |
Totals: 11 Items | 295.3 MB | 0 |
Merged PRs
dolt
go-mysql-server
- 3145: fix panic over
SetOp
s with joins and subqueries The analyzer ruleassignExecIndexes
will apply aStripRowNode
over any joins within a subquery. The analyzer rulefinalizeUnions
recursively calls the analyzer (callingassignExecIndexes
), resulting inStripRowNode
s getting applied twice. The double stripping results in rows that are too short and panics. This PR tells the finalizeUnions selector to skipassignExecIndexes
, preventing the nestedStripRowNode
s. Also has some small formatting and naming clean up. fixes: https://github.com/dolthub/dolt/issues/9631 - 3141: [#9628] - Fix UNION column mapping bug in nested multi-way operations Fixes [#9628] Fixed column scrambling in UNION queries with 3+ branches. The bug caused duplicate rows with wrong column positions when processing nested UNION operations like (A UNION B) UNION C. SetOp nodes now preserve schema order by recursing to left child instead of using sorted column set.
Closed Issues
- 9628: In the result of the following query, the dashboard_id field appears to be incorrect — it returns the value of entity_id instead of the actual dashboard_id.