| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | eric(at)estinc(dot)com |
| Cc: | pgsql-hackers(at)postgresql(dot)org |
| Subject: | Re: Broken PL/PgSQL for 7.0 beta 3? |
| Date: | 2000-04-04 01:10:00 |
| Message-ID: | 4776.954810600@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Eric Lee Green <pgsql-hackers(at)estinc(dot)com> writes:
> The following code works under 6.5 and doesn't work in 7.0 beta 3. Comments?
Please define "doesn't work". I get (starting with a virgin paths table)
tpc=# select get_path('/etc');
get_path
----------
1
(1 row)
tpc=# select get_path('/etc');
get_path
----------
1
(1 row)
tpc=# select get_path('/etcz');
get_path
----------
2
(1 row)
tpc=# select get_path('/etcz');
get_path
----------
2
(1 row)
tpc=# select get_path('/etc');
get_path
----------
1
(1 row)
which seems to be the intended behavior.
It might help to know what platform/compiler you are using, too.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2000-04-04 01:27:19 | Re: Problem with view |
| Previous Message | Thomas Lockhart | 2000-04-04 01:08:58 | Re: Broken PL/PgSQL for 7.0 beta 3? |