You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coverage spans core database lifecycle and reliability behavior: first-time startup and connectivity, normal client session and query flow, resilience to malformed or oversized client input, and storage correctness across rename errors and restarts. Overall health appears stable, with expected failures handled cleanly and data remaining readable after recovery scenarios.
Safe to merge — this PR showed no regressions across the exercised startup, protocol, error-handling, and restart-readability paths, including adversarial input recovery within an active session. With no failing tests and no signs of stability or data-access breakage, the observed merge risk is low.
Tests run by Ito
Result
Severity
Type
Description
✅
—
Binding
A malformed extended-protocol Bind and a structurally valid 8 MB Bind both returned ErrorResponse followed by ReadyForQuery, and the same connection successfully handled SELECT 1 afterward.
✅
—
Bootstrap
With an empty data directory and DOLTGRES_DB=postgres, the server initialized successfully, created the default postgres database, and accepted client connections.
✅
—
Protocol
Server completed the expected PostgreSQL startup handshake sequence and accepted a subsequent SELECT 1 query from the ReadyForQuery state.
✅
—
Storage
ALTER TABLE on a non-existent source table returns a table-not-found error and does not create the destination table name.
✅
—
Storage
After restarting the bumped build against the existing compat fixture, the server accepted connections and returned the baseline row from compat_items without any feature-version or client-out-of-date errors.
Tip
Reply with @itoqa to send us feedback on this test run.
QUERY: (SELECT unique1 AS random
FROM onek ORDER BY random() LIMIT 1)
INTERSECT
(SELECT unique1 AS random
FROM onek ORDER BY random() LIMIT 1)
INTERSECT
(SELECT unique1 AS random
FROM onek ORDER BY random() LIMIT 1);
RECEIVED ERROR: expected row count 0 but received 1
Footnotes
These are tests that we're marking as Successful, however they do not match the expected output in some way. This is due to small differences, such as different wording on the error messages, or the column names being incorrect while the data itself is correct. ↩
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
☕ An Automated Dependency Version Bump PR 👑
Initial Changes
The changes contained in this PR were produced by `go get`ing the dependency.
```bash
go get github.com/dolthub/[dependency]/go@[commit]
```