Skip to content

1.13.3

Compare
Choose a tag to compare
@github-actions github-actions released this 25 Aug 00:18

Merged PRs

dolt

  • 6584: Migrate the dolt_procedures table whenever stored procedures are used
    Fixes: #6579
    Before, we were only migrating the table when a new stored procedure was added. This means that any branches that predate our recent change to dolt_procedures would be broken until a new stored procedure was added. This fixes that by checking to see if the table needs to be migrated whenever the stored procedures are listed or used, not just when they're added.
  • 6577: Pull indexed system table functions into their own test suite.
    This was supposed to be part of #6509 but I the push containing this commit was rejected and I didn't notice. It incorporates the testing feedback @max-hoffman suggested.

go-mysql-server

  • 1969: Added a QueryEngine abstraction to engine tests to allow us to run engine tests on a running server
    Implementation is partially working. Lots of errors when used in tests, some of which are real and some of which are issues with test definitions. Will keep working on this over time, but want to get the necessary refactoring in before continuing.
  • 1968: Missed cases where replicaBinlogController is needed during building
  • 1967: Join aggregation projections subject to dropped refs
    Aggregation intermediate projections need to output all inputs for aliases in the target projection. The way we were tracking column source column references did not take into account that two join tables can have the same column name. Now we include the table name for alias dependency tracking.
    close #6578
  • 1965: Add error test for ambiguous column name query
    close #6395
  • 1964: Skip subquery pushdown when no subquery
    This will have a small perf impact.
  • 1962: Name res cleanup, docs and inline rules
    Move bespoke rules into planbuilder. Functions are only ran for their necessary nodes. Also adds copyright headers.
    Requires some Dolt changes: #6567
  • 1955: adding catalog table function interface

vitess

  • 265: upgraded YAML library
  • 262: Prepared query statement round trip
    Changes to aliases and json_table to make the AST string formatters round-trip.
    Biggest change to tests is that useSelectExpressionLiteral seems to behave differently.

Closed Issues

  • 6579: Stored Procedure Panic
  • 6578: Schema types and collations shifting
  • 6543: Fulltext and autoincrement together causes Panic
  • 6541: Adding fulltext index to a column with only null values panics.