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
7d43349a
Commit
7d43349a
authored
Oct 13, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix capitalization of example.
parent
c10dba2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
contrib/xml2/pgxml.sql.in
contrib/xml2/pgxml.sql.in
+2
-2
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/copy.sgml
+2
-2
No files found.
contrib/xml2/pgxml.sql.in
View file @
7d43349a
...
...
@@ -44,7 +44,7 @@ CREATE OR REPLACE FUNCTION xpath_nodeset(text,text,text) RETURNS text AS
CREATE OR REPLACE FUNCTION xpath_table(text,text,text,text,text) RETURNS setof record
AS 'MODULE_PATHNAME'
LANGUAGE 'c' STRICT
IMMU
TABLE;
LANGUAGE 'c' STRICT
S
TABLE;
-- XSLT functions
-- Delete from here to the end of the file if you are not compiling with
...
...
@@ -52,7 +52,7 @@ CREATE OR REPLACE FUNCTION xpath_table(text,text,text,text,text) RETURNS setof r
CREATE OR REPLACE FUNCTION xslt_process(text,text,text) RETURNS text
AS 'MODULE_PATHNAME' LANGUAGE 'c' STRICT
IMMU
TABLE;
AS 'MODULE_PATHNAME' LANGUAGE 'c' STRICT
S
TABLE;
-- the function checks for the correct argument count
...
...
doc/src/sgml/ref/copy.sgml
View file @
7d43349a
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.6
8 2005/10/13 02:00:09
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.6
9 2005/10/13 14:44:58
momjian Exp $
PostgreSQL documentation
-->
...
...
@@ -713,7 +713,7 @@ COPY country FROM '/usr1/proj/bray/sql/country_data';
using a temporary table which is automatically deleted:
<programlisting>
BEGIN;
CREATE TEMP TABLE a_list_
COUNTRIES
AS
CREATE TEMP TABLE a_list_
countries
AS
SELECT * FROM country WHERE country_name LIKE 'A%';
COPY a_list_countries TO '/usr1/proj/bray/sql/a_list_countries.copy';
ROLLBACK;
...
...
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