Skip to content

Commit 3f11971

Browse files
committed
Remove extra newlines at end and beginning of files, add missing newlines
at end of files.
1 parent d37781f commit 3f11971

File tree

156 files changed

+55
-226
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+55
-226
lines changed

README

-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ instructions.
2626
The latest version of this software may be obtained at
2727
http://www.postgresql.org/download/. For more information look at our
2828
web site located at http://www.postgresql.org/.
29-

config/c-compiler.m4

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Macros to detect C compiler features
2-
# $PostgreSQL: pgsql/config/c-compiler.m4,v 1.22 2010/05/25 17:28:20 meskes Exp $
2+
# $PostgreSQL: pgsql/config/c-compiler.m4,v 1.23 2010/08/19 05:57:33 petere Exp $
33

44

55
# PGAC_C_SIGNED
@@ -155,4 +155,3 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([extern void $2 (); void (*fptr) () = $2;],[])],
155155
[LDFLAGS="$pgac_save_LDFLAGS"
156156
AC_MSG_RESULT(assuming no)])
157157
])# PGAC_PROG_CC_LDFLAGS_OPT
158-

contrib/btree_gist/sql/cidr.sql

-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ SELECT count(*) FROM cidrtmp WHERE a = '121.111.63.82'::cidr;
2828
SELECT count(*) FROM cidrtmp WHERE a >= '121.111.63.82'::cidr;
2929

3030
SELECT count(*) FROM cidrtmp WHERE a > '121.111.63.82'::cidr;
31-

contrib/btree_gist/sql/date.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM datetmp WHERE a = '2001-02-13'::date;
2929
SELECT count(*) FROM datetmp WHERE a >= '2001-02-13'::date;
3030

3131
SELECT count(*) FROM datetmp WHERE a > '2001-02-13'::date;
32-

contrib/btree_gist/sql/inet.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM inettmp WHERE a = '89.225.196.191'::inet;
2929
SELECT count(*) FROM inettmp WHERE a >= '89.225.196.191'::inet;
3030

3131
SELECT count(*) FROM inettmp WHERE a > '89.225.196.191'::inet;
32-

contrib/btree_gist/sql/int2.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM int2tmp WHERE a = 237::int2;
2929
SELECT count(*) FROM int2tmp WHERE a >= 237::int2;
3030

3131
SELECT count(*) FROM int2tmp WHERE a > 237::int2;
32-

contrib/btree_gist/sql/int4.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM int4tmp WHERE a = 237::int4;
2929
SELECT count(*) FROM int4tmp WHERE a >= 237::int4;
3030

3131
SELECT count(*) FROM int4tmp WHERE a > 237::int4;
32-

contrib/btree_gist/sql/int8.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM int8tmp WHERE a = 464571291354841::int8;
2929
SELECT count(*) FROM int8tmp WHERE a >= 464571291354841::int8;
3030

3131
SELECT count(*) FROM int8tmp WHERE a > 464571291354841::int8;
32-

contrib/btree_gist/sql/interval.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM intervaltmp WHERE a = '199 days 21:21:23'::interval;
2929
SELECT count(*) FROM intervaltmp WHERE a >= '199 days 21:21:23'::interval;
3030

3131
SELECT count(*) FROM intervaltmp WHERE a > '199 days 21:21:23'::interval;
32-

contrib/btree_gist/sql/macaddr.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM macaddrtmp WHERE a = '22:00:5c:e5:9b:0d'::macaddr;
2929
SELECT count(*) FROM macaddrtmp WHERE a >= '22:00:5c:e5:9b:0d'::macaddr;
3030

3131
SELECT count(*) FROM macaddrtmp WHERE a > '22:00:5c:e5:9b:0d'::macaddr;
32-

contrib/btree_gist/sql/time.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM timetmp WHERE a = '10:57:11'::time;
2929
SELECT count(*) FROM timetmp WHERE a >= '10:57:11'::time;
3030

