Add missing newlines at the end of two SQL files
authorMichael Paquier <[email protected]>
Sun, 3 Nov 2024 10:42:51 +0000 (19:42 +0900)
committerMichael Paquier <[email protected]>
Sun, 3 Nov 2024 10:42:51 +0000 (19:42 +0900)
arrays.sql was already missing it before 49d6c7d8daba, and I have just
noticed it thanks to this commit.  The second one in test_slru has been
introduced by 768a9fd5535f.

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

index 58300c59a77446b639bdc7307a0e35613aa1be64..abecb5e21838f84c4e8ea9d12d59210f92e2cd34 100644 (file)
@@ -24,4 +24,4 @@ CREATE OR REPLACE FUNCTION test_slru_delete_all() RETURNS VOID
 CREATE OR REPLACE FUNCTION test_create_multixact() RETURNS xid
   AS 'MODULE_PATHNAME', 'test_create_multixact' LANGUAGE C;
 CREATE OR REPLACE FUNCTION test_read_multixact(xid) RETURNS VOID
-  AS 'MODULE_PATHNAME', 'test_read_multixact'LANGUAGE C;
\ No newline at end of file
+  AS 'MODULE_PATHNAME', 'test_read_multixact'LANGUAGE C;
index 691cff4a124fdaf55f6a393137d2e78039bae833..03cc8cfcd910b4e9c2a9345bb49ef3e29d1c08c6 100644 (file)
@@ -833,4 +833,4 @@ SELECT array_reverse('{}'::int[]);
 SELECT array_reverse('{1}'::int[]);
 SELECT array_reverse('{1,2}'::int[]);
 SELECT array_reverse('{1,2,3,NULL,4,5,6}'::int[]);
-SELECT array_reverse('{{1,2},{3,4},{5,6},{7,8}}'::int[]);
\ No newline at end of file
+SELECT array_reverse('{{1,2},{3,4},{5,6},{7,8}}'::int[]);