Skip to content

Commit

Permalink
fix: partition rule (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicecui authored Jun 25, 2024
1 parent 754119b commit 9a0b1d0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CREATE TABLE public.test_p (
)
PARTITION ON COLUMNS (a) (
a < 10,
a > 10 AND a < 20,
a >= 10 AND a < 20,
a >= 20
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CREATE TABLE public.test_p (
)
PARTITION ON COLUMNS (a) (
a < 10,
a > 10 AND a < 20,
a >= 10 AND a < 20,
a >= 20
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CREATE TABLE public.test_p (
)
PARTITION ON COLUMNS (a) (
a < 10,
a > 10 AND a < 20,
a >= 10 AND a < 20,
a >= 20
);
SELECT * FROM PARTITIONS WHERE table_schema='public' AND table_name='test_p'\G
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CREATE TABLE public.test_p (
)
PARTITION ON COLUMNS (a) (
a < 10,
a > 10 AND a < 20,
a >= 10 AND a < 20,
a >= 20
);
SELECT * FROM PARTITIONS WHERE table_schema='public' AND table_name='test_p'\G
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CREATE TABLE public.test_p (
)
PARTITION ON COLUMNS (a) (
a < 10,
a > 10 AND a < 20,
a >= 10 AND a < 20,
a >= 20
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CREATE TABLE public.test_p (
)
PARTITION ON COLUMNS (a) (
a < 10,
a > 10 AND a < 20,
a >= 10 AND a < 20,
a >= 20
);

Expand Down

0 comments on commit 9a0b1d0

Please sign in to comment.