Remove useless whitespace at end of lines

This commit is contained in:
Peter Eisentraut
2010-11-23 22:27:50 +02:00
parent 44475e782f
commit fc946c39ae
517 changed files with 3463 additions and 3508 deletions

View File

@ -2657,7 +2657,7 @@ select exc_using(5, 'foobar');
drop function exc_using(int, text);
create or replace function exc_using(int) returns void as $$
declare
declare
c refcursor;
i int;
begin
@ -2668,7 +2668,7 @@ begin
raise notice '%', i;
end loop;
close c;
return;
return;
end;
$$ language plpgsql;