| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| install.sh | 2026-03-12 | 3.4 kB | |
| doltgresql-windows-amd64.7z | 2026-03-12 | 26.2 MB | |
| doltgresql-windows-amd64.zip | 2026-03-12 | 44.9 MB | |
| doltgresql-darwin-arm64.tar.gz | 2026-03-12 | 44.3 MB | |
| doltgresql-darwin-amd64.tar.gz | 2026-03-12 | 46.9 MB | |
| doltgresql-linux-arm64.tar.gz | 2026-03-12 | 43.9 MB | |
| doltgresql-linux-amd64.tar.gz | 2026-03-12 | 47.5 MB | |
| 0.55.6 source code.tar.gz | 2026-03-12 | 12.0 MB | |
| 0.55.6 source code.zip | 2026-03-12 | 13.6 MB | |
| README.md | 2026-03-12 | 3.2 kB | |
| Totals: 10 Items | 279.4 MB | 0 | |
Merged PRs
doltgresql
- 2443: Added proper dolt_branch_control functionality Fixes:
- https://github.com/dolthub/doltgresql/issues/2435
This fixes two primary issues with
dolt_branch_control. The first is that we'd error when encountering a destination GMS type, as we make the assumption that all GMS types have been handled once we reach a certain point in the analyzer. This is false for Dolt system tables that may be modified, so now cast those types to their closest Doltgres type for analysis. The second fix deals with how superusers are handled between Doltgres and GMS. Doltgres uses its own permission model since it's fundamentally different than GMS' model, butdolt_branch_controlinternally checks for a superuser (or pseudo-superuser) to allow some commands without explicit privileges given. This adds a layer of indirection so that checks for superusers specifically will work as expected. - 2439: check for 'check_function_bodies' configuration parameter… … when creating functions Depends on: https://github.com/dolthub/go-mysql-server/pull/3465
- 2415: Support text array parameters Prisma blocking bug. Right now if you try to bind a query with a text array we scan it incorrectly and error out.
- 2413: Added additional testing for TIMESTAMP
This adds testing for
TIMESTAMPandTIMESTAMPTZ, which were missing. This also adds a step in CI that changes the locale to the west coast since we already had such assumptions in other tests (that were eventually changed), and there's no other way to test timezones otherwise. - 2408: support
int2vectorandoidvectortypes - 2402: [#2373] fix VALUES subquery unwrap from dropping clauses ## Summary
- Replace overly permissive
len(inSelect.From) == 1guard innodeAliasedTableExprwithisTrivialSelectStar, which only unwraps bareSELECT * FROM (VALUES ...)subqueries with no additional clauses (projections, LIMIT, ORDER BY, DISTINCT, WHERE, GROUP BY, HAVING) - Add
*plan.Offsetguard to TypeSanitizer to prevent OFFSET literals inside subqueries from being converted to Doltgres types, which caused GMSvalidateOffsetAndLimitto reject them with "invalid type: bigint" - Un-skip mixed-type VALUES-in-subquery tests and add mixed-type variants plus OFFSET-specific assertions Closes: [#2373]
- 2384: support privileges for routines and sequences Depends on: https://github.com/dolthub/go-mysql-server/pull/3450