CREATE RULE

Name

CREATE RULE  --  Defines a new rule 新しいルールを定義します。

Synopsis

CREATE RULE name AS ON event
    TO object [ WHERE condition ]
    DO [ INSTEAD ] [ action | NOTHING ]
  

入力

name

The name of a rule to create.

作成するルールの名前です。

event

Event is one of select, update, delete or insert.

イベントとは selectupdatedelete または insert のいずれかです。

object

Object is either table or table.column.

オブジェクトとは table または table.column のいずれかです。

condition

Any SQL WHERE clause. new or current can appear instead of an instance variable whenever an instance variable is permissible in SQL.

どんな SQL の WHERE 句でもかまいません。 SQL でインスタンス変数が使える場合、インスタンス変数 に代わって new または current が表示されます。

action

Any SQL statement. new or current can appear instead of an instance variable whenever an instance variable is permissible in SQL.

どんな SQL 文でもかまいません。 SQL でインスタンス変数が使える場合、インスタンス変数 に代わって new または current が表示されます。

出力

CREATE

Message returned if the rule is successfully created.

ルールが正常に作成されたときに返るメッセージです。

説明

The semantics of a rule is that at the time an individual instance is accessed, updated, inserted or deleted, there is a current instance (for retrieves, updates and deletes) and a new instance (for updates and appends). If the event specified in the ON clause and the condition specified in the WHERE clause are true for the current instance, the action part of the rule is executed. First, however, values from fields in the current instance and/or the new instance are substituted for current.attribute-name and new.attribute-name.

ルールの語義は個別のインスタンスがアクセスされ、更新され 挿入され、または削除される場合、(抽出、更新そして削除の対象となる) 指定したインスタンスと、(更新と追加の対象となる)新しいインスタンスが 存在すると言うことです。ON 句で指定された event と WHERE 句で指定された condition がともに指定したインスタンスに対して真の場合、 ルールの action 部 が実行されます。しかしながら、第一点として、指定したインスタンス とそして/または新しいインスタンスのフィールドの値が current.attribute-namenew.attribute-name で入れ換えられます。

The action part of the rule executes with the same command and transaction identifier as the user command that caused activation.

ルールの action 部は 駆動のもととなったユーザコマンドと同じコマンドとトランザクション 識別子により実行されます。

注意事項

A caution about SQL rules is in order. If the same class name or instance variable appears in the event, the condition and the action parts of a rule, they are all considered different tuple variables. More accurately, new and current are the only tuple variables that are shared between these clauses. For example, the following two rules have the same semantics:

SQL のルールで注意しなければならないのは順序です。 もし同じクラス名またはインスタンス変数が eventcondition および ルールの action 部に 出現すると、それらは異なったタプル変数と見なされます。より正確には、 newcurrent だけが、 それらのクラス間で共有されるタプル変数となります。例えば 以下の二つのルールは同じ語義です。

ON UPDATE TO emp.salary WHERE emp.name = "Joe"
    DO UPDATE emp ( ... ) WHERE ...
    
ON UPDATE TO emp-1.salary WHERE emp-2.name = "Joe"
    DO UPDATE emp-3 ( ... ) WHERE ...
    
Each rule can have the optional tag INSTEAD. Without this tag, action will be performed in addition to the user command when the event in the condition part of the rule occurs. Alternately, the action part will be done instead of the user command. In this later case, the action can be the keyword NOTHING. すべてのルールはオプションのタグ INSTEAD を所有する ことが出来ます。このタグがない場合、 ルールの condition 部の event が発生した時、 action がユーザコマンド に続いて実行されます。一方、ユーザコマンドではなく action 部が実行される 場合があります。後者の場合、 action はキーワード NOTHING にすることができます。

When choosing between the rewrite and instance rule systems for a particular rule application, remember that in the rewrite system, current refers to a relation and some qualifiers whereas in the instance system it refers to an instance (tuple).

ある特定のルールアプリケーションに対して、書き換えとインスタンス ルールシステムのいずれかを選択する時には、書き換えシステムでは current はリレーションと何らかの制約式 を参照するのに対し、インスタンスシステムではインスタンス(タプル) を参照することを知っていて下さい。

It is very important to note that the rewrite rule system will neither detect nor process circular rules. For example, though each of the following two rule definitions are accepted by Postgres, the retrieve command will cause Postgres to crash:

