Commit 24607b78 authored by Frank Bergmann's avatar Frank Bergmann

- fixed syntax errors on PostgreSQL 8.2 when returning "return" without...

- fixed syntax errors on PostgreSQL 8.2 when returning "return" without argument in an returns integer function
parent 610c36d0
......@@ -287,7 +287,7 @@ begin
if not found then
/* already at top of sort order */
return;
return 0;
end if;
/* switch the sort orders around */
......@@ -323,7 +323,7 @@ begin
if not found then
/* already at bottom of sort order */
return;
return 0;
end if;
/* switch the sort orders around */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment