Skip to content

0.7.5

Compare
Choose a tag to compare
@github-actions github-actions released this 20 May 17:00

Merged PRs

doltgresql

  • 283: scripts/build_binaries.sh: Fix regression where we accidentally shipped all linux/amd64 binaries instead of platform-specific ones.
  • 276: move config to its own package and update dolt servercfg package
  • 273: EXECUTE doesn't send RowDescription
    This PR fixes issue connecting to doltgres server using Postgres JDBC driver.
    In Postgres docs, it says, "Execute doesn't cause ReadyForQuery or RowDescription to be issued."
    Also, queries that don't return set of rows send NoData in response to Describe message.
  • 266: Release v0.7.4
    Created by the Release workflow to update DoltgreSQL's version
  • 255: only some queries send RowDescription message
    • Only queries that returns set of rows should send RowDescription message. This includes SELECT, FETCH, SHOW, etc.
    • The CommandTag is now set by the StatementTag from the parsed query.
    • Empty query should send EmptyQueryResponse message.
  • 219: Adds CREATE SEQUENCE and DROP SEQUENCE
    Companion PR:
    • dolthub/dolt#7848
      This adds functionality for CREATE SEQUENCE and DROP SEQUENCE. For sequences, this is what is in the PR:
    • MINVALUE
    • MAXVALUE
    • INCREMENT
    • AS DATA TYPE
    • START WITH
    • CYCLE
      This is what is missing:
    • TEMPORARY
    • UNLOGGED
    • CACHE
    • OWNED BY
    • SERIAL
    • Merging
    • Table Querying
      Of what's missing, merging and SERIAL are the main additions, with OWNED BY required for proper SERIAL support. Table querying is fairly straightforward (the pg_sequences system table, etc.). The others are, hopefully, unnecessary for now and can be postponed, although perhaps we can save the CACHE value and ignore it since it's primarily a performance-oriented option.
      With that, SERIAL and merging will come in the next PR, since this is already very large. Also of note, the Writer and Reader utilities were implemented for my Convert-to-Cast PR but they were useful here, so I pulled them from that in-flight PR and added them here.

Closed Issues

  • 240: Returned result differs from Postgres