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
4a3bf197
Commit
4a3bf197
authored
Nov 06, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some notes about conditional rules used with views.
parent
f688c1e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
9 deletions
+47
-9
doc/src/sgml/ref/create_rule.sgml
doc/src/sgml/ref/create_rule.sgml
+40
-6
doc/src/sgml/ref/create_view.sgml
doc/src/sgml/ref/create_view.sgml
+7
-3
No files found.
doc/src/sgml/ref/create_rule.sgml
View file @
4a3bf197
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.2
8 2001/10/09 18:46:00 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.2
9 2001/11/06 23:54:32 tgl
Exp $
Postgres documentation
-->
...
...
@@ -196,10 +196,10 @@ CREATE
<refsect2 id="R2-SQL-CREATERULE-3">
<refsect2info>
<date>2001-
01-05
</date>
<date>2001-
11-06
</date>
</refsect2info>
<title>
Note
s
Rules and View
s
</title>
<para>
Presently, ON SELECT rules must be unconditional INSTEAD rules and must
...
...
@@ -207,10 +207,44 @@ CREATE
rule effectively turns the object table into a view, whose visible
contents are the rows returned by the rule's SELECT query rather than
whatever had been stored in the table (if anything). It is considered
better style to write a CREATE VIEW command than to create a table and
define an ON SELECT rule for it.
better style to write a CREATE VIEW command than to create a real table
and define an ON SELECT rule for it.
</para>
<para>
<xref linkend="sql-createview"> creates a dummy table (with no underlying
storage) and associates an ON SELECT rule with it. The system will not
allow updates to the view, since it knows there is no real table there.
You can create the
illusion of an updatable view by defining ON INSERT, ON UPDATE, and
ON DELETE rules (or any subset of those that's sufficient
for your purposes) to replace update actions on the view with
appropriate updates on other tables.
</para>
<para>
There is a catch if you try to use conditional
rules for view updates: there <emphasis>must</> be an unconditional
INSTEAD rule for each action you wish to allow on the view. If the
rule is conditional, or is not INSTEAD, then the system will still reject
attempts to perform the update action, because it thinks it might end up
trying to perform the action on the dummy table in some cases.
If you want to
handle all the useful cases in conditional rules, you can; just add an
unconditional DO INSTEAD NOTHING rule to ensure that the system
understands it will never be called on to update the dummy table. Then
make the conditional rules non-INSTEAD; in the cases where they fire,
they add to the default INSTEAD NOTHING action.
</para>
</refsect2>
<refsect2 id="R2-SQL-CREATERULE-4">
<refsect2info>
<date>2001-01-05</date>
</refsect2info>
<title>
Notes
</title>
<para>
You must have rule definition access to a table in order
to define a rule on it. Use <command>GRANT</command>
...
...
@@ -267,7 +301,7 @@ UPDATE mytable SET name = 'foo' WHERE id = 42;
Compatibility
</title>
<refsect2 id="R2-SQL-CREATERULE-
4
">
<refsect2 id="R2-SQL-CREATERULE-
5
">
<refsect2info>
<date>1998-09-11</date>
</refsect2info>
...
...
doc/src/sgml/ref/create_view.sgml
View file @
4a3bf197
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_view.sgml,v 1.1
2 2001/09/03 12:57:49 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_view.sgml,v 1.1
3 2001/11/06 23:54:32 tgl
Exp $
Postgres documentation
-->
...
...
@@ -102,7 +102,7 @@ ERROR: Relation '<replaceable class="parameter">view</replaceable>' already exi
</varlistentry>
<varlistentry>
<term><computeroutput>
NOTICE
create: attribute named "<replaceable class="parameter">column</replaceable>"
has an unknown type
NOTICE
: Attribute '<replaceable class="parameter">column</replaceable>'
has an unknown type
</computeroutput></term>
<listitem>
<para>
...
...
@@ -149,7 +149,11 @@ CREATE VIEW vista AS SELECT text 'Hello World'
</title>
<para>
Currently, views are read only.
Currently, views are read only: the system will not allow an insert,
update, or delete on a view. You can get the effect of an updatable
view by creating rules that rewrite inserts, etc. on the view into
appropriate actions on other tables. For more information see
<xref linkend="sql-createrule">.
</para>
<para>
...
...
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