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 and application behavior, including data creation and retrieval, persistence across reloads and new connections, branching and merging consistency, transaction rollback, dependency integrity, and safe handling of missing or invalid inputs. It includes both normal flows and edge-case/error handling, with no application-health concerns identified.
Safe to merge — all exercised behaviors passed, with no regressions, new failures, or previously flagged failures attributable to this PR. No merge-blocking risk was identified.
Tests run by Ito
Result
Severity
Type
Description
✅
—
General
The database kept the foreign-key metadata matched with the root version after the metadata was changed, committed, and reopened.
✅
—
General
Merging a branch that changed one collection kept the changed value, the related collection, and the commit history consistent.
✅
—
General
A row written through one PostgreSQL session was still available after a new session connected, and both sessions used the requested database.
✅
—
Collection
The persisted procedure remained available after a branch merge, and its collection data could be loaded again without losing rows.
✅
—
Collection
Requesting a procedure that does not exist returned no metadata row and a clear error. The server did not choose another procedure or crash.
✅
—
Database
The local database accepted the connection, created the check table, stored value 7, and read it back from the same session.
✅
—
Database
The server rejected the requested database and returned a clear error instead of opening another database.
✅
—
Rev
The updated Dolt dependency resolves to the exact version requested by the change, and Go confirms that its module checksums are valid.
✅
—
Rev
The repository compiled successfully, and all Go tests passed with no failures, panics, or timeouts.
✅
—
Rev
Committed rows stayed available, the rolled-back row was absent, and a new session read the same data with valid sequence values.
✅
—
Server
The server accepted a PostgreSQL connection and successfully created a table, added a column, and queried the table. The query returned the expected id and label columns.
✅
—
Storage
After the database was written and reopened, the table and saved root metadata kept the same values.
✅
—
Storage
Empty foreign-key and root-object hash fields can be written and read back without an invalid value error.
✅
—
Storage
The storage boundary check passed, and the valid root state stayed unchanged after the rejected write.
Tip
Reply with @itoqa to send us feedback on this test run.
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]
```