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

Bugfix: support filtering out only some of the partitions #863

Merged
merged 3 commits into from
Aug 6, 2024

Commits on Aug 5, 2024

  1. Reproduce failures when filtering partitions

    PostgreSQL command `TRUNCATE ONLY` does not support partitioned tables.
    This commit adds a test case to ensure that the `TRUNCATE ONLY` command
    is not used on partitioned tables.
    
    ERROR:  cannot truncate only a partitioned table
    HINT:  Do not specify the ONLY keyword, or use TRUNCATE ONLY on the partitions directly.
    ERROR:  cannot truncate only a partitioned table
    SQL query: TRUNCATE ONLY partitioned_tables.sellers
    hanefi committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    f607e8b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2550bed View commit details
    Browse the repository at this point in the history
  3. Fix tests

    hanefi committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    4201614 View commit details
    Browse the repository at this point in the history