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
In response to
pgsql-hackers by date
| Next: | From: Tom Lane | Date: 2000-04-04 01:27:19 |
| Subject: Re: Problem with view |
| Previous: | From: Thomas Lockhart | Date: 2000-04-04 01:08:58 |
| Subject: Re: Broken PL/PgSQL for 7.0 beta 3? |