1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-12 02:37:31 +03:00

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

@@ -1,6 +1,6 @@
--
-- Universal Newline Support
--
--
CREATE OR REPLACE FUNCTION newline_lf() RETURNS integer AS
E'x = 100\ny = 23\nreturn x + y\n'

View File

@@ -3,7 +3,7 @@ CREATE TABLE users (
lname text not null,
username text,
userid serial,
PRIMARY KEY(lname, fname)
PRIMARY KEY(lname, fname)
) ;
CREATE INDEX users_username_idx ON users(username);

View File

@@ -78,7 +78,7 @@ for key in skeys:
val = TD[key]
plpy.notice("TD[" + key + "] => " + str(val))
return None
return None
$$;