書き換えルールシステムは循環ルールを検出も処理もしない ことを知っておくのは非常に重要です。例えば、以下の二つの ルール定義が Postgres に受理 されたとしても、抽出コマンドにより Postgres がクラッシュします。

Example 14-1. 循環書き換えルールの組合せの例

CREATE RULE bad_rule_combination_1 AS
    ON SELECT TO emp
    DO INSTEAD SELECT TO toyemp;
     
CREATE RULE bad_rule_combination_2 AS
    ON SELECT TO toyemp
    DO INSTEAD SELECT TO emp;
     

This attempt to retrieve from EMP will cause Postgres to crash.

これは EMP から抽出を行おうとして Postgres をクラッシュします。

SELECT * FROM emp;
      

You must have rule definition access to a class in order to define a rule on it. Use GRANT and REVOKE to change permissions.

ルールをその上で定義するためにクラスにたいしてルール 定義のためアクセスできなければなりません。 パーミッションの変更には GRANTREVOKE を使います。

使用法

Make Sam get the same salary adjustment as Joe:

Sam が Joe と同じ給与調整を受けるとします:

CREATE RULE example_1 AS
    ON UPDATE emp.salary WHERE current.name = "Joe"
    DO UPDATE emp (salary = new.salary)
    WHERE emp.name = "Sam";
   
At the time Joe receives a salary adjustment, the event will become true and Joe's current instance and proposed new instance are available to the execution routines. Hence, his new salary is substituted into the action part of the rule which is subsequently executed. This propagates Joe's salary on to Sam. Joe が給与調整を受け取るとき、イベントが真になり、Joe の 現在のインスタンスと提出された新しいインスタンスが処理の 実行のため有効となります。このようにして、Joe の新規給与 が引き続いて実行されるルールのアクション部に入れ換えられ ます。Sam の給与は Joe に合わされます。

Make Bill get Joe's salary when it is accessed:

アクセスした時 Bill が Joe の給与を見れるようにします:

CREATE RULE example_2 AS
    ON SELECT TO EMP.salary
    WHERE current.name = "Bill"
    DO INSTEAD
    SELECT (emp.salary) from emp
        WHERE emp.name = "Joe";
   

Deny Joe access to the salary of employees in the shoe department (current_user returns the name of the current user):

靴部門の従業員の給与に Joe がアクセスできないようにします: (current_user は指定したユーザの名前を 返します。)

  
CREATE RULE example_3 AS
    ON SELECT TO emp.salary
    WHERE current.dept = "shoe" AND current_user = "Joe"
    DO INSTEAD NOTHING;
   

Create a view of the employees working in the toy department.

玩具部門で働いている従業員のビューを作成します:

CREATE toyemp(name = char16, salary = int4);

CREATE RULE example_4 AS
    ON SELECT TO toyemp
    DO INSTEAD
    SELECT (emp.name, emp.salary) FROM emp
        WHERE emp.dept = "toy";
   

All new employees must make 5,000 or less

全ての新規従業員の給与は 5,000 またはそれ以下とします:

CREATE RULE example_5 AS
    ON INERT TO emp WHERE new.salary > 5000
    DO UPDATE NEWSET salary = 5000;
   

バグ情報

The object in a SQL rule cannot be an array reference and cannot have parameters.

SQL ルールにおけるオブジェクトは配列参照 ではなくパラメータを持つことが出来ません。

Aside from the "oid" field, system attributes cannot be referenced anywhere in a rule. Among other things, this means that functions of instances (e.g., "foo(emp)" where "emp" is a class) cannot be called anywhere in a rule.

"oid" フィールドは別として、システム属性はルール中 どこにも参照されてはなりません。ほかの項目の中で、これは インスタンスの関数(例えば、 "emp" が クラスの場合の "foo(emp)")がルールの 中でどこにも呼ばれては行けないことを意味しています。

The rule system stores the rule text and query plans as text attributes. This implies that creation of rules may fail if the rule plus its various internal representations exceed some value that is on the order of one page (8KB).

ルールシステムはルール原文と問合せプランを text 型の属性 として記憶します。このことは、ルールの作成はそのルールと その各種の内部表現形式が一ページ分 (8KB) に類似したあたり のある値を越えると失敗する可能性があること暗示しています。

互換性

CREATE RULE statement is a Postgres language extension.

CREATE RULE 文は Postgres 拡張言語です。

SQL92

There is no CREATE RULE statement in SQL92.

SQL92CREATE RULE 文 はありません。