Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

drop_rule.l

Blame
  • drop_rule.l 765 B
    .\" This is -*-nroff-*-
    .\" XXX standard disclaimer belongs here....
    .\" $Header: /cvsroot/pgsql/src/man/Attic/drop_rule.l,v 1.3 1998/06/23 17:52:36 momjian Exp $
    .TH "DROP RULE" SQL 11/05/95 PostgreSQL PostgreSQL
    .SH NAME
    drop rule \- removes a current rule from Postgres 
    .SH SYNOPSIS
    .nf
    \fBdrop rule\fR rule_name
    .fi
    .SH DESCRIPTION
    This command drops the rule named rule_name from the specified Postgres
    rule system.  Postgres will immediately cease enforcing it and will purge
    its definition from the system catalogs.
    .SH EXAMPLE
    .nf
    --
    --This example drops the rewrite rule example_1
    --
    drop rule example_1
    .fi
    .SH "SEE ALSO"
    create_rule(l),
    drop_view(l).
    .SH BUGS
    Once a rule is dropped, access to historical information the rule has
    written may disappear.