rules.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ---------------------------------------------------------------------------
  2. --
  3. -- rules.sql-
  4. --    test rules
  5. --
  6. --
  7. -- Copyright (c) 1994-5, Regents of the University of California
  8. --
  9. -- $Id: rules.sql,v 1.1.1.1 1996/07/09 06:22:30 scrappy Exp $
  10. --
  11. ---------------------------------------------------------------------------
  12. -- test rules creation
  13. create table foo (x int4);
  14. -- instead rules are not working right now
  15. -- create rule rule1 as on select to foo.x do instead update foo set x = 2;
  16. -- select rulename, ev_class, ev_type from pg_rewrite;
  17. select * from foo;
  18. create table bar (x int4, y float4);
  19. create rule rule1 as on insert to bar do insert into foo (x) values (new.x);
  20. insert into bar (x,y) values (10, -10.0);
  21. insert into bar (x,y) values (20, -20.0);
  22. insert into bar (x,y) values (30, 3.14159);
  23. select * from bar;
  24. select * from foo;
  25. drop table foo, bar;