/[pgestraier]/trunk/test.sql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/test.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31 - (hide annotations)
Wed Jul 6 14:47:56 2005 UTC (18 years, 10 months ago) by dpavlin
File size: 1263 byte(s)
added results order (see test.sql for example) to function arguments,
fixed limit (it really returns limit rows, and not limit - offset :-\),
added est_cond_delete(cond) so that we don't leek memory

1 dpavlin 19 --select * from pgest(null, 'a OR b OR c', '', 0, 0);
2     --select * from pgest('##dir##/data/casket', 'a OR b OR c', '', 0, 10);
3     --select * from pgest('##dir##/data/casket', 'a OR b OR c', '', 20, 0);
4     --select * from pgest('##dir##/data/casket', 'a OR b OR c', null, 20, 0);
5     --select * from pgest('##dir##/data/casket', 'a OR b OR c', '@uri ISTREW .txt', 100, 0);
6 dpavlin 13
7     -- find all references to blade runner in other films
8 dpavlin 31 select substr(uri,45),title,year from pgest('##dir##/data/casket','blade runner', '@title !ISTRINC blade runner', null, null, null, array['@uri','@title','year']) as (uri text, title text, year int);
9 dpavlin 17
10     -- find all references and count them to blade runner after 1990
11 dpavlin 31 select count(title),title from pgest('##dir##/data/casket', 'blade runner', 'year NUMGT 1990', null, null, null, array['@title']) as (title text) group by title order by title;
12 dpavlin 19
13     -- example of new API which allows user to specify attributes
14 dpavlin 31 select count(title),year from pgest('##dir##/data/casket', 'blade runner', null, null, null, null, array['@title','year']) as (title text, year text) group by year order by year asc;
15 dpavlin 19
16 dpavlin 31 -- test sort order
17     select title from pgest('##dir##/data/casket', 'blade runner', 'year NUMGT 1990', '@title STRA', 5, 0, array['@title']) as (title text);
18    

  ViewVC Help
Powered by ViewVC 1.1.26