v1.43.9
版本发布时间: 2024-10-26 06:35:18
dolthub/dolt最新发布版本:v1.43.16(2024-11-21 04:04:03)
Merged PRs
dolt
-
8494: Fix bounds check in import scanner
fixes: https://github.com/dolthub/dolt/issues/8495
The before code checks whether
s.i
is valid after doing the buffer access:
The after code inverts the check to make surefor ; unicode.IsSpace(rune(s.buf[s.i])); s.i++ { if s.i >= s.fill { s.read() } }
s.i
is valid before indexing into the buffer.for { if s.i >= s.fill { s.read() } if !unicode.IsSpace(rune(s.buf[s.i])) { break } s.i++ }
- 8479: cross-schema foreign key support for doltgres tables Depends on https://github.com/dolthub/go-mysql-server/pull/2713
go-mysql-server
-
2717: push
Distinct
nodes belowSort
nodes This PR optimized queries like:
When there are many duplicate values in columnselect distinct i from t order by i;
i
, it is much more efficient to eliminate duplicates first, then sort the results. There are somewhat unrelated optimizations left as TODOs. Optimize query: https://github.com/dolthub/dolt/issues/8488 -
2716: Update Parser interface documentation
Updates documentation for the
Parser
interface to document the requirement that implementations must returnvitess.ErrEmpty
for empty queries. Without this, GMS will not handle empty queries correctly. Related to: https://github.com/dolthub/doltgresql/issues/884 - 2715: remove exchange node These aren't used anywhere, so it's getting removed. Partition still exists if we ever want to reimplement some version of this.
- 2713: Support for schema names in foreign key definitions Adds schema names in many places required for foreign key operation in databases with schemas (doltgres)
Closed Issues
- 8495: Import scanner performs bound check after buffer access
1、 dolt-darwin-amd64.tar.gz 34.95MB
2、 dolt-darwin-arm64.tar.gz 33.67MB
3、 dolt-linux-amd64.tar.gz 35.01MB
4、 dolt-linux-arm64.tar.gz 33.06MB
5、 dolt-windows-amd64.7z 17.31MB
6、 dolt-windows-amd64.msi 36.45MB
7、 dolt-windows-amd64.zip 31.23MB
8、 install.sh 3.15KB