Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PG17 compatibility: fix diff in tableam #7771

Open
wants to merge 1 commit into
base: naisila/pg17_support
Choose a base branch
from

Commits on Nov 29, 2024

  1. PG17 regress sanity: fix diff in tableam

    Test `tableam` expects that this CREATE TABLE statement:
    `CREATE TABLE test_partitioned(id int, p int, val int) PARTITION BY
    RANGE (p) USING fake_am;`
    will produce this error:
    `specifying a table access method is not supported on a partitioned
    table`
    
    but as of this PG commit it is possible to specify an access method
    on a partitioned table:
    https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=374c7a229
    
    This fix moves the CREATE TABLE statement to pg17, and adds an
    additional test to show parent access method is inherited.
    colm-mchugh committed Nov 29, 2024
    Configuration menu
    Copy the full SHA
    a108390 View commit details
    Browse the repository at this point in the history