diff options
author | Joshua Tolley | 2010-11-26 17:22:01 +0000 |
---|---|---|
committer | Joshua Tolley | 2010-11-26 17:22:01 +0000 |
commit | fe9d8f21bbdfb442b8233b4627a0c67dc458a8bd (patch) | |
tree | a88daa49fc47e64777af3d331cf142e0604c2d48 /pgsql_mib_pieces/pg_rewrite.tbldef |
Diffstat (limited to 'pgsql_mib_pieces/pg_rewrite.tbldef')
-rw-r--r-- | pgsql_mib_pieces/pg_rewrite.tbldef | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pgsql_mib_pieces/pg_rewrite.tbldef b/pgsql_mib_pieces/pg_rewrite.tbldef new file mode 100644 index 0000000..8b9d02d --- /dev/null +++ b/pgsql_mib_pieces/pg_rewrite.tbldef @@ -0,0 +1,9 @@ +pg_rewrite "The catalog pg_rewrite stores rewrite rules for tables and views." "Represents a single rewrite rule" pgsqlCatalogTables 27 "pgsnmpdConnID, rdbmsDbIndex, entryOID" +"entryOID" "INTEGER" "OID of this entry" 1 not-accessible +rulename DisplayString "Rule name" +ev_class INTEGER "The table this rule is for" +ev_attr INTEGER "The column this rule is for (currently, always zero to indicate the whole table)" +ev_type DisplayString "Event type that the rule is for: 1 = SELECT , 2 = UPDATE , 3 = INSERT , 4 = DELETE" +is_instead TruthValue "True if the rule is an INSTEAD rule" +ev_qual DisplayString "Expression tree (in the form of a nodeToString() representation) for the rule's qualifying condition" +ev_action DisplayString "Query tree (in the form of a nodeToString() representation) for the rule's action" |