From: Tom Lane Date: Thu, 7 Apr 2005 15:23:06 +0000 (+0000) Subject: Fix some issues with missing or too many newlines at X-Git-Tag: REL9_0_0~10447 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=988dec051894d70d22a050c56d74bf377bb5f99c;p=pg-rex%2Fsyncrep.git Fix some issues with missing or too many newlines at end of file. --- diff --git a/src/test/regress/expected/join_1.out b/src/test/regress/expected/join_1.out index c3bfb04fb4..41c688790e 100644 --- a/src/test/regress/expected/join_1.out +++ b/src/test/regress/expected/join_1.out @@ -2183,3 +2183,4 @@ SELECT * FROM t3; x | y ---+--- (0 rows) + diff --git a/src/test/regress/sql/alter_table.sql b/src/test/regress/sql/alter_table.sql index 445fabf7e0..2659efbfac 100644 --- a/src/test/regress/sql/alter_table.sql +++ b/src/test/regress/sql/alter_table.sql @@ -991,4 +991,4 @@ create function non_strict(text) returns text as language sql called on null input; select non_strict(NULL); alter function non_strict(text) returns null on null input; -select non_strict(NULL); \ No newline at end of file +select non_strict(NULL); diff --git a/src/test/regress/sql/join.sql b/src/test/regress/sql/join.sql index ba48cad7fe..a5e521e714 100644 --- a/src/test/regress/sql/join.sql +++ b/src/test/regress/sql/join.sql @@ -372,4 +372,4 @@ SELECT * FROM t3; DELETE FROM t3 USING t1 JOIN t2 USING (a) WHERE t3.x > t1.a; SELECT * FROM t3; DELETE FROM t3 USING t3 t3_other WHERE t3.x = t3_other.x AND t3.y = t3_other.y; -SELECT * FROM t3; \ No newline at end of file +SELECT * FROM t3; diff --git a/src/test/regress/sql/update.sql b/src/test/regress/sql/update.sql index 64e0f81914..577596abb1 100644 --- a/src/test/regress/sql/update.sql +++ b/src/test/regress/sql/update.sql @@ -16,4 +16,4 @@ UPDATE update_test SET a = DEFAULT, b = DEFAULT; SELECT * FROM update_test; -DROP TABLE update_test; \ No newline at end of file +DROP TABLE update_test;