3131
SELECT count(*) FROM timetmp WHERE a > '10:57:11'::time;
32-

contrib/btree_gist/sql/timestamp.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ SELECT count(*) FROM timestamptmp WHERE a = '2004-10-26 08:55:08'::timestamp;
2929
SELECT count(*) FROM timestamptmp WHERE a >= '2004-10-26 08:55:08'::timestamp;
3030

3131
SELECT count(*) FROM timestamptmp WHERE a > '2004-10-26 08:55:08'::timestamp;
32-

contrib/intarray/bench/bench.pl

-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,3 @@ sub exec_sql {
103103
$sth->finish;
104104
return @row;
105105
}
106-

contrib/ltree/sql/ltree.sql

-1
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,3 @@ SELECT count(*) FROM _ltreetest WHERE t ~ '23.*{1}.1' ;
291291
SELECT count(*) FROM _ltreetest WHERE t ~ '23.*.1' ;
292292
SELECT count(*) FROM _ltreetest WHERE t ~ '23.*.2' ;
293293
SELECT count(*) FROM _ltreetest WHERE t ? '{23.*.1,23.*.2}' ;
294-

contrib/pageinspect/Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# pageinspect Makefile
44
#
5-
# $PostgreSQL: pgsql/contrib/pageinspect/Makefile,v 1.4 2008/09/30 10:52:09 heikki Exp $
5+
# $PostgreSQL: pgsql/contrib/pageinspect/Makefile,v 1.5 2010/08/19 05:57:33 petere Exp $
66
#
77
#-------------------------------------------------------------------------
88

@@ -21,4 +21,3 @@ top_builddir = ../..
2121
include $(top_builddir)/src/Makefile.global
2222
include $(top_srcdir)/contrib/contrib-global.mk
2323
endif
24-

contrib/pg_trgm/sql/pg_trgm.sql

-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,3 @@ set enable_seqscan=off;
4141
select t,similarity(t,'qwertyu0988') as sml from test_trgm where t % 'qwertyu0988' order by sml desc, t;
4242
select t,similarity(t,'gwertyu0988') as sml from test_trgm where t % 'gwertyu0988' order by sml desc, t;
4343
select t,similarity(t,'gwertyu1988') as sml from test_trgm where t % 'gwertyu1988' order by sml desc, t;
44-

contrib/pg_upgrade/TESTING

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$PostgreSQL: pgsql/contrib/pg_upgrade/TESTING,v 1.3 2010/07/09 16:51:23 momjian Exp $
1+
$PostgreSQL: pgsql/contrib/pg_upgrade/TESTING,v 1.4 2010/08/19 05:57:33 petere Exp $
22

33
The most effective way to test pg_upgrade, aside from testing on user
44
data, is by upgrading the PostgreSQL regression database.
@@ -62,7 +62,3 @@ steps:
6262

6363
7) Diff the regression database dump file with the regression dump
6464
file loaded into the old server.
65-
66-
67-
68-

contrib/pgcrypto/pgcrypto.sql.in

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.sql.in,v 1.15 2007/11/13 04:24:28 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.sql.in,v 1.16 2010/08/19 05:57:33 petere Exp $ */
22

33
-- Adjust this setting to control where the objects get created.
44
SET search_path = public;
@@ -200,4 +200,3 @@ CREATE OR REPLACE FUNCTION dearmor(text)
200200
RETURNS bytea
201201
AS 'MODULE_PATHNAME', 'pg_dearmor'
202202
LANGUAGE C IMMUTABLE STRICT;
203-

contrib/pgcrypto/rijndael.tbl

-1
Original file line numberDiff line numberDiff line change
@@ -1136,4 +1136,3 @@ static const u4byte rco_tab[10] = {
11361136
0x00000001, 0x00000002, 0x00000004, 0x00000008, 0x00000010,
11371137
0x00000020, 0x00000040, 0x00000080, 0x0000001b, 0x00000036
11381138
};
1139-

