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
d1cf27a8
Commit
d1cf27a8
authored
Feb 04, 2009
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some SGML-compiler warnings on -wxml mode.
parent
d8a30eca
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
83 additions
and
83 deletions
+83
-83
doc/src/sgml/advanced.sgml
doc/src/sgml/advanced.sgml
+2
-2
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+62
-62
doc/src/sgml/installation.sgml
doc/src/sgml/installation.sgml
+2
-2
doc/src/sgml/plpgsql.sgml
doc/src/sgml/plpgsql.sgml
+4
-4
doc/src/sgml/syntax.sgml
doc/src/sgml/syntax.sgml
+13
-13
No files found.
doc/src/sgml/advanced.sgml
View file @
d1cf27a8
<!-- $PostgreSQL: pgsql/doc/src/sgml/advanced.sgml,v 1.5
6 2008/12/31 00:08:32 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/advanced.sgml,v 1.5
7 2009/02/04 21:30:41 alvherre
Exp $ -->
<chapter id="tutorial-advanced">
<title>Advanced Features</title>
...
...
@@ -529,7 +529,7 @@ FROM
rank() OVER (PARTITION BY depname ORDER BY salary DESC, empno) AS pos
FROM empsalary
) AS ss
WHERE pos
<
3;
WHERE pos
<
3;
</programlisting>
The above query only shows the rows from the inner query having
...
...
doc/src/sgml/catalogs.sgml
View file @
d1cf27a8
This diff is collapsed.
Click to expand it.
doc/src/sgml/installation.sgml
View file @
d1cf27a8
<
!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.31
8 2009/01/09 13:37:18 pete
re Exp $ -->
<
!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.31
9 2009/02/04 21:30:41 alvher
re Exp $ -->
<
chapter
id
=
"installation"
>
<
title
><
![%standalone-include[<productname>PostgreSQL</>]]>
...
...
@@ -2399,7 +2399,7 @@ hosts=local4,bind4
<
para
>
Start
<
command
>
cygserver
</
command
>
for
shared
memory
support
.
To
do
this
,
enter
the
command
<
literal
>/
usr
/
sbin
/
cygserver
&</
literal
>.
This
program
needs
to
be
running
anytime
you
&
amp
;
</
literal
>.
This
program
needs
to
be
running
anytime
you
start
the
PostgreSQL
server
or
initialize
a
database
cluster
(<
command
>
initdb
</
command
>).
The
default
<
command
>
cygserver
</
command
>
configuration
may
need
to
...
...
doc/src/sgml/plpgsql.sgml
View file @
d1cf27a8
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.13
6 2008/11/16 17:34:28 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.13
7 2009/02/04 21:30:41 alvherre
Exp $ -->
<chapter id="plpgsql">
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
...
...
@@ -1088,7 +1088,7 @@ EXECUTE <replaceable class="command">command-string</replaceable> <optional> INT
to SQL-injection attacks since there is no need for quoting or escaping.
An example is:
<programlisting>
EXECUTE 'SELECT count(*) FROM mytable WHERE inserted_by = $1 AND inserted
<
= $2'
EXECUTE 'SELECT count(*) FROM mytable WHERE inserted_by = $1 AND inserted
<
= $2'
INTO c
USING checked_user, checked_date;
</programlisting>
...
...
@@ -1101,7 +1101,7 @@ EXECUTE 'SELECT count(*) FROM mytable WHERE inserted_by = $1 AND inserted <= $2'
<programlisting>
EXECUTE 'SELECT count(*) FROM '
|| tabname::regclass
|| ' WHERE inserted_by = $1 AND inserted
<
= $2'
|| ' WHERE inserted_by = $1 AND inserted
<
= $2'
INTO c
USING checked_user, checked_date;
</programlisting>
...
...
@@ -4012,7 +4012,7 @@ a_output := a_output || $$ if v_$$ || referrer_keys.kind || $$ like '$$
<productname>PostgreSQL</>'s <application>PL/pgSQL</application>
language and Oracle's <application>PL/SQL</application> language,
to help developers who port applications from
<trademark class=
registered
>Oracle</> to <productname>PostgreSQL</>.
<trademark class=
"registered"
>Oracle</> to <productname>PostgreSQL</>.
</para>
<para>
...
...
doc/src/sgml/syntax.sgml
View file @
d1cf27a8
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.1
29 2008/12/31 23:42:56 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.1
30 2009/02/04 21:30:41 alvherre
Exp $ -->
<chapter id="sql-syntax">
<title>SQL Syntax</title>
...
...
@@ -194,11 +194,11 @@ UPDATE "my_table" SET "a" = 5;
identifiers</secondary></indexterm> A variant of quoted
identifiers allows including escaped Unicode characters identified
by their code points. This variant starts
with <literal>U&</literal> (upper or lower case U followed by
with <literal>U&
amp;
</literal> (upper or lower case U followed by
ampersand) immediately before the opening double quote, without
any spaces in between, for example <literal>U&"foo"</literal>.
any spaces in between, for example <literal>U&
amp;
"foo"</literal>.
(Note that this creates an ambiguity with the
operator <literal>&</literal>. Use spaces around the operator to
operator <literal>&
amp;
</literal>. Use spaces around the operator to
avoid this problem.) Inside the quotes, Unicode characters can be
specified in escaped form by writing a backslash followed by the
four-digit hexadecimal code point number or alternatively a
...
...
@@ -206,12 +206,12 @@ UPDATE "my_table" SET "a" = 5;
hexadecimal code point number. For example, the
identifier <literal>"data"</literal> could be written as
<programlisting>
U&"d\0061t\+000061"
U&
amp;
"d\0061t\+000061"
</programlisting>
The following less trivial example writes the Russian
word <quote>slon</quote> (elephant) in Cyrillic letters:
<programlisting>
U&"\0441\043B\043E\043D"
U&
amp;
"\0441\043B\043E\043D"
</programlisting>
</para>
...
...
@@ -221,7 +221,7 @@ U&"\0441\043B\043E\043D"
the <literal>UESCAPE</literal><indexterm><primary>UESCAPE</primary></indexterm>
clause after the string, for example:
<programlisting>
U&"d!0061t!+000061" UESCAPE '!'
U&
amp;
"d!0061t!+000061" UESCAPE '!'
</programlisting>
The escape character can be any single character other than a
hexadecimal digit, the plus sign, a single quote, a double quote,
...
...
@@ -458,11 +458,11 @@ SELECT 'foo' 'bar';
<productname>PostgreSQL</productname> also supports another type
of escape syntax for strings that allows specifying arbitrary
Unicode characters by code point. A Unicode escape string
constant starts with <literal>U&</literal> (upper or lower case
constant starts with <literal>U&
amp;
</literal> (upper or lower case
letter U followed by ampersand) immediately before the opening
quote, without any spaces in between, for
example <literal>U&'foo'</literal>. (Note that this creates an
ambiguity with the operator <literal>&</literal>. Use spaces
example <literal>U&
amp;
'foo'</literal>. (Note that this creates an
ambiguity with the operator <literal>&
amp;
</literal>. Use spaces
around the operator to avoid this problem.) Inside the quotes,
Unicode characters can be specified in escaped form by writing a
backslash followed by the four-digit hexadecimal code point
...
...
@@ -470,12 +470,12 @@ SELECT 'foo' 'bar';
followed by a six-digit hexadecimal code point number. For
example, the string <literal>'data'</literal> could be written as
<programlisting>
U&'d\0061t\+000061'
U&
amp;
'd\0061t\+000061'
</programlisting>
The following less trivial example writes the Russian
word <quote>slon</quote> (elephant) in Cyrillic letters:
<programlisting>
U&'\0441\043B\043E\043D'
U&
amp;
'\0441\043B\043E\043D'
</programlisting>
</para>
...
...
@@ -485,7 +485,7 @@ U&'\0441\043B\043E\043D'
the <literal>UESCAPE</literal><indexterm><primary>UESCAPE</primary></indexterm>
clause after the string, for example:
<programlisting>
U&'d!0061t!+000061' UESCAPE '!'
U&
amp;
'd!0061t!+000061' UESCAPE '!'
</programlisting>
The escape character can be any single character other than a
hexadecimal digit, the plus sign, a single quote, a double quote,
...
...
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