Skip to content

Commit 18be34f

Browse files
committed
address one more comment
1 parent fbffe34 commit 18be34f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-aggregates_part1.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
-- avoid bit-exact output here because operations may not be bit-exact.
99
-- SET extra_float_digits = 0;
1010

11-
-- This test file was converted from pgSQL/aggregates_part1.sql.
11+
-- This test file was converted from postgreSQL/aggregates_part1.sql.
1212

1313
SELECT avg(udf(four)) AS avg_1 FROM onek;
1414

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-aggregates_part2.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- AGGREGATES [Part 2]
66
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/aggregates.sql#L145-L350
77
--
8-
-- This test file was converted from pgSQL/aggregates_part2.sql.
8+
-- This test file was converted from postgreSQL/aggregates_part2.sql.
99

1010
create temporary view int4_tbl as select * from values
1111
(0),

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-aggregates_part3.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- AGGREGATES [Part 3]
66
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/aggregates.sql#L352-L605
77

8-
-- This test file was converted from pgSQL/aggregates_part3.sql.
8+
-- This test file was converted from postgreSQL/aggregates_part3.sql.
99

1010
-- [SPARK-28865] Table inheritance
1111
-- try it on an inheritance tree

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-aggregates_part4.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- AGGREGATES [Part 4]
66
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/aggregates.sql#L607-L997
77

8-
-- This test file was converted from pgSQL/aggregates_part4.sql.
8+
-- This test file was converted from postgreSQL/aggregates_part4.sql.
99

1010
-- [SPARK-27980] Ordered-Set Aggregate Functions
1111
-- ordered-set aggregates

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-case.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/case.sql
77
-- Test the CASE statement
88
--
9-
-- This test file was converted from pgSQL/case.sql.
9+
-- This test file was converted from postgreSQL/case.sql.
1010

1111
CREATE TABLE CASE_TBL (
1212
i integer,

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-join.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-- Test JOIN clauses
77
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/join.sql
88
--
9-
-- This test file was converted from pgSQL/join.sql.
9+
-- This test file was converted from postgreSQL/join.sql.
1010

1111
CREATE OR REPLACE TEMPORARY VIEW INT4_TBL AS SELECT * FROM
1212
(VALUES (0), (123456), (-123456), (2147483647), (-2147483647))

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-select_having.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- SELECT_HAVING
66
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/select_having.sql
77
--
8-
-- This test file was converted from inputs/pgSQL/select_having.sql
8+
-- This test file was converted from inputs/postgreSQL/select_having.sql
99
-- TODO: We should add UDFs in GROUP BY clause when [SPARK-28386] and [SPARK-26741] is resolved.
1010

1111
-- load test data

sql/core/src/test/resources/sql-tests/inputs/udf/postgreSQL/udf-select_implicit.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
-- - thomas 1998-07-09
1010
-- https://github.com/postgres/postgres/blob/REL_12_BETA2/src/test/regress/sql/select_implicit.sql
1111
--
12-
-- This test file was converted from pgSQL/select_implicit.sql
12+
-- This test file was converted from postgreSQL/select_implicit.sql
1313

1414
-- load test data
1515
CREATE TABLE test_missing_target (a int, b int, c string, d string) using parquet;

0 commit comments

Comments
 (0)