Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
988dec05
Commit
988dec05
authored
Apr 07, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some issues with missing or too many newlines at
end of file.
parent
e00ee887
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
src/test/regress/expected/join_1.out
src/test/regress/expected/join_1.out
+1
-0
src/test/regress/sql/alter_table.sql
src/test/regress/sql/alter_table.sql
+1
-1
src/test/regress/sql/join.sql
src/test/regress/sql/join.sql
+1
-1
src/test/regress/sql/update.sql
src/test/regress/sql/update.sql
+1
-1
No files found.
src/test/regress/expected/join_1.out
View file @
988dec05
...
...
@@ -2183,3 +2183,4 @@ SELECT * FROM t3;
x | y
---+---
(0 rows)
src/test/regress/sql/alter_table.sql
View file @
988dec05
...
...
@@ -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
);
src/test/regress/sql/join.sql
View file @
988dec05
...
...
@@ -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
;
src/test/regress/sql/update.sql
View file @
988dec05
...
...
@@ -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
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment