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
754b5e1c
Commit
754b5e1c
authored
Jan 22, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More < and > changes to ampersands.
8.0.X and HEAD.
parent
1ced129a
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
20 deletions
+20
-20
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table.sgml
+3
-3
doc/src/sgml/ref/grant.sgml
doc/src/sgml/ref/grant.sgml
+2
-2
doc/src/sgml/ref/lock.sgml
doc/src/sgml/ref/lock.sgml
+3
-3
doc/src/sgml/ref/psql-ref.sgml
doc/src/sgml/ref/psql-ref.sgml
+7
-7
doc/src/sgml/ref/reindex.sgml
doc/src/sgml/ref/reindex.sgml
+3
-3
doc/src/sgml/ref/select.sgml
doc/src/sgml/ref/select.sgml
+2
-2
No files found.
doc/src/sgml/ref/create_table.sgml
View file @
754b5e1c
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.9
0 2005/01/05 18:03:19
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.9
1 2005/01/22 23:22:17
momjian Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -732,7 +732,7 @@ CREATE TABLE films (
...
@@ -732,7 +732,7 @@ CREATE TABLE films (
<programlisting>
<programlisting>
CREATE TABLE distributors (
CREATE TABLE distributors (
did integer CHECK (did
>
100),
did integer CHECK (did
>
100),
name varchar(40)
name varchar(40)
);
);
</programlisting>
</programlisting>
...
@@ -745,7 +745,7 @@ CREATE TABLE distributors (
...
@@ -745,7 +745,7 @@ CREATE TABLE distributors (
CREATE TABLE distributors (
CREATE TABLE distributors (
did integer,
did integer,
name varchar(40)
name varchar(40)
CONSTRAINT con1 CHECK (did
>
100 AND name <> '')
CONSTRAINT con1 CHECK (did
>
100 AND name <> '')
);
);
</programlisting>
</programlisting>
</para>
</para>
...
...
doc/src/sgml/ref/grant.sgml
View file @
754b5e1c
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.4
4 2004/11/05 19:15:51 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.4
5 2005/01/22 23:22:18 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -308,7 +308,7 @@ GRANT { CREATE | ALL [ PRIVILEGES ] }
...
@@ -308,7 +308,7 @@ GRANT { CREATE | ALL [ PRIVILEGES ] }
Use <xref linkend="app-psql">'s <command>\z</command> command
Use <xref linkend="app-psql">'s <command>\z</command> command
to obtain information about existing privileges, for example:
to obtain information about existing privileges, for example:
<programlisting>
<programlisting>
=
>
\z mytable
=
>
\z mytable
Access privileges for database "lusitania"
Access privileges for database "lusitania"
Schema | Name | Type | Access privileges
Schema | Name | Type | Access privileges
...
...
doc/src/sgml/ref/lock.sgml
View file @
754b5e1c
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/lock.sgml,v 1.4
5 2005/01/04 00:39:53 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/lock.sgml,v 1.4
6 2005/01/22 23:22:19 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -210,8 +210,8 @@ COMMIT WORK;
...
@@ -210,8 +210,8 @@ COMMIT WORK;
BEGIN WORK;
BEGIN WORK;
LOCK TABLE films IN SHARE ROW EXCLUSIVE MODE;
LOCK TABLE films IN SHARE ROW EXCLUSIVE MODE;
DELETE FROM films_user_comments WHERE id IN
DELETE FROM films_user_comments WHERE id IN
(SELECT id FROM films WHERE rating
<
5);
(SELECT id FROM films WHERE rating
<
5);
DELETE FROM films WHERE rating
<
5;
DELETE FROM films WHERE rating
<
5;
COMMIT WORK;
COMMIT WORK;
</programlisting>
</programlisting>
</para>
</para>
...
...
doc/src/sgml/ref/psql-ref.sgml
View file @
754b5e1c
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.13
1 2005/01/22 22:31:52
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.13
2 2005/01/22 23:22:19
momjian Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -2179,11 +2179,11 @@ testdb=> <userinput>INSERT INTO my_table VALUES (:content);</userinput>
...
@@ -2179,11 +2179,11 @@ testdb=> <userinput>INSERT INTO my_table VALUES (:content);</userinput>
they don't cause a syntax error when the second line is processed. This
they don't cause a syntax error when the second line is processed. This
could be done with the program <command>sed</command>:
could be done with the program <command>sed</command>:
<programlisting>
<programlisting>
testdb=> <userinput>\set content '\'' `sed -e "s/'/\\\\\\'/g"
<
my_file.txt` '\''</userinput>
testdb=> <userinput>\set content '\'' `sed -e "s/'/\\\\\\'/g"
<
my_file.txt` '\''</userinput>
</programlisting>
</programlisting>
Observe the correct number of backslashes (6)! It works
Observe the correct number of backslashes (6)! It works
this way: After <application>psql</application> has parsed this
this way: After <application>psql</application> has parsed this
line, it passes <literal>sed -e "s/'/\\\'/g"
<
my_file.txt</literal>
line, it passes <literal>sed -e "s/'/\\\'/g"
<
my_file.txt</literal>
to the shell. The shell will do its own thing inside the double
to the shell. The shell will do its own thing inside the double
quotes and execute <command>sed</command> with the arguments
quotes and execute <command>sed</command> with the arguments
<literal>-e</literal> and <literal>s/'/\\'/g</literal>. When
<literal>-e</literal> and <literal>s/'/\\'/g</literal>. When
...
@@ -2243,8 +2243,8 @@ testdb=> <userinput>\set content '\'' `sed -e "s/'/\\\\\\'/g" < my_file.txt`
...
@@ -2243,8 +2243,8 @@ testdb=> <userinput>\set content '\'' `sed -e "s/'/\\\\\\'/g" < my_file.txt`
The full host name (with domain name) of the database server,
The full host name (with domain name) of the database server,
or <literal>[local]</literal> if the connection is over a Unix
or <literal>[local]</literal> if the connection is over a Unix
domain socket, or
domain socket, or
<literal>[local:<replaceable>/dir/name</replaceable>]</literal
<literal>[local:<replaceable>/dir/name</replaceable>]</literal
>,
>,
if the Unix domain socket is not at the compiled in default
if the Unix domain socket is not at the compiled in default
location.
location.
</para>
</para>
</listitem>
</listitem>
...
@@ -2632,8 +2632,8 @@ Field separator is "oo".
...
@@ -2632,8 +2632,8 @@ Field separator is "oo".
input. Notice the changing prompt:
input. Notice the changing prompt:
<programlisting>
<programlisting>
testdb=> <userinput>CREATE TABLE my_table (</userinput>
testdb=> <userinput>CREATE TABLE my_table (</userinput>
testdb(
>
<userinput> first integer not null default 0,</userinput>
testdb(
>
<userinput> first integer not null default 0,</userinput>
testdb(
>
<userinput> second text)</userinput>
testdb(
>
<userinput> second text)</userinput>
testdb-> <userinput>;</userinput>
testdb-> <userinput>;</userinput>
CREATE TABLE
CREATE TABLE
</programlisting>
</programlisting>
...
...
doc/src/sgml/ref/reindex.sgml
View file @
754b5e1c
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/reindex.sgml,v 1.2
5 2004/11/04 19:08:08 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/reindex.sgml,v 1.2
6 2005/01/22 23:22:19 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -234,8 +234,8 @@ REINDEX INDEX my_index;
...
@@ -234,8 +234,8 @@ REINDEX INDEX my_index;
$ <userinput>export PGOPTIONS="-P"</userinput>
$ <userinput>export PGOPTIONS="-P"</userinput>
$ <userinput>psql broken_db</userinput>
$ <userinput>psql broken_db</userinput>
...
...
broken_db=
>
REINDEX DATABASE broken_db;
broken_db=
>
REINDEX DATABASE broken_db;
broken_db=
>
\q
broken_db=
>
\q
</programlisting>
</programlisting>
</para>
</para>
</refsect1>
</refsect1>
...
...
doc/src/sgml/ref/select.sgml
View file @
754b5e1c
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.8
0 2005/01/04 08:59:45 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.8
1 2005/01/22 23:22:19 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -874,7 +874,7 @@ SELECT kind, sum(len) AS total FROM films GROUP BY kind;
...
@@ -874,7 +874,7 @@ SELECT kind, sum(len) AS total FROM films GROUP BY kind;
SELECT kind, sum(len) AS total
SELECT kind, sum(len) AS total
FROM films
FROM films
GROUP BY kind
GROUP BY kind
HAVING sum(len)
<
interval '5 hours';
HAVING sum(len)
<
interval '5 hours';
kind | total
kind | total
----------+-------
----------+-------
...
...
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