forked from greenplum-db/gpbackup-archive
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ADBDEV-5693
- Loading branch information
Showing
12 changed files
with
446 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* src/test/modules/test_extensions/test_ext5--1.0.sql */ | ||
-- complain if script is sourced in psql, rather than via CREATE EXTENSION | ||
\echo Use "CREATE EXTENSION test_ext6" to load this file. \quit | ||
|
||
CREATE TABLE t_part (id int, a int, b int , c text) | ||
DISTRIBUTED BY (id) | ||
PARTITION BY RANGE (a) | ||
SUBPARTITION BY LIST (c) | ||
SUBPARTITION TEMPLATE | ||
( SUBPARTITION a_part VALUES ('a'), | ||
SUBPARTITION b_part VALUES ('b')) | ||
(START (0) INCLUSIVE | ||
END (3) EXCLUSIVE | ||
EVERY (1)); | ||
|
||
CREATE TABLE d_part (a int, b int, c int) DISTRIBUTED BY (a) | ||
PARTITION BY RANGE (b) (START (0) END (3) EVERY (1), default partition extra); | ||
INSERT INTO d_part SELECT a, 10, a FROM generate_series(1, 100)a; | ||
|
||
CREATE TABLE parent (a int, b int) DISTRIBUTED BY (a); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
comment = 'Test extension 6' | ||
default_version = '1.0' | ||
relocatable = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.