contrib/pgcrypto/sql/3des.sql

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ select decrypt_iv(decode('50735067b073bb93', 'hex'), '0123456', 'abcd', '3des');
2929
-- long message
3030
select encode(encrypt('Lets try a longer message.', '0123456789012345678901', '3des'), 'hex');
3131
select decrypt(encrypt('Lets try a longer message.', '0123456789012345678901', '3des'), '0123456789012345678901', '3des');
32-

contrib/pgcrypto/sql/blowfish.sql

-1
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,3 @@ select decrypt_iv(decode('95c7e89322525d59', 'hex'), '0123456', 'abcd', 'bf');
9090
-- long message
9191
select encode(encrypt('Lets try a longer message.', '0123456789', 'bf'), 'hex');
9292
select decrypt(encrypt('Lets try a longer message.', '0123456789', 'bf'), '0123456789', 'bf');
93-

contrib/pgcrypto/sql/cast5.sql

-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,3 @@ select decrypt_iv(decode('384a970695ce016a', 'hex'),
4545
-- long message
4646
select encode(encrypt('Lets try a longer message.', '0123456789', 'cast5'), 'hex');
4747
select decrypt(encrypt('Lets try a longer message.', '0123456789', 'cast5'), '0123456789', 'cast5');
48-

contrib/pgcrypto/sql/crypt-blowfish.sql

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ SELECT res = crypt(data, res) AS "worked"
1515
FROM ctest;
1616

1717
DROP TABLE ctest;
18-

contrib/pgcrypto/sql/crypt-des.sql

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ SELECT res = crypt(data, res) AS "worked"
1515
FROM ctest;
1616

1717
DROP TABLE ctest;
18-

contrib/pgcrypto/sql/crypt-md5.sql

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ SELECT res = crypt(data, res) AS "worked"
1515
FROM ctest;
1616

1717
DROP TABLE ctest;
18-

contrib/pgcrypto/sql/crypt-xdes.sql

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ SELECT res = crypt(data, res) AS "worked"
1515
FROM ctest;
1616

1717
DROP TABLE ctest;
18-

contrib/pgcrypto/sql/des.sql

-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ select decrypt_iv(decode('50735067b073bb93', 'hex'), '0123456', 'abcd', 'des');
2727
-- long message
2828
select encode(encrypt('Lets try a longer message.', '01234567', 'des'), 'hex');
2929
select decrypt(encrypt('Lets try a longer message.', '01234567', 'des'), '01234567', 'des');
30-

contrib/pgcrypto/sql/hmac-md5.sql

-2
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,3 @@ SELECT encode(hmac(
4242
'Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data',
4343
decode('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', 'hex'),
4444
'md5'), 'hex');
45-
46-

contrib/pgcrypto/sql/hmac-sha1.sql

-2
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,3 @@ SELECT encode(hmac(
4242
'Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data',
4343
decode('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', 'hex'),
4444
'sha1'), 'hex');
45-
46-

contrib/pgcrypto/sql/init.sql

-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@ select gen_salt('foo');
2424
select digest('foo', 'foo');
2525
select hmac('foo', 'foo', 'foo');
2626
select encrypt('foo', 'foo', 'foo');
27-

contrib/pgcrypto/sql/md5.sql

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ SELECT encode(digest('message digest', 'md5'), 'hex');
99
SELECT encode(digest('abcdefghijklmnopqrstuvwxyz', 'md5'), 'hex');
1010
SELECT encode(digest('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', 'md5'), 'hex');
1111
SELECT encode(digest('12345678901234567890123456789012345678901234567890123456789012345678901234567890', 'md5'), 'hex');
12-

contrib/pgcrypto/sql/pgp-compression.sql

-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ select pgp_sym_decrypt(
2828
pgp_sym_encrypt('Secret message', 'key',
2929
'compress-algo=2, compress-level=0'),
3030
'key', 'expect-compress-algo=0');
31-
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
21
-- no random source
3-

contrib/pgcrypto/sql/pgp-encrypt.sql

-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,3 @@ select encode(digest(pgp_sym_decrypt(
9595
pgp_sym_encrypt(E'\r\n0\n1\r\r\n\n2\r', 'key', 'convert-crlf=1'),
9696
'key', 'convert-crlf=1'), 'sha1'), 'hex') as result,
9797
encode(digest(E'\r\n0\n1\r\r\n\n2\r', 'sha1'), 'hex') as expect;
98-

contrib/pgcrypto/sql/pgp-info.sql

-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ select pgp_key_id(dearmor(seckey)) from keytbl where id=6;
2020

2121
select pgp_key_id(dearmor(data)) as data_key_id
2222
from encdata order by id;
23-
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
21
-- no bignum support
3-

contrib/pgcrypto/sql/pgp-pubkey-decrypt.sql

-1
Original file line numberDiff line numberDiff line change
@@ -546,4 +546,3 @@ from keytbl, encdata where keytbl.id=5 and encdata.id=1;
546546
-- password-protected secret key, right password
547547
select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'parool')
548548
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
549-

