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
e641d7b2
Commit
e641d7b2
authored
Aug 05, 2015
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: HTML-escape '>' in '=>' using HTML entities
parent
b8fe12a8
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
34 additions
and
34 deletions
+34
-34
doc/src/sgml/ddl.sgml
doc/src/sgml/ddl.sgml
+12
-12
doc/src/sgml/ecpg.sgml
doc/src/sgml/ecpg.sgml
+1
-1
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+1
-1
doc/src/sgml/hstore.sgml
doc/src/sgml/hstore.sgml
+3
-3
doc/src/sgml/pgstattuple.sgml
doc/src/sgml/pgstattuple.sgml
+4
-4
doc/src/sgml/queries.sgml
doc/src/sgml/queries.sgml
+1
-1
doc/src/sgml/rules.sgml
doc/src/sgml/rules.sgml
+1
-1
doc/src/sgml/seg.sgml
doc/src/sgml/seg.sgml
+3
-3
doc/src/sgml/syntax.sgml
doc/src/sgml/syntax.sgml
+5
-5
doc/src/sgml/xfunc.sgml
doc/src/sgml/xfunc.sgml
+3
-3
No files found.
doc/src/sgml/ddl.sgml
View file @
e641d7b2
...
...
@@ -1742,9 +1742,9 @@ GRANT UPDATE
<programlisting>
-- admin can view all rows and fields
postgres=
>
set role admin;
postgres=
>
set role admin;
SET
postgres=
>
table passwd;
postgres=
>
table passwd;
username | pwhash | uid | gid | real_name | home_phone | extra_info | home_dir | shell
----------+--------+-----+-----+-----------+--------------+------------+-------------+-----------
admin | xxx | 0 | 0 | Admin | 111-222-3333 | | /root | /bin/dash
...
...
@@ -1753,11 +1753,11 @@ postgres=> table passwd;
(3 rows)
-- Test what Alice is able to do
postgres=
>
set role alice;
postgres=
>
set role alice;
SET
postgres=
>
table passwd;
postgres=
>
table passwd;
ERROR: permission denied for relation passwd
postgres=
>
select username,real_name,home_phone,extra_info,home_dir,shell from passwd;
postgres=
>
select username,real_name,home_phone,extra_info,home_dir,shell from passwd;
username | real_name | home_phone | extra_info | home_dir | shell
----------+-----------+--------------+------------+-------------+-----------
admin | Admin | 111-222-3333 | | /root | /bin/dash
...
...
@@ -1765,21 +1765,21 @@ postgres=> select username,real_name,home_phone,extra_info,home_dir,shell from p
alice | Alice | 098-765-4321 | | /home/alice | /bin/zsh
(3 rows)
postgres=
>
update passwd set username = '
joe
';
postgres=
>
update passwd set username = '
joe
';
ERROR: permission denied for relation passwd
-- Allowed to change her own real_name, but no others
postgres=
>
update passwd set real_name = '
Alice
Doe
';
postgres=
>
update passwd set real_name = '
Alice
Doe
';
UPDATE 1
postgres=
>
update passwd set real_name = '
John
Doe
' where username = '
admin
';
postgres=
>
update passwd set real_name = '
John
Doe
' where username = '
admin
';
UPDATE 0
postgres=
>
update passwd set shell = '
/
bin
/
xx
';
postgres=
>
update passwd set shell = '
/
bin
/
xx
';
ERROR: new row violates WITH CHECK OPTION for "passwd"
postgres=
>
delete from passwd;
postgres=
>
delete from passwd;
ERROR: permission denied for relation passwd
postgres=
>
insert into passwd (username) values ('
xxx
');
postgres=
>
insert into passwd (username) values ('
xxx
');
ERROR: permission denied for relation passwd
-- Alice can change her own password
postgres=
>
update passwd set pwhash = '
abc
';
postgres=
>
update passwd set pwhash = '
abc
';
UPDATE 1
</programlisting>
...
...
doc/src/sgml/ecpg.sgml
View file @
e641d7b2
...
...
@@ -1404,7 +1404,7 @@ CREATE TABLE t3 (
ii integer[]
);
testdb=
>
SELECT * FROM t3;
testdb=
>
SELECT * FROM t3;
ii
-------------
{1,2,3,4,5}
...
...
doc/src/sgml/func.sgml
View file @
e641d7b2
...
...
@@ -6813,7 +6813,7 @@ SELECT regexp_matches('abc01234xyz', '(?:(.*?)(\d+)(.*)){1,1}');
Create interval from years, months, weeks, days, hours, minutes and
seconds fields
</entry>
<entry><literal>
make_interval(days =
>
10)
</literal></entry>
<entry><literal>
make_interval(days =
>
10)
</literal></entry>
<entry><literal>
10 days
</literal></entry>
</row>
...
...
doc/src/sgml/hstore.sgml
View file @
e641d7b2
...
...
@@ -381,7 +381,7 @@ b
<entry><type>hstore</type></entry>
<entry>delete pair with matching key</entry>
<entry><literal>delete('a=>1,b=>2','b')</literal></entry>
<entry><literal>"a"=
>
"1"</literal></entry>
<entry><literal>"a"=
>
"1"</literal></entry>
</row>
<row>
...
...
@@ -389,7 +389,7 @@ b
<entry><type>hstore</type></entry>
<entry>delete pairs with matching keys</entry>
<entry><literal>delete('a=>1,b=>2,c=>3',ARRAY['a','b'])</literal></entry>
<entry><literal>"c"=
>
"3"</literal></entry>
<entry><literal>"c"=
>
"3"</literal></entry>
</row>
<row>
...
...
@@ -397,7 +397,7 @@ b
<entry><type>hstore</type></entry>
<entry>delete pairs matching those in the second argument</entry>
<entry><literal>delete('a=>1,b=>2','a=>4,b=>2'::hstore)</literal></entry>
<entry><literal>"a"=
>
"1"</literal></entry>
<entry><literal>"a"=
>
"1"</literal></entry>
</row>
<row>
...
...
doc/src/sgml/pgstattuple.sgml
View file @
e641d7b2
...
...
@@ -32,7 +32,7 @@
target relation's name (optionally schema-qualified) or OID.
For example:
<programlisting>
test=
>
SELECT * FROM pgstattuple('pg_catalog.pg_proc');
test=
>
SELECT * FROM pgstattuple('pg_catalog.pg_proc');
-[ RECORD 1 ]------+-------
table_len | 458752
tuple_count | 1470
...
...
@@ -150,7 +150,7 @@ free_percent | 1.95
<function>pgstatindex</function> returns a record showing information
about a B-tree index. For example:
<programlisting>
test=
>
SELECT * FROM pgstatindex('pg_cast_oid_index');
test=
>
SELECT * FROM pgstatindex('pg_cast_oid_index');
-[ RECORD 1 ]------+------
version | 2
tree_level | 0
...
...
@@ -280,7 +280,7 @@ leaf_fragmentation | 0
<function>pgstatginindex</function> returns a record showing information
about a GIN index. For example:
<programlisting>
test=
>
SELECT * FROM pgstatginindex('test_gin_index');
test=
>
SELECT * FROM pgstatginindex('test_gin_index');
-[ RECORD 1 ]--+--
version | 1
pending_pages | 0
...
...
@@ -373,7 +373,7 @@ pending_tuples | 0
The argument is the target relation's OID.
For example:
<programlisting>
test=
>
SELECT * FROM pgstattuple_approx('pg_catalog.pg_proc'::regclass);
test=
>
SELECT * FROM pgstattuple_approx('pg_catalog.pg_proc'::regclass);
-[ RECORD 1 ]--------+-------
table_len | 573440
scanned_percent | 2
...
...
doc/src/sgml/queries.sgml
View file @
e641d7b2
...
...
@@ -1885,7 +1885,7 @@ SELECT 3, 'three';
it's usually better to override the default names with a table alias
list, like this:
<programlisting>
=
>
SELECT * FROM (VALUES (1, 'one'), (2, 'two'), (3, 'three')) AS t (num,letter);
=
>
SELECT * FROM (VALUES (1, 'one'), (2, 'two'), (3, 'three')) AS t (num,letter);
num | letter
-----+--------
1 | one
...
...
doc/src/sgml/rules.sgml
View file @
e641d7b2
...
...
@@ -2100,7 +2100,7 @@ CREATE VIEW phone_number AS
<programlisting>
CREATE FUNCTION tricky(text, text) RETURNS bool AS $$
BEGIN
RAISE NOTICE '% =
>
%', $1, $2;
RAISE NOTICE '% =
>
%', $1, $2;
RETURN true;
END
$$ LANGUAGE plpgsql COST 0.0000000000000000000001;
...
...
doc/src/sgml/seg.sgml
View file @
e641d7b2
...
...
@@ -40,7 +40,7 @@
when you fetch it? Watch:
<screen>
test=
>
select 6.50 :: float8 as "pH";
test=
>
select 6.50 :: float8 as "pH";
pH
---
6.5
...
...
@@ -66,7 +66,7 @@ test=> select 6.50 :: float8 as "pH";
Check this out:
<screen>
test=
>
select '6.25 .. 6.50'::seg as "pH";
test=
>
select '6.25 .. 6.50'::seg as "pH";
pH
------------
6.25 .. 6.50
...
...
@@ -359,7 +359,7 @@ test=> select '6.25 .. 6.50'::seg as "pH";
boundary if the resulting interval includes a power of ten:
<screen>
postgres=
>
select '10(+-)1'::seg as seg;
postgres=
>
select '10(+-)1'::seg as seg;
seg
---------
9.0 .. 11 -- should be: 9 .. 11
...
...
doc/src/sgml/syntax.sgml
View file @
e641d7b2
...
...
@@ -2592,10 +2592,10 @@ SELECT concat_lower_or_upper('Hello', 'World');
<para>
In named notation, each argument's name is specified using
<literal>=
>
</literal> to separate it from the argument expression.
<literal>=
>
</literal> to separate it from the argument expression.
For example:
<screen>
SELECT concat_lower_or_upper(a =
> 'Hello', b =>
'World');
SELECT concat_lower_or_upper(a =
> 'Hello', b =>
'World');
concat_lower_or_upper
-----------------------
hello world
...
...
@@ -2606,13 +2606,13 @@ SELECT concat_lower_or_upper(a => 'Hello', b => 'World');
using named notation is that the arguments may be specified in any
order, for example:
<screen>
SELECT concat_lower_or_upper(a =
> 'Hello', b => 'World', uppercase =>
true);
SELECT concat_lower_or_upper(a =
> 'Hello', b => 'World', uppercase =>
true);
concat_lower_or_upper
-----------------------
HELLO WORLD
(1 row)
SELECT concat_lower_or_upper(a =
> 'Hello', uppercase => true, b =>
'World');
SELECT concat_lower_or_upper(a =
> 'Hello', uppercase => true, b =>
'World');
concat_lower_or_upper
-----------------------
HELLO WORLD
...
...
@@ -2645,7 +2645,7 @@ SELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');
already mentioned, named arguments cannot precede positional arguments.
For example:
<screen>
SELECT concat_lower_or_upper('Hello', 'World', uppercase =
>
true);
SELECT concat_lower_or_upper('Hello', 'World', uppercase =
>
true);
concat_lower_or_upper
-----------------------
HELLO WORLD
...
...
doc/src/sgml/xfunc.sgml
View file @
e641d7b2
...
...
@@ -776,14 +776,14 @@ SELECT mleast(VARIADIC ARRAY[]::numeric[]);
<literal>VARIADIC</>. For example, this will work:
<screen>
SELECT mleast(VARIADIC arr =
>
ARRAY[10, -1, 5, 4.4]);
SELECT mleast(VARIADIC arr =
>
ARRAY[10, -1, 5, 4.4]);
</screen>
but not these:
<screen>
SELECT mleast(arr =
>
10);
SELECT mleast(arr =
>
ARRAY[10, -1, 5, 4.4]);
SELECT mleast(arr =
>
10);
SELECT mleast(arr =
>
ARRAY[10, -1, 5, 4.4]);
</screen>
</para>
</sect2>
...
...
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