You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The operator of varchar does not exist in pg_operator.dat, but it have same oper with text.
This is because the type which can be cast picked in the oper() function.
Current change support the varchar min/max operator in PAX.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'v1' as the Cloudberry Database data distribution key for this table.
9
9
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
@@ -17,6 +17,19 @@ select * from get_pax_aux_table('t1');
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'v1' as the Cloudberry Database data distribution key for this table.
22
+
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
23
+
insert into t2 select i::bpchar,i::bpchar,i::varchar, i::varchar from generate_series(1, 1000)i;
0 | 322 | [(false,false),(322),(1,998),None],[(false,false),(322),(1 ,998 ),None],[(false,false),(322),(1,998),None],[(false,false),(322),(1,998),None] | f | f | f
28
+
0 | 340 | [(false,false),(340),(1000,999),None],[(false,false),(340),(1000 ,999 ),None],[(false,false),(340),(1000,999),None],[(false,false),(340),(1000,999),None] | f | f | f
29
+
0 | 338 | [(false,false),(338),(101,997),None],[(false,false),(338),(101 ,997 ),None],[(false,false),(338),(101,997),None],[(false,false),(338),(101,997),None] | f | f | f
30
+
(3 rows)
31
+
32
+
drop table t2;
20
33
-- test `hasnull/allnull`/`count`, not need setting the minmax_columns
21
34
create table t1(v1 int, v2 float8);
22
35
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'v1' as the Cloudberry Database data distribution key for this table.
0 commit comments