contrib/pgcrypto/sql/pgp-pubkey-encrypt.sql

-2
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,3 @@ select pgp_pub_decrypt(
4848
pgp_pub_encrypt_bytea('Secret msg', dearmor(pubkey)),
4949
dearmor(seckey))
5050
from keytbl where keytbl.id=1;
51-
52-
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
21
-- zlib is disabled
3-

contrib/pgcrypto/sql/rijndael.sql

-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,3 @@ select decrypt_iv(decode('2c24cb7da91d6d5699801268b0f5adad', 'hex'),
6161
-- long message
6262
select encode(encrypt('Lets try a longer message.', '0123456789', 'aes'), 'hex');
6363
select decrypt(encrypt('Lets try a longer message.', '0123456789', 'aes'), '0123456789', 'aes');
64-

contrib/pgcrypto/sql/sha1.sql

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ SELECT encode(digest('message digest', 'sha1'), 'hex');
99
SELECT encode(digest('abcdefghijklmnopqrstuvwxyz', 'sha1'), 'hex');
1010
SELECT encode(digest('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', 'sha1'), 'hex');
1111
SELECT encode(digest('12345678901234567890123456789012345678901234567890123456789012345678901234567890', 'sha1'), 'hex');
12-

contrib/pgcrypto/sql/sha2.sql

-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,3 @@ SELECT encode(digest('abc', 'sha512'), 'hex');
3131
SELECT encode(digest('abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq', 'sha512'), 'hex');
3232
SELECT encode(digest('abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu', 'sha512'), 'hex');
3333
SELECT encode(digest('abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz', 'sha512'), 'hex');
34-
35-

contrib/pgcrypto/uninstall_pgcrypto.sql

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/contrib/pgcrypto/uninstall_pgcrypto.sql,v 1.4 2007/11/13 04:24:28 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/contrib/pgcrypto/uninstall_pgcrypto.sql,v 1.5 2010/08/19 05:57:33 petere Exp $ */
22

33
-- Adjust this setting to control where the objects get dropped.
44
SET search_path = public;
@@ -43,4 +43,3 @@ DROP FUNCTION pgp_pub_decrypt_bytea(bytea, bytea, text, text);
4343
DROP FUNCTION pgp_key_id(bytea);
4444
DROP FUNCTION armor(bytea);
4545
DROP FUNCTION dearmor(text);
46-

contrib/spi/insert_username.example

-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ INSERT INTO username_test VALUES ('tab', ' ');
1818
INSERT INTO username_test VALUES ('name', 'name');
1919

2020
SELECT * FROM username_test;
21-

contrib/tablefunc/sql/tablefunc.sql

-1
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,3 @@ INSERT INTO connectby_int VALUES(111,11);
196196
INSERT INTO connectby_int VALUES(1,111);
197197
-- this should not fail due to recursion detection
198198
SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '11', 0, '-') AS t(keyid int, parent_keyid int, level int, branch text);
199-

contrib/tsearch2/sql/tsearch2.sql

-1
Original file line numberDiff line numberDiff line change
@@ -340,4 +340,3 @@ SELECT count(*) FROM test_tsvector WHERE a @@ 'eq&yt';
340340
SELECT count(*) FROM test_tsvector WHERE a @@ 'eq|yt';
341341
SELECT count(*) FROM test_tsvector WHERE a @@ '(eq&yt)|(wr&qh)';
342342
SELECT count(*) FROM test_tsvector WHERE a @@ '(eq|yt)&(wr|qh)';
343-

doc/KNOWN_BUGS

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
PostgreSQL has a single combined bugs, missing features, and todo list
22
simply called TODO, in this directory. A current copy is always
33
available on our web site.
4-

doc/MISSING_FEATURES

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
PostgreSQL has a single combined bugs, missing features, and todo list
22
simply called TODO, in this directory. A current copy is always
33
available on our web site.
4-

doc/src/sgml/pgupgrade.sgml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgupgrade.sgml,v 1.14 2010/08/17 04:37:21 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgupgrade.sgml,v 1.15 2010/08/19 05:57:33 petere Exp $ -->
22

33
<sect1 id="pgupgrade">
44
<title>pg_upgrade</title>
@@ -537,4 +537,3 @@ psql --username postgres --file script.sql postgres
537537
</sect2>
538538

539539
</sect1>
540-

src/backend/optimizer/README

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$PostgreSQL: pgsql/src/backend/optimizer/README,v 1.53 2010/03/28 22:59:32 tgl Exp $
1+
$PostgreSQL: pgsql/src/backend/optimizer/README,v 1.54 2010/08/19 05:57:34 petere Exp $
22

33
Optimizer
44
=========
@@ -637,4 +637,3 @@ coding of our optimizer, he is available to field questions about
637637
optimizer topics.
638638

639639
-- bjm & tgl
640-

src/backend/optimizer/plan/README

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$PostgreSQL: pgsql/src/backend/optimizer/plan/README,v 1.3 2008/03/21 13:23:28 momjian Exp $
1+
$PostgreSQL: pgsql/src/backend/optimizer/plan/README,v 1.4 2010/08/19 05:57:34 petere Exp $
22

33
Subselects
44
==========
@@ -10,7 +10,7 @@ From [email protected] Fri Feb 13 09:01:19 1998
1010
Received: from renoir.op.net ([email protected] [209.152.193.4])
1111
by candle.pha.pa.us (8.8.5/8.8.5) with ESMTP id JAA11576
1212
for <[email protected]>; Fri, 13 Feb 1998 09:01:17 -0500 (EST)
13-
Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id IAA09761 for <[email protected]>; Fri, 13 Feb 1998 08:41:22 -0500 (EST)
13+
Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id IAA09761 for <[email protected]>; Fri, 13 Feb 1998 08:41:22 -0500 (EST)
1414
Received: from localhost (majordom@localhost) by hub.org (8.8.8/8.7.5) with SMTP id IAA08135; Fri, 13 Feb 1998 08:40:17 -0500 (EST)
1515
Received: by hub.org (TLB v0.10a (1.23 tibbs 1997/01/09 00:29:32)); Fri, 13 Feb 1998 08:38:42 -0500 (EST)
1616
Received: (from majordom@localhost) by hub.org (8.8.8/8.7.5) id IAA06646 for pgsql-hackers-outgoing; Fri, 13 Feb 1998 08:38:35 -0500 (EST)
@@ -156,5 +156,3 @@ SubSelect -> 17 sec (2M of memory)
156156
Using temp table -> 32 sec (12M of memory: -S 8192)
157157

158158
Vadim
159-
160-

src/backend/snowball/snowball.sql.in

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- $PostgreSQL: pgsql/src/backend/snowball/snowball.sql.in,v 1.6 2007/10/27 16:01:08 tgl Exp $$
1+
-- $PostgreSQL: pgsql/src/backend/snowball/snowball.sql.in,v 1.7 2010/08/19 05:57:34 petere Exp $$
22

33
-- text search configuration for _LANGNAME_ language
44
CREATE TEXT SEARCH DICTIONARY _DICTNAME_
@@ -24,4 +24,3 @@ ALTER TEXT SEARCH CONFIGURATION _CFGNAME_ ADD MAPPING
2424
ALTER TEXT SEARCH CONFIGURATION _CFGNAME_ ADD MAPPING
2525
FOR word, hword_part, hword
2626
WITH _NONASCDICTNAME_;
27-

src/backend/snowball/snowball_func.sql.in

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- $PostgreSQL: pgsql/src/backend/snowball/snowball_func.sql.in,v 1.2 2007/09/03 02:30:43 tgl Exp $$
1+
-- $PostgreSQL: pgsql/src/backend/snowball/snowball_func.sql.in,v 1.3 2010/08/19 05:57:34 petere Exp $$
22

33
SET search_path = pg_catalog;
44

@@ -15,4 +15,3 @@ CREATE TEXT SEARCH TEMPLATE snowball
1515
LEXIZE = dsnowball_lexize);
1616

1717
COMMENT ON TEXT SEARCH TEMPLATE snowball IS 'snowball stemmer';
18-

src/backend/snowball/stopwords/english.stop

-1
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,3 @@ just
125125
don
126126
should
127127
now
128-

src/backend/storage/freespace/README

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$PostgreSQL: pgsql/src/backend/storage/freespace/README,v 1.1 2008/09/30 10:52:13 heikki Exp $
1+
$PostgreSQL: pgsql/src/backend/storage/freespace/README,v 1.2 2010/08/19 05:57:34 petere Exp $
22

33
Free Space Map
44
--------------
@@ -192,4 +192,3 @@ TODO
192192
- fastroot to avoid traversing upper nodes with just 1 child
193193
- use a different system for tables that fit into one FSM page, with a
194194
mechanism to switch to the real thing as it grows.
195-

src/backend/tsearch/thesaurus_sample.ths

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ supernovae stars : *sn
1515
supernovae : *sn
1616
booking tickets : order invitation cards
1717
booking ? tickets : order invitation Cards
18-

src/backend/tsearch/wparser_def.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/backend/tsearch/wparser_def.c,v 1.32 2010/05/09 02:15:59 tgl Exp $
10+
* $PostgreSQL: pgsql/src/backend/tsearch/wparser_def.c,v 1.33 2010/08/19 05:57:34 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -2572,4 +2572,3 @@ prsd_headline(PG_FUNCTION_ARGS)
25722572

25732573
PG_RETURN_POINTER(prs);
25742574
}
2575-

src/backend/utils/mb/Unicode/ISO10646-GB18030.TXT

-1
Original file line numberDiff line numberDiff line change
@@ -63486,4 +63486,3 @@ FFFC 8431A436
6348663486
FFFD 8431A437
6348763487
FFFE 8431A438
6348863488
FFFF 8431A439
63489-

src/backend/utils/mb/Unicode/UCS_to_BIG5.pl

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Copyright (c) 2001-2010, PostgreSQL Global Development Group
44
#
5-
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl,v 1.10 2010/01/02 16:57:56 momjian Exp $
5+
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl,v 1.11 2010/08/19 05:57:34 petere Exp $
66
#
77
# Generate UTF-8 <--> BIG5 conversion tables from
88
# map files provided by Unicode organization.
@@ -174,4 +174,3 @@
174174

175175
print FILE "};\n";
176176
close(FILE);
177-

0 commit comments

Comments
 (0)