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

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- rules.sql
  3. -- From Jan's original setup_ruletest.sql and run_ruletest.sql
  4. -- - thomas 1998-09-13
  5. --
  6. --
  7. -- Tables and rules for the view test
  8. --
  9. create table rtest_t1 (a int4, b int4);
  10. create table rtest_t2 (a int4, b int4);
  11. create table rtest_t3 (a int4, b int4);
  12. create view rtest_v1 as select * from rtest_t1;
  13. create rule rtest_v1_ins as on insert to rtest_v1 do instead
  14. insert into rtest_t1 values (new.a, new.b);
  15. create rule rtest_v1_upd as on update to rtest_v1 do instead
  16. update rtest_t1 set a = new.a, b = new.b
  17. where a = old.a;
  18. create rule rtest_v1_del as on delete to rtest_v1 do instead
  19. delete from rtest_t1 where a = old.a;
  20. --
  21. -- Tables and rules for the constraint update/delete test
  22. --
  23. -- Note:
  24. --  Now that we have multiple action rule support, we check
  25. --  both possible syntaxes to define them (The last action
  26. --  can but must not have a semicolon at the end).
  27. --
  28. create table rtest_system (sysname text, sysdesc text);
  29. create table rtest_interface (sysname text, ifname text);
  30. create table rtest_person (pname text, pdesc text);
  31. create table rtest_admin (pname text, sysname text);
  32. create rule rtest_sys_upd as on update to rtest_system do (
  33. update rtest_interface set sysname = new.sysname 
  34. where sysname = old.sysname;
  35. update rtest_admin set sysname = new.sysname 
  36. where sysname = old.sysname
  37. );
  38. create rule rtest_sys_del as on delete to rtest_system do (
  39. delete from rtest_interface where sysname = old.sysname;
  40. delete from rtest_admin where sysname = old.sysname;
  41. );
  42. create rule rtest_pers_upd as on update to rtest_person do 
  43. update rtest_admin set pname = new.pname where pname = old.pname;
  44. create rule rtest_pers_del as on delete to rtest_person do 
  45. delete from rtest_admin where pname = old.pname;
  46. --
  47. -- Tables and rules for the logging test
  48. --
  49. create table rtest_emp (ename char(20), salary money);
  50. create table rtest_emplog (ename char(20), who name, action char(10), newsal money, oldsal money);
  51. create table rtest_empmass (ename char(20), salary money);
  52. create rule rtest_emp_ins as on insert to rtest_emp do
  53. insert into rtest_emplog values (new.ename, current_user,
  54. 'hired', new.salary, '0.00');
  55. create rule rtest_emp_upd as on update to rtest_emp where new.salary != old.salary do
  56. insert into rtest_emplog values (new.ename, current_user,
  57. 'honored', new.salary, old.salary);
  58. create rule rtest_emp_del as on delete to rtest_emp do
  59. insert into rtest_emplog values (old.ename, current_user,
  60. 'fired', '0.00', old.salary);
  61. --
  62. -- Tables and rules for the multiple cascaded qualified instead
  63. -- rule test 
  64. --
  65. create table rtest_t4 (a int4, b text);
  66. create table rtest_t5 (a int4, b text);
  67. create table rtest_t6 (a int4, b text);
  68. create table rtest_t7 (a int4, b text);
  69. create table rtest_t8 (a int4, b text);
  70. create table rtest_t9 (a int4, b text);
  71. create rule rtest_t4_ins1 as on insert to rtest_t4
  72. where new.a >= 10 and new.a < 20 do instead
  73. insert into rtest_t5 values (new.a, new.b);
  74. create rule rtest_t4_ins2 as on insert to rtest_t4
  75. where new.a >= 20 and new.a < 30 do
  76. insert into rtest_t6 values (new.a, new.b);
  77. create rule rtest_t5_ins as on insert to rtest_t5
  78. where new.a > 15 do
  79. insert into rtest_t7 values (new.a, new.b);
  80. create rule rtest_t6_ins as on insert to rtest_t6
  81. where new.a > 25 do instead
  82. insert into rtest_t8 values (new.a, new.b);
  83. --
  84. -- Tables and rules for the rule fire order test
  85. --
  86. create table rtest_order1 (a int4);
  87. create table rtest_order2 (a int4, b int4, c text);
  88. create sequence rtest_seq;
  89. create rule rtest_order_r3 as on insert to rtest_order1 do instead
  90. insert into rtest_order2 values (new.a, nextval('rtest_seq'),
  91. 'rule 3 - this should run 3rd or 4th');
  92. create rule rtest_order_r4 as on insert to rtest_order1
  93. where a < 100 do instead
  94. insert into rtest_order2 values (new.a, nextval('rtest_seq'),
  95. 'rule 4 - this should run 2nd');
  96. create rule rtest_order_r2 as on insert to rtest_order1 do
  97. insert into rtest_order2 values (new.a, nextval('rtest_seq'),
  98. 'rule 2 - this should run 1st');
  99. create rule rtest_order_r1 as on insert to rtest_order1 do instead
  100. insert into rtest_order2 values (new.a, nextval('rtest_seq'),
  101. 'rule 1 - this should run 3rd or 4th');
  102. --
  103. -- Tables and rules for the instead nothing test
  104. --
  105. create table rtest_nothn1 (a int4, b text);
  106. create table rtest_nothn2 (a int4, b text);
  107. create table rtest_nothn3 (a int4, b text);
  108. create table rtest_nothn4 (a int4, b text);
  109. create rule rtest_nothn_r1 as on insert to rtest_nothn1
  110. where new.a >= 10 and new.a < 20 do instead (select 1);
  111. create rule rtest_nothn_r2 as on insert to rtest_nothn1
  112. where new.a >= 30 and new.a < 40 do instead nothing;
  113. create rule rtest_nothn_r3 as on insert to rtest_nothn2
  114. where new.a >= 100 do instead
  115. insert into rtest_nothn3 values (new.a, new.b);
  116. create rule rtest_nothn_r4 as on insert to rtest_nothn2
  117. do instead nothing;
  118. --
  119. -- Tests on a view that is select * of a table
  120. -- and has insert/update/delete instead rules to
  121. -- behave close like the real table.
  122. --
  123. --
  124. -- We need test date later
  125. --
  126. insert into rtest_t2 values (1, 21);
  127. insert into rtest_t2 values (2, 22);
  128. insert into rtest_t2 values (3, 23);
  129. insert into rtest_t3 values (1, 31);
  130. insert into rtest_t3 values (2, 32);
  131. insert into rtest_t3 values (3, 33);
  132. insert into rtest_t3 values (4, 34);
  133. insert into rtest_t3 values (5, 35);
  134. -- insert values
  135. insert into rtest_v1 values (1, 11);
  136. insert into rtest_v1 values (2, 12);
  137. select * from rtest_v1;
  138. -- delete with constant expression
  139. delete from rtest_v1 where a = 1;
  140. select * from rtest_v1;
  141. insert into rtest_v1 values (1, 11);
  142. delete from rtest_v1 where b = 12;
  143. select * from rtest_v1;
  144. insert into rtest_v1 values (2, 12);
  145. insert into rtest_v1 values (2, 13);
  146. select * from rtest_v1;
  147. ** Remember the delete rule on rtest_v1: It says
  148. ** DO INSTEAD DELETE FROM rtest_t1 WHERE a = old.a
  149. ** So this time both rows with a = 2 must get deleted
  150. p
  151. r
  152. delete from rtest_v1 where b = 12;
  153. select * from rtest_v1;
  154. delete from rtest_v1;
  155. -- insert select
  156. insert into rtest_v1 select * from rtest_t2;
  157. select * from rtest_v1;
  158. delete from rtest_v1;
  159. -- same with swapped targetlist
  160. insert into rtest_v1 (b, a) select b, a from rtest_t2;
  161. select * from rtest_v1;
  162. -- now with only one target attribute
  163. insert into rtest_v1 (a) select a from rtest_t3;
  164. select * from rtest_v1;
  165. select * from rtest_v1 where b isnull;
  166. -- let attribute a differ (must be done on rtest_t1 - see above)
  167. update rtest_t1 set a = a + 10 where b isnull;
  168. delete from rtest_v1 where b isnull;
  169. select * from rtest_v1;
  170. -- now updates with constant expression
  171. update rtest_v1 set b = 42 where a = 2;
  172. select * from rtest_v1;
  173. update rtest_v1 set b = 99 where b = 42;
  174. select * from rtest_v1;
  175. update rtest_v1 set b = 88 where b < 50;
  176. select * from rtest_v1;
  177. delete from rtest_v1;
  178. insert into rtest_v1 select rtest_t2.a, rtest_t3.b where rtest_t2.a = rtest_t3.a;
  179. select * from rtest_v1;
  180. -- updates in a mergejoin
  181. update rtest_v1 set b = rtest_t2.b where a = rtest_t2.a;
  182. select * from rtest_v1;
  183. insert into rtest_v1 select * from rtest_t3;
  184. select * from rtest_v1;
  185. update rtest_t1 set a = a + 10 where b > 30;
  186. select * from rtest_v1;
  187. update rtest_v1 set a = rtest_t3.a + 20 where b = rtest_t3.b;
  188. select * from rtest_v1;
  189. --
  190. -- Test for constraint updates/deletes
  191. --
  192. insert into rtest_system values ('orion', 'Linux Jan Wieck');
  193. insert into rtest_system values ('notjw', 'WinNT Jan Wieck (notebook)');
  194. insert into rtest_system values ('neptun', 'Fileserver');
  195. insert into rtest_interface values ('orion', 'eth0');
  196. insert into rtest_interface values ('orion', 'eth1');
  197. insert into rtest_interface values ('notjw', 'eth0');
  198. insert into rtest_interface values ('neptun', 'eth0');
  199. insert into rtest_person values ('jw', 'Jan Wieck');
  200. insert into rtest_person values ('bm', 'Bruce Momjian');
  201. insert into rtest_admin values ('jw', 'orion');
  202. insert into rtest_admin values ('jw', 'notjw');
  203. insert into rtest_admin values ('bm', 'neptun');
  204. update rtest_system set sysname = 'pluto' where sysname = 'neptun';
  205. select * from rtest_interface;
  206. select * from rtest_admin;
  207. update rtest_person set pname = 'jwieck' where pdesc = 'Jan Wieck';
  208. -- Note: use ORDER BY here to ensure consistent output across all systems.
  209. -- The above UPDATE affects two rows with equal keys, so they could be
  210. -- updated in either order depending on the whim of the local qsort().
  211. select * from rtest_admin order by pname, sysname;
  212. delete from rtest_system where sysname = 'orion';
  213. select * from rtest_interface;
  214. select * from rtest_admin;
  215. --
  216. -- Rule qualification test
  217. --
  218. insert into rtest_emp values ('wiech', '5000.00');
  219. insert into rtest_emp values ('gates', '80000.00');
  220. update rtest_emp set ename = 'wiecx' where ename = 'wiech';
  221. update rtest_emp set ename = 'wieck', salary = '6000.00' where ename = 'wiecx';
  222. update rtest_emp set salary = '7000.00' where ename = 'wieck';
  223. delete from rtest_emp where ename = 'gates';
  224. select ename, who = current_user as "matches user", action, newsal, oldsal from rtest_emplog order by ename, action, newsal;
  225. insert into rtest_empmass values ('meyer', '4000.00');
  226. insert into rtest_empmass values ('maier', '5000.00');
  227. insert into rtest_empmass values ('mayr', '6000.00');
  228. insert into rtest_emp select * from rtest_empmass;
  229. select ename, who = current_user as "matches user", action, newsal, oldsal from rtest_emplog order by ename, action, newsal;
  230. update rtest_empmass set salary = salary + '1000.00';
  231. update rtest_emp set salary = rtest_empmass.salary where ename = rtest_empmass.ename;
  232. select ename, who = current_user as "matches user", action, newsal, oldsal from rtest_emplog order by ename, action, newsal;
  233. delete from rtest_emp where ename = rtest_empmass.ename;
  234. select ename, who = current_user as "matches user", action, newsal, oldsal from rtest_emplog order by ename, action, newsal;
  235. --
  236. -- Multiple cascaded qualified instead rule test
  237. --
  238. insert into rtest_t4 values (1, 'Record should go to rtest_t4');
  239. insert into rtest_t4 values (2, 'Record should go to rtest_t4');
  240. insert into rtest_t4 values (10, 'Record should go to rtest_t5');
  241. insert into rtest_t4 values (15, 'Record should go to rtest_t5');
  242. insert into rtest_t4 values (19, 'Record should go to rtest_t5 and t7');
  243. insert into rtest_t4 values (20, 'Record should go to rtest_t4 and t6');
  244. insert into rtest_t4 values (26, 'Record should go to rtest_t4 and t8');
  245. insert into rtest_t4 values (28, 'Record should go to rtest_t4 and t8');
  246. insert into rtest_t4 values (30, 'Record should go to rtest_t4');
  247. insert into rtest_t4 values (40, 'Record should go to rtest_t4');
  248. select * from rtest_t4;
  249. select * from rtest_t5;
  250. select * from rtest_t6;
  251. select * from rtest_t7;
  252. select * from rtest_t8;
  253. delete from rtest_t4;
  254. delete from rtest_t5;
  255. delete from rtest_t6;
  256. delete from rtest_t7;
  257. delete from rtest_t8;
  258. insert into rtest_t9 values (1, 'Record should go to rtest_t4');
  259. insert into rtest_t9 values (2, 'Record should go to rtest_t4');
  260. insert into rtest_t9 values (10, 'Record should go to rtest_t5');
  261. insert into rtest_t9 values (15, 'Record should go to rtest_t5');
  262. insert into rtest_t9 values (19, 'Record should go to rtest_t5 and t7');
  263. insert into rtest_t9 values (20, 'Record should go to rtest_t4 and t6');
  264. insert into rtest_t9 values (26, 'Record should go to rtest_t4 and t8');
  265. insert into rtest_t9 values (28, 'Record should go to rtest_t4 and t8');
  266. insert into rtest_t9 values (30, 'Record should go to rtest_t4');
  267. insert into rtest_t9 values (40, 'Record should go to rtest_t4');
  268. insert into rtest_t4 select * from rtest_t9 where a < 20;
  269. select * from rtest_t4;
  270. select * from rtest_t5;
  271. select * from rtest_t6;
  272. select * from rtest_t7;
  273. select * from rtest_t8;
  274. insert into rtest_t4 select * from rtest_t9 where b ~ 'and t8';
  275. select * from rtest_t4;
  276. select * from rtest_t5;
  277. select * from rtest_t6;
  278. select * from rtest_t7;
  279. select * from rtest_t8;
  280. insert into rtest_t4 select a + 1, b from rtest_t9 where a in (20, 30, 40);
  281. select * from rtest_t4;
  282. select * from rtest_t5;
  283. select * from rtest_t6;
  284. select * from rtest_t7;
  285. select * from rtest_t8;
  286. --
  287. -- Check that the ordering of rules fired is correct
  288. --
  289. insert into rtest_order1 values (1);
  290. select * from rtest_order2;
  291. --
  292. -- Check if instead nothing w/without qualification works
  293. --
  294. insert into rtest_nothn1 values (1, 'want this');
  295. insert into rtest_nothn1 values (2, 'want this');
  296. insert into rtest_nothn1 values (10, 'don''t want this');
  297. insert into rtest_nothn1 values (19, 'don''t want this');
  298. insert into rtest_nothn1 values (20, 'want this');
  299. insert into rtest_nothn1 values (29, 'want this');
  300. insert into rtest_nothn1 values (30, 'don''t want this');
  301. insert into rtest_nothn1 values (39, 'don''t want this');
  302. insert into rtest_nothn1 values (40, 'want this');
  303. insert into rtest_nothn1 values (50, 'want this');
  304. insert into rtest_nothn1 values (60, 'want this');
  305. select * from rtest_nothn1;
  306. insert into rtest_nothn2 values (10, 'too small');
  307. insert into rtest_nothn2 values (50, 'too small');
  308. insert into rtest_nothn2 values (100, 'OK');
  309. insert into rtest_nothn2 values (200, 'OK');
  310. select * from rtest_nothn2;
  311. select * from rtest_nothn3;
  312. delete from rtest_nothn1;
  313. delete from rtest_nothn2;
  314. delete from rtest_nothn3;
  315. insert into rtest_nothn4 values (1, 'want this');
  316. insert into rtest_nothn4 values (2, 'want this');
  317. insert into rtest_nothn4 values (10, 'don''t want this');
  318. insert into rtest_nothn4 values (19, 'don''t want this');
  319. insert into rtest_nothn4 values (20, 'want this');
  320. insert into rtest_nothn4 values (29, 'want this');
  321. insert into rtest_nothn4 values (30, 'don''t want this');
  322. insert into rtest_nothn4 values (39, 'don''t want this');
  323. insert into rtest_nothn4 values (40, 'want this');
  324. insert into rtest_nothn4 values (50, 'want this');
  325. insert into rtest_nothn4 values (60, 'want this');
  326. insert into rtest_nothn1 select * from rtest_nothn4;
  327. select * from rtest_nothn1;
  328. delete from rtest_nothn4;
  329. insert into rtest_nothn4 values (10, 'too small');
  330. insert into rtest_nothn4 values (50, 'too small');
  331. insert into rtest_nothn4 values (100, 'OK');
  332. insert into rtest_nothn4 values (200, 'OK');
  333. insert into rtest_nothn2 select * from rtest_nothn4;
  334. select * from rtest_nothn2;
  335. select * from rtest_nothn3;
  336. create table rtest_view1 (a int4, b text, v bool);
  337. create table rtest_view2 (a int4);
  338. create table rtest_view3 (a int4, b text);
  339. create table rtest_view4 (a int4, b text, c int4);
  340. create view rtest_vview1 as select a, b from rtest_view1 X 
  341. where 0 < (select count(*) from rtest_view2 Y where Y.a = X.a);
  342. create view rtest_vview2 as select a, b from rtest_view1 where v;
  343. create view rtest_vview3 as select a, b from rtest_vview2 X
  344. where 0 < (select count(*) from rtest_view2 Y where Y.a = X.a);
  345. create view rtest_vview4 as select X.a, X.b, count(Y.a) as refcount
  346. from rtest_view1 X, rtest_view2 Y
  347. where X.a = Y.a
  348. group by X.a, X.b;
  349. create function rtest_viewfunc1(int4) returns int4 as
  350. 'select count(*) from rtest_view2 where a = $1'
  351. language 'sql';
  352. create view rtest_vview5 as select a, b, rtest_viewfunc1(a) as refcount
  353. from rtest_view1;
  354. insert into rtest_view1 values (1, 'item 1', 't');
  355. insert into rtest_view1 values (2, 'item 2', 't');
  356. insert into rtest_view1 values (3, 'item 3', 't');
  357. insert into rtest_view1 values (4, 'item 4', 'f');
  358. insert into rtest_view1 values (5, 'item 5', 't');
  359. insert into rtest_view1 values (6, 'item 6', 'f');
  360. insert into rtest_view1 values (7, 'item 7', 't');
  361. insert into rtest_view1 values (8, 'item 8', 't');
  362. insert into rtest_view2 values (2);
  363. insert into rtest_view2 values (2);
  364. insert into rtest_view2 values (4);
  365. insert into rtest_view2 values (5);
  366. insert into rtest_view2 values (7);
  367. insert into rtest_view2 values (7);
  368. insert into rtest_view2 values (7);
  369. insert into rtest_view2 values (7);
  370. select * from rtest_vview1;
  371. select * from rtest_vview2;
  372. select * from rtest_vview3;
  373. select * from rtest_vview4;
  374. select * from rtest_vview5;
  375. insert into rtest_view3 select * from rtest_vview1 where a < 7;
  376. select * from rtest_view3;
  377. delete from rtest_view3;
  378. insert into rtest_view3 select * from rtest_vview2 where a != 5 and b !~ '2';
  379. select * from rtest_view3;
  380. delete from rtest_view3;
  381. insert into rtest_view3 select * from rtest_vview3;
  382. select * from rtest_view3;
  383. delete from rtest_view3;
  384. insert into rtest_view4 select * from rtest_vview4 where 3 > refcount;
  385. select * from rtest_view4;
  386. delete from rtest_view4;
  387. insert into rtest_view4 select * from rtest_vview5 where a > 2 and refcount = 0;
  388. select * from rtest_view4;
  389. delete from rtest_view4;
  390. --
  391. -- Test for computations in views
  392. --
  393. create table rtest_comp (
  394. part text,
  395. unit char(4),
  396. size float
  397. );
  398. create table rtest_unitfact (
  399. unit char(4),
  400. factor float
  401. );
  402. create view rtest_vcomp as 
  403. select X.part, (X.size * Y.factor) as size_in_cm
  404. from rtest_comp X, rtest_unitfact Y
  405. where X.unit = Y.unit;
  406. insert into rtest_unitfact values ('m', 100.0);
  407. insert into rtest_unitfact values ('cm', 1.0);
  408. insert into rtest_unitfact values ('inch', 2.54);
  409. insert into rtest_comp values ('p1', 'm', 5.0);
  410. insert into rtest_comp values ('p2', 'm', 3.0);
  411. insert into rtest_comp values ('p3', 'cm', 5.0);
  412. insert into rtest_comp values ('p4', 'cm', 15.0);
  413. insert into rtest_comp values ('p5', 'inch', 7.0);
  414. insert into rtest_comp values ('p6', 'inch', 4.4);
  415. select * from rtest_vcomp order by part;
  416. select * from rtest_vcomp where size_in_cm > 10.0 order by size_in_cm using >;
  417. --
  418. -- In addition run the (slightly modified) queries from the
  419. -- programmers manual section on the rule system.
  420. --
  421. CREATE TABLE shoe_data (
  422. shoename   char(10),      -- primary key
  423. sh_avail   integer,       -- available # of pairs
  424. slcolor    char(10),      -- preferred shoelace color
  425. slminlen   float,         -- miminum shoelace length
  426. slmaxlen   float,         -- maximum shoelace length
  427. slunit     char(8)        -- length unit
  428. );
  429. CREATE TABLE shoelace_data (
  430. sl_name    char(10),      -- primary key
  431. sl_avail   integer,       -- available # of pairs
  432. sl_color   char(10),      -- shoelace color
  433. sl_len     float,         -- shoelace length
  434. sl_unit    char(8)        -- length unit
  435. );
  436. CREATE TABLE unit (
  437. un_name    char(8),       -- the primary key
  438. un_fact    float          -- factor to transform to cm
  439. );
  440. CREATE VIEW shoe AS
  441. SELECT sh.shoename,
  442.    sh.sh_avail,
  443.    sh.slcolor,
  444.    sh.slminlen,
  445.    sh.slminlen * un.un_fact AS slminlen_cm,
  446.    sh.slmaxlen,
  447.    sh.slmaxlen * un.un_fact AS slmaxlen_cm,
  448.    sh.slunit
  449.   FROM shoe_data sh, unit un
  450.  WHERE sh.slunit = un.un_name;
  451. CREATE VIEW shoelace AS
  452. SELECT s.sl_name,
  453.    s.sl_avail,
  454.    s.sl_color,
  455.    s.sl_len,
  456.    s.sl_unit,
  457.    s.sl_len * u.un_fact AS sl_len_cm
  458.   FROM shoelace_data s, unit u
  459.  WHERE s.sl_unit = u.un_name;
  460. CREATE VIEW shoe_ready AS
  461. SELECT rsh.shoename,
  462.    rsh.sh_avail,
  463.    rsl.sl_name,
  464.    rsl.sl_avail,
  465.    int4smaller(rsh.sh_avail, rsl.sl_avail) AS total_avail
  466.   FROM shoe rsh, shoelace rsl
  467.  WHERE rsl.sl_color = rsh.slcolor
  468.    AND rsl.sl_len_cm >= rsh.slminlen_cm
  469.    AND rsl.sl_len_cm <= rsh.slmaxlen_cm;
  470. INSERT INTO unit VALUES ('cm', 1.0);
  471. INSERT INTO unit VALUES ('m', 100.0);
  472. INSERT INTO unit VALUES ('inch', 2.54);
  473. INSERT INTO shoe_data VALUES ('sh1', 2, 'black', 70.0, 90.0, 'cm');
  474. INSERT INTO shoe_data VALUES ('sh2', 0, 'black', 30.0, 40.0, 'inch');
  475. INSERT INTO shoe_data VALUES ('sh3', 4, 'brown', 50.0, 65.0, 'cm');
  476. INSERT INTO shoe_data VALUES ('sh4', 3, 'brown', 40.0, 50.0, 'inch');
  477. INSERT INTO shoelace_data VALUES ('sl1', 5, 'black', 80.0, 'cm');
  478. INSERT INTO shoelace_data VALUES ('sl2', 6, 'black', 100.0, 'cm');
  479. INSERT INTO shoelace_data VALUES ('sl3', 0, 'black', 35.0 , 'inch');
  480. INSERT INTO shoelace_data VALUES ('sl4', 8, 'black', 40.0 , 'inch');
  481. INSERT INTO shoelace_data VALUES ('sl5', 4, 'brown', 1.0 , 'm');
  482. INSERT INTO shoelace_data VALUES ('sl6', 0, 'brown', 0.9 , 'm');
  483. INSERT INTO shoelace_data VALUES ('sl7', 7, 'brown', 60 , 'cm');
  484. INSERT INTO shoelace_data VALUES ('sl8', 1, 'brown', 40 , 'inch');
  485. -- SELECTs in doc
  486. SELECT * FROM shoelace ORDER BY sl_name;
  487. SELECT * FROM shoe_ready WHERE total_avail >= 2;
  488.     CREATE TABLE shoelace_log (
  489.         sl_name    char(10),      -- shoelace changed
  490.         sl_avail   integer,       -- new available value
  491.         log_who    name,          -- who did it
  492.         log_when   datetime       -- when
  493.     );
  494. -- Want "log_who" to be CURRENT_USER,
  495. -- but that is non-portable for the regression test
  496. -- - thomas 1999-02-21
  497.     CREATE RULE log_shoelace AS ON UPDATE TO shoelace_data
  498.         WHERE NEW.sl_avail != OLD.sl_avail
  499.         DO INSERT INTO shoelace_log VALUES (
  500.                                         NEW.sl_name,
  501.                                         NEW.sl_avail,
  502.                                         'Al Bundy',
  503.                                         'epoch'::text
  504.                                     );
  505. UPDATE shoelace_data SET sl_avail = 6 WHERE  sl_name = 'sl7';
  506. SELECT * FROM shoelace_log;
  507.     CREATE RULE shoelace_ins AS ON INSERT TO shoelace
  508.         DO INSTEAD
  509.         INSERT INTO shoelace_data VALUES (
  510.                NEW.sl_name,
  511.                NEW.sl_avail,
  512.                NEW.sl_color,
  513.                NEW.sl_len,
  514.                NEW.sl_unit);
  515.     CREATE RULE shoelace_upd AS ON UPDATE TO shoelace
  516.         DO INSTEAD
  517.         UPDATE shoelace_data SET
  518.                sl_name = NEW.sl_name,
  519.                sl_avail = NEW.sl_avail,
  520.                sl_color = NEW.sl_color,
  521.                sl_len = NEW.sl_len,
  522.                sl_unit = NEW.sl_unit
  523.          WHERE sl_name = OLD.sl_name;
  524.     CREATE RULE shoelace_del AS ON DELETE TO shoelace
  525.         DO INSTEAD
  526.         DELETE FROM shoelace_data
  527.          WHERE sl_name = OLD.sl_name;
  528.     CREATE TABLE shoelace_arrive (
  529.         arr_name    char(10),
  530.         arr_quant   integer
  531.     );
  532.     CREATE TABLE shoelace_ok (
  533.         ok_name     char(10),
  534.         ok_quant    integer
  535.     );
  536.     CREATE RULE shoelace_ok_ins AS ON INSERT TO shoelace_ok
  537.         DO INSTEAD
  538.         UPDATE shoelace SET
  539.                sl_avail = sl_avail + NEW.ok_quant
  540.          WHERE sl_name = NEW.ok_name;
  541. INSERT INTO shoelace_arrive VALUES ('sl3', 10);
  542. INSERT INTO shoelace_arrive VALUES ('sl6', 20);
  543. INSERT INTO shoelace_arrive VALUES ('sl8', 20);
  544. SELECT * FROM shoelace ORDER BY sl_name;
  545. insert into shoelace_ok select * from shoelace_arrive;
  546. SELECT * FROM shoelace ORDER BY sl_name;
  547. SELECT * FROM shoelace_log;
  548.     CREATE VIEW shoelace_obsolete AS
  549. SELECT * FROM shoelace WHERE NOT EXISTS
  550.     (SELECT shoename FROM shoe WHERE slcolor = sl_color);
  551.     CREATE VIEW shoelace_candelete AS
  552. SELECT * FROM shoelace_obsolete WHERE sl_avail = 0;
  553. insert into shoelace values ('sl9', 0, 'pink', 35.0, 'inch', 0.0);
  554. insert into shoelace values ('sl10', 1000, 'magenta', 40.0, 'inch', 0.0);
  555. SELECT * FROM shoelace_obsolete;
  556. SELECT * FROM shoelace_candelete;
  557. DELETE FROM shoelace WHERE EXISTS
  558.     (SELECT * FROM shoelace_candelete
  559.              WHERE sl_name = shoelace.sl_name);
  560. SELECT * FROM shoelace ORDER BY sl_name;
  561. --
  562. -- Check that ruleutils are working
  563. --
  564. SELECT viewname, definition FROM pg_views ORDER BY viewname;
  565. SELECT tablename, rulename, definition FROM pg_rules 
  566. ORDER BY tablename, rulename;