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
93874ce0
Commit
93874ce0
authored
Jun 01, 2013
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix whitespace issues in the man pages
See
00b0c73f
for an explanation.
parent
a149d8bd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
10 deletions
+5
-10
doc/src/sgml/ref/alter_view.sgml
doc/src/sgml/ref/alter_view.sgml
+1
-2
doc/src/sgml/ref/create_event_trigger.sgml
doc/src/sgml/ref/create_event_trigger.sgml
+1
-2
doc/src/sgml/ref/create_view.sgml
doc/src/sgml/ref/create_view.sgml
+1
-2
doc/src/sgml/ref/refresh_materialized_view.sgml
doc/src/sgml/ref/refresh_materialized_view.sgml
+1
-2
doc/src/sgml/ref/select.sgml
doc/src/sgml/ref/select.sgml
+1
-2
No files found.
doc/src/sgml/ref/alter_view.sgml
View file @
93874ce0
...
...
@@ -165,8 +165,7 @@ CREATE VIEW a_view AS SELECT * FROM base_table;
ALTER VIEW a_view ALTER COLUMN ts SET DEFAULT now();
INSERT INTO base_table(id) VALUES(1); -- ts will receive a NULL
INSERT INTO a_view(id) VALUES(2); -- ts will receive the current time
</programlisting>
</para>
</programlisting></para>
</refsect1>
<refsect1>
...
...
doc/src/sgml/ref/create_event_trigger.sgml
View file @
93874ce0
...
...
@@ -137,8 +137,7 @@ $$;
CREATE EVENT TRIGGER abort_ddl ON ddl_command_start
EXECUTE PROCEDURE abort_any_command();
</programlisting>
</para>
</programlisting></para>
</refsect1>
<refsect1 id="sql-createeventtrigger-compatibility">
...
...
doc/src/sgml/ref/create_view.sgml
View file @
93874ce0
...
...
@@ -307,8 +307,7 @@ CREATE RECURSIVE VIEW nums_1_100 (n) AS
VALUES (1)
UNION ALL
SELECT n+1 FROM nums_1_100 WHERE n < 100;
</programlisting>
</para>
</programlisting></para>
</refsect1>
<refsect1>
...
...
doc/src/sgml/ref/refresh_materialized_view.sgml
View file @
93874ce0
...
...
@@ -87,8 +87,7 @@ REFRESH MATERIALIZED VIEW order_summary;
state:
<programlisting>
REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA;
</programlisting>
</para>
</programlisting></para>
</refsect1>
<refsect1>
...
...
doc/src/sgml/ref/select.sgml
View file @
93874ce0
...
...
@@ -514,8 +514,7 @@ TABLE [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ]
<literal>FROM</> item.)
</para>
<para>
<literal>LATERAL</literal> can also precede a function-call
<para><literal>LATERAL</literal> can also precede a function-call
<literal>FROM</> item, but in this case it is a noise word, because
the function expression can refer to earlier <literal>FROM</> items
in any case.
...
...
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