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
Copy file name to clipboardExpand all lines: gpcontrib/orafce/expected/gp_partition_by.out
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'str'
10
10
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
11
11
INSERT INTO t3 VALUES ('a'), ('b'), ('c');
12
12
SELECT * FROM t3 ORDER BY str;
13
+
HINT: For non-partitioned tables, run analyze <table_name>(<column_list>). For partitioned tables, run analyze rootpartition <table_name>(<column_list>). See log for columns missing statistics.
14
+
NOTICE: One or more columns in the following table(s) do not have statistics: t3
13
15
str
14
16
-----
15
17
a
@@ -38,6 +40,8 @@ NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'str'
38
40
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
39
41
INSERT INTO t4 VALUES ('a'), ('b'), ('c');
40
42
SELECT * FROM t4 ORDER BY str;
43
+
HINT: For non-partitioned tables, run analyze <table_name>(<column_list>). For partitioned tables, run analyze rootpartition <table_name>(<column_list>). See log for columns missing statistics.
44
+
NOTICE: One or more columns in the following table(s) do not have statistics: t4
0 commit comments