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
a559ed5e
Commit
a559ed5e
authored
Aug 07, 2011
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename "Example" sections to "Examples" in dblink chapter
For consistency with other man pages.
parent
6ef24487
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
doc/src/sgml/dblink.sgml
doc/src/sgml/dblink.sgml
+18
-18
No files found.
doc/src/sgml/dblink.sgml
View file @
a559ed5e
...
@@ -113,7 +113,7 @@ dblink_connect(text connname, text connstr) returns text
...
@@ -113,7 +113,7 @@ dblink_connect(text connname, text connstr) returns text
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_connect('dbname=postgres');
SELECT dblink_connect('dbname=postgres');
...
@@ -284,7 +284,7 @@ dblink_disconnect(text connname) returns text
...
@@ -284,7 +284,7 @@ dblink_disconnect(text connname) returns text
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_disconnect();
SELECT dblink_disconnect();
...
@@ -450,7 +450,7 @@ SELECT * FROM myremote_pg_proc WHERE proname LIKE 'bytea%';
...
@@ -450,7 +450,7 @@ SELECT * FROM myremote_pg_proc WHERE proname LIKE 'bytea%';
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT * FROM dblink('dbname=postgres', 'select proname, prosrc from pg_proc')
SELECT * FROM dblink('dbname=postgres', 'select proname, prosrc from pg_proc')
...
@@ -618,7 +618,7 @@ dblink_exec(text sql [, bool fail_on_error]) returns text
...
@@ -618,7 +618,7 @@ dblink_exec(text sql [, bool fail_on_error]) returns text
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_connect('dbname=dblink_test_standby');
SELECT dblink_connect('dbname=dblink_test_standby');
...
@@ -759,7 +759,7 @@ dblink_open(text connname, text cursorname, text sql [, bool fail_on_error]) ret
...
@@ -759,7 +759,7 @@ dblink_open(text connname, text cursorname, text sql [, bool fail_on_error]) ret
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_connect('dbname=postgres');
SELECT dblink_connect('dbname=postgres');
...
@@ -876,7 +876,7 @@ dblink_fetch(text connname, text cursorname, int howmany [, bool fail_on_error])
...
@@ -876,7 +876,7 @@ dblink_fetch(text connname, text cursorname, int howmany [, bool fail_on_error])
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_connect('dbname=postgres');
SELECT dblink_connect('dbname=postgres');
...
@@ -1009,7 +1009,7 @@ dblink_close(text connname, text cursorname [, bool fail_on_error]) returns text
...
@@ -1009,7 +1009,7 @@ dblink_close(text connname, text cursorname [, bool fail_on_error]) returns text
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_connect('dbname=postgres');
SELECT dblink_connect('dbname=postgres');
...
@@ -1066,7 +1066,7 @@ dblink_get_connections() returns text[]
...
@@ -1066,7 +1066,7 @@ dblink_get_connections() returns text[]
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<programlisting>
<programlisting>
SELECT dblink_get_connections();
SELECT dblink_get_connections();
...
@@ -1125,7 +1125,7 @@ dblink_error_message(text connname) returns text
...
@@ -1125,7 +1125,7 @@ dblink_error_message(text connname) returns text
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<programlisting>
<programlisting>
SELECT dblink_error_message('dtest1');
SELECT dblink_error_message('dtest1');
...
@@ -1203,7 +1203,7 @@ dblink_send_query(text connname, text sql) returns int
...
@@ -1203,7 +1203,7 @@ dblink_send_query(text connname, text sql) returns int
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<programlisting>
<programlisting>
SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 < 3');
SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 < 3');
...
@@ -1262,7 +1262,7 @@ dblink_is_busy(text connname) returns int
...
@@ -1262,7 +1262,7 @@ dblink_is_busy(text connname) returns int
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<programlisting>
<programlisting>
SELECT dblink_is_busy('dtest1');
SELECT dblink_is_busy('dtest1');
...
@@ -1322,7 +1322,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex
...
@@ -1322,7 +1322,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_exec('LISTEN virtual');
SELECT dblink_exec('LISTEN virtual');
...
@@ -1435,7 +1435,7 @@ dblink_get_result(text connname [, bool fail_on_error]) returns setof record
...
@@ -1435,7 +1435,7 @@ dblink_get_result(text connname [, bool fail_on_error]) returns setof record
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
contrib_regression=# SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
contrib_regression=# SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
...
@@ -1552,7 +1552,7 @@ dblink_cancel_query(text connname) returns text
...
@@ -1552,7 +1552,7 @@ dblink_cancel_query(text connname) returns text
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<programlisting>
<programlisting>
SELECT dblink_cancel_query('dtest1');
SELECT dblink_cancel_query('dtest1');
...
@@ -1626,7 +1626,7 @@ CREATE TYPE dblink_pkey_results AS (position int, colname text);
...
@@ -1626,7 +1626,7 @@ CREATE TYPE dblink_pkey_results AS (position int, colname text);
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
CREATE TABLE foobar (
CREATE TABLE foobar (
...
@@ -1767,7 +1767,7 @@ dblink_build_sql_insert(text relname,
...
@@ -1767,7 +1767,7 @@ dblink_build_sql_insert(text relname,
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
...
@@ -1881,7 +1881,7 @@ dblink_build_sql_delete(text relname,
...
@@ -1881,7 +1881,7 @@ dblink_build_sql_delete(text relname,
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
...
@@ -2014,7 +2014,7 @@ dblink_build_sql_update(text relname,
...
@@ -2014,7 +2014,7 @@ dblink_build_sql_update(text relname,
</refsect1>
</refsect1>
<refsect1>
<refsect1>
<title>Example</title>
<title>Example
s
</title>
<screen>
<screen>
SELECT dblink_build_sql_update('foo', '1 2', 2, '{"1", "a"}', '{"1", "b"}');
SELECT dblink_build_sql_update('foo', '1 2', 2, '{"1", "a"}', '{"1", "b"}');
...
...
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