Commit 5c3473b
Fix RANGE COLUMNS row matching criterion
For example:
create table t1 (c1 int, c2 int) partition by range columns (c1, c2)
(
partition p0 values less than (1, 2),
partition p1 values less than (2, 1)
);
insert into t1 values (0, 1), (1, 0), (1, 1), (1, 2);
select * from t1 partition (p0);
c1 c2
0 1
1 0
1 1
select * from t1 partition (p1);
c1 c2
1 2
drop table t1;1 parent 7fec7ff commit 5c3473b
File tree
1 file changed
+1
-1
lines changed- server/server-usage/partitioning-tables/partitioning-types
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
0 commit comments