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
1029: Fix schemas for dolt system tables with boolean columns
Dolt PR: dolthub/dolt#8634
1014: Reworked DoltgresType function access
This reworks how functions are accessed within DoltgresType, in addition to adding a faster path for functions that fall under specific criteria.
988: Added a mini sysbench test that runs on PRs
This adds a new workflow that runs on every PR, similar to the regression tests. This runs a small version of the sysbench tests, primarily to detect large performance changes that a PR may unexpectedly introduce. For now, the variance is set to ±10%. That is, if it's under 10% in either direction, it'll just display as a white color. If it's greater, then it'll display as green or red respectively to indicate a possible performance regression. There's variability in the tests, that we'll want to account for, but perhaps the 10% window is too large. Or maybe we should run the tests for longer.
986: Revert "Merge pull request #904 from dolthub/jennifer/type"
This reverts commit 40dba4f, reversing changes made to 165c30e.
Reverting this change because of performance regression.
983: Major improvements to auth
This adds a myriad of tests, in addition to:
Schema-Wide Table Privileges
Schema Privileges
Database Privileges
Role Memberships
There are also many smaller changes, such as disallowing non-superusers from modifying superusers, and many more.
981: support insert DEFAULT VALUES
This is postgres special syntax that allows you to just insert all default values.
This is equivalent to insert into <tbl> values () in MySQL.
978: support EXISTS subquery
This PR adds support for EXISTS <subquery> clause.
Additionally, we have to add a bunch of skips namely in the setup queries in the testing/go/regression/results directory; these queries encounter performance issues for joins over pg_catalog tables discussed here: #940
977: update Regression test to display 50 tests each at most with total number of tests
970: catch more unsupported partition of queries
These were panicking before, but now we throw unsupported
965: Fix DEFAULT insert for NULL or unspecified column default values
904: create DoltgresType struct used for all types
This PR replaces current DoltgresType interface with DoltgresType struct. All built-in types will have pre-defined values for this struct. User-defined types will populate the struct fields with appropriate values.
Depends on dolthub/go-mysql-server#2736
Closed Issues
985: pull requests need #benchmark so latency regressions can be caught before they're merged.