Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 027124a

Browse files
committed
Add missing newlines at the end of two SQL files
arrays.sql was already missing it before 49d6c7d, and I have just noticed it thanks to this commit. The second one in test_slru has been introduced by 768a9fd.
1 parent 825c72c commit 027124a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/modules/test_slru/test_slru--1.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ CREATE OR REPLACE FUNCTION test_slru_delete_all() RETURNS VOID
2424
CREATE OR REPLACE FUNCTION test_create_multixact() RETURNS xid
2525
AS 'MODULE_PATHNAME', 'test_create_multixact' LANGUAGE C;
2626
CREATE OR REPLACE FUNCTION test_read_multixact(xid) RETURNS VOID
27-
AS 'MODULE_PATHNAME', 'test_read_multixact'LANGUAGE C;
27+
AS 'MODULE_PATHNAME', 'test_read_multixact'LANGUAGE C;

src/test/regress/sql/arrays.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,4 +833,4 @@ SELECT array_reverse('{}'::int[]);
833833
SELECT array_reverse('{1}'::int[]);
834834
SELECT array_reverse('{1,2}'::int[]);
835835
SELECT array_reverse('{1,2,3,NULL,4,5,6}'::int[]);
836-
SELECT array_reverse('{{1,2},{3,4},{5,6},{7,8}}'::int[]);
836+
SELECT array_reverse('{{1,2},{3,4},{5,6},{7,8}}'::int[]);

0 commit comments

Comments
 (0)