mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-09 08:07:34 +08:00
Fix whitespace issues found by git diff --check, add gitattributes
Set per file type attributes in .gitattributes to fine-tune whitespace checks. With the associated cleanups, the tree is now clean for git
This commit is contained in:
@ -2215,7 +2215,7 @@ create function excpt_test2() returns void as $$
|
||||
begin
|
||||
begin
|
||||
begin
|
||||
raise notice '% %', sqlstate, sqlerrm;
|
||||
raise notice '% %', sqlstate, sqlerrm;
|
||||
end;
|
||||
end;
|
||||
end; $$ language plpgsql;
|
||||
@ -2225,7 +2225,7 @@ select excpt_test2();
|
||||
create function excpt_test3() returns void as $$
|
||||
begin
|
||||
begin
|
||||
raise exception 'user exception';
|
||||
raise exception 'user exception';
|
||||
exception when others then
|
||||
raise notice 'caught exception % %', sqlstate, sqlerrm;
|
||||
begin
|
||||
@ -4084,4 +4084,3 @@ select outer_outer_func(20);
|
||||
drop function outer_outer_func(int);
|
||||
drop function outer_func(int);
|
||||
drop function inner_func(int);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user