Commit 988dec05 authored by Tom Lane's avatar Tom Lane

Fix some issues with missing or too many newlines at

end of file.
parent e00ee887
...@@ -2183,3 +2183,4 @@ SELECT * FROM t3; ...@@ -2183,3 +2183,4 @@ SELECT * FROM t3;
x | y x | y
---+--- ---+---
(0 rows) (0 rows)
...@@ -991,4 +991,4 @@ create function non_strict(text) returns text as ...@@ -991,4 +991,4 @@ create function non_strict(text) returns text as
language sql called on null input; language sql called on null input;
select non_strict(NULL); select non_strict(NULL);
alter function non_strict(text) returns null on null input; alter function non_strict(text) returns null on null input;
select non_strict(NULL); select non_strict(NULL);
\ No newline at end of file
...@@ -372,4 +372,4 @@ SELECT * FROM t3; ...@@ -372,4 +372,4 @@ SELECT * FROM t3;
DELETE FROM t3 USING t1 JOIN t2 USING (a) WHERE t3.x > t1.a; DELETE FROM t3 USING t1 JOIN t2 USING (a) WHERE t3.x > t1.a;
SELECT * FROM t3; SELECT * FROM t3;
DELETE FROM t3 USING t3 t3_other WHERE t3.x = t3_other.x AND t3.y = t3_other.y; DELETE FROM t3 USING t3 t3_other WHERE t3.x = t3_other.x AND t3.y = t3_other.y;
SELECT * FROM t3; SELECT * FROM t3;
\ No newline at end of file
...@@ -16,4 +16,4 @@ UPDATE update_test SET a = DEFAULT, b = DEFAULT; ...@@ -16,4 +16,4 @@ UPDATE update_test SET a = DEFAULT, b = DEFAULT;
SELECT * FROM update_test; SELECT * FROM update_test;
DROP TABLE update_test; DROP TABLE update_test;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment