Skip to content

Commit fc946c3

Browse files
committed
Remove useless whitespace at end of lines
1 parent 44475e7 commit fc946c3

File tree

517 files changed

+3463
-3508
lines changed

Some content is hidden

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

517 files changed

+3463
-3508
lines changed

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PostgreSQL Database Management System
22
=====================================
3-
3+
44
This directory contains the source code distribution of the PostgreSQL
55
database management system.
66

config/ac_func_accept_argtypes.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
dnl @synopsis AC_FUNC_ACCEPT_ARGTYPES
77
dnl
88
dnl Checks the data types of the three arguments to accept(). Results are
9-
dnl placed into the symbols ACCEPT_TYPE_RETURN and ACCEPT_TYPE_ARG[123],
9+
dnl placed into the symbols ACCEPT_TYPE_RETURN and ACCEPT_TYPE_ARG[123],
1010
dnl consistent with the following example:
1111
dnl
1212
dnl #define ACCEPT_TYPE_RETURN int
@@ -37,7 +37,7 @@ dnl
3737
# which is *not* 'socklen_t *'). If we detect that, then we assume
3838
# 'int' as the result, because that ought to work best.
3939
#
40-
# On Win32, accept() returns 'unsigned int PASCAL'
40+
# On Win32, accept() returns 'unsigned int PASCAL'
4141

4242
AC_DEFUN([AC_FUNC_ACCEPT_ARGTYPES],
4343
[AC_MSG_CHECKING([types of arguments for accept()])

config/general.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dnl values. But we only want it to appear once in the help. We achieve
9090
dnl that by making the help string look the same, which is why we need to
9191
dnl save the default that was passed in previously.
9292
m4_define([_pgac_helpdefault], m4_ifdef([pgac_defined_$1_$2_bool], [m4_defn([pgac_defined_$1_$2_bool])], [$3]))dnl
93-
PGAC_ARG([$1], [$2], [m4_if(_pgac_helpdefault, yes, -)], [$4], [$5], [$6],
93+
PGAC_ARG([$1], [$2], [m4_if(_pgac_helpdefault, yes, -)], [$4], [$5], [$6],
9494
[AC_MSG_ERROR([no argument expected for --$1-$2 option])],
9595
[m4_case([$3],
9696
yes, [pgac_arg_to_variable([$1], [$2])=yes

configure.in

+14-14
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ AC_SUBST(enable_coverage)
230230
#
231231
PGAC_ARG_BOOL(enable, dtrace, no,
232232
[build with DTrace support],
233-
[AC_DEFINE([ENABLE_DTRACE], 1,
233+
[AC_DEFINE([ENABLE_DTRACE], 1,
234234
[Define to 1 to enable DTrace support. (--enable-dtrace)])
235235
AC_CHECK_PROGS(DTRACE, dtrace)
236236
if test -z "$DTRACE"; then
@@ -262,14 +262,14 @@ AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
262262
can set it bigger if you need bigger tuples (although TOAST should
263263
reduce the need to have large tuples, since fields can be spread
264264
across multiple tuples).
265-
265+
266266
BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ
267267
is currently 2^15 (32768). This is determined by the 15-bit widths
268268
of the lp_off and lp_len fields in ItemIdData (see
269269
include/storage/itemid.h).
270-
270+
271271
Changing BLCKSZ requires an initdb.
272-
])
272+
])
273273

274274
#
275275
# Relation segment size
@@ -288,7 +288,7 @@ AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
288288
RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
289289
Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
290290
relations bigger than that are divided into multiple files.
291-
291+
292292
RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
293293
This is often 2 GB or 4GB in a 32-bit operating system, unless you
294294
have large file support enabled. By default, we make the limit 1 GB
@@ -329,7 +329,7 @@ AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
329329
buffers, else direct I/O may fail.
330330

331331
Changing XLOG_BLCKSZ requires an initdb.
332-
])
332+
])
333333

334334
#
335335
# WAL segment size
@@ -461,7 +461,7 @@ fi
461461
# enable profiling if --enable-profiling
462462
if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
463463
if test "$GCC" = yes; then
464-
AC_DEFINE([PROFILE_PID_DIR], 1,
464+
AC_DEFINE([PROFILE_PID_DIR], 1,
465465
[Define to 1 to allow profiling output to be saved separately for each process.])
466466
CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
467467
else
@@ -1141,7 +1141,7 @@ if test "$with_krb5" = yes; then
11411141
AC_MSG_CHECKING(for krb5_free_unparsed_name)
11421142
AC_TRY_LINK([#include <krb5.h>],
11431143
[krb5_free_unparsed_name(NULL,NULL);],
1144-
[AC_DEFINE(HAVE_KRB5_FREE_UNPARSED_NAME, 1, [Define to 1 if you have krb5_free_unparsed_name])
1144+
[AC_DEFINE(HAVE_KRB5_FREE_UNPARSED_NAME, 1, [Define to 1 if you have krb5_free_unparsed_name])
11451145
AC_MSG_RESULT(yes)],
11461146
[AC_MSG_RESULT(no)])
11471147
fi
@@ -1156,8 +1156,8 @@ AC_SYS_LARGEFILE
11561156
AC_CHECK_SIZEOF([off_t])
11571157

11581158
# If we don't have largefile support, can't handle segsize >= 2GB.
1159-
if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1160-
AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1159+
if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1160+
AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
11611161
fi
11621162

11631163

@@ -1228,8 +1228,8 @@ if test "$PORTNAME" = "win32"; then
12281228
#
12291229
# To properly translate all NLS languages strings, we must support the
12301230
# *printf() %$ format, which allows *printf() arguments to be selected
1231-
# by position in the translated string.
1232-
#
1231+
# by position in the translated string.
1232+
#
12331233
# libintl versions < 0.13 use the native *printf() functions, and Win32
12341234
# *printf() doesn't understand %$, so we must use our /port versions,
12351235
# which do understand %$. libintl versions >= 0.13 include their own
@@ -1590,7 +1590,7 @@ AC_CHECK_SIZEOF([size_t])
15901590
AC_CHECK_SIZEOF([long])
15911591

15921592
# Decide whether float4 is passed by value: user-selectable, enabled by default
1593-
AC_MSG_CHECKING([whether to build with float4 passed by value])
1593+
AC_MSG_CHECKING([whether to build with float4 passed by value])
15941594
PGAC_ARG_BOOL(enable, float4-byval, yes, [disable float4 passed by value],
15951595
[AC_DEFINE([USE_FLOAT4_BYVAL], 1,
15961596
[Define to 1 if you want float4 values to be passed by value. (--enable-float4-byval)])
@@ -1858,7 +1858,7 @@ AC_CONFIG_LINKS([
18581858

18591859
if test "$PORTNAME" = "win32"; then
18601860
AC_CONFIG_COMMANDS([check_win32_symlinks],[
1861-
# Links sometimes fail undetected on Mingw -
1861+
# Links sometimes fail undetected on Mingw -
18621862
# so here we detect it and warn the user
18631863
for FILE in $CONFIG_LINKS
18641864
do

contrib/README

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ isn -
9090

9191
lo -
9292
Large Object maintenance
93-
by Peter Mount <[email protected]>
93+
by Peter Mount <[email protected]>
9494

9595
ltree -
9696
Tree-like data structures
9797
by Teodor Sigaev <[email protected]> and Oleg Bartunov <[email protected]>
9898

99-
oid2name -
99+
oid2name -
100100
Maps numeric files to table names
101101
by B Palmer <[email protected]>
102102

@@ -161,7 +161,7 @@ sslinfo -
161161
Functions to get information about SSL certificates
162162
by Victor Wagner <[email protected]>
163163

164-
start-scripts -
164+
start-scripts -
165165
Scripts for starting the server at boot time on various platforms.
166166

167167
tablefunc -

contrib/btree_gin/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# contrib/btree_gin/Makefile
22

33
MODULE_big = btree_gin
4-
OBJS = btree_gin.o
4+
OBJS = btree_gin.o
55

66
DATA_built = btree_gin.sql
77
DATA = uninstall_btree_gin.sql

contrib/btree_gin/expected/cidr.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_cidr (
33
i cidr
44
);
5-
INSERT INTO test_cidr VALUES
5+
INSERT INTO test_cidr VALUES
66
( '1.2.3.4' ),
77
( '1.2.4.4' ),
88
( '1.2.5.4' ),

contrib/btree_gin/expected/date.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_date (
33
i date
44
);
5-
INSERT INTO test_date VALUES
5+
INSERT INTO test_date VALUES
66
( '2004-10-23' ),
77
( '2004-10-24' ),
88
( '2004-10-25' ),

contrib/btree_gin/expected/inet.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_inet (
33
i inet
44
);
5-
INSERT INTO test_inet VALUES
5+
INSERT INTO test_inet VALUES
66
( '1.2.3.4/16' ),
77
( '1.2.4.4/16' ),
88
( '1.2.5.4/16' ),

contrib/btree_gin/expected/interval.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_interval (
33
i interval
44
);
5-
INSERT INTO test_interval VALUES
5+
INSERT INTO test_interval VALUES
66
( '03:55:08' ),
77
( '04:55:08' ),
88
( '05:55:08' ),

contrib/btree_gin/expected/macaddr.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_macaddr (
33
i macaddr
44
);
5-
INSERT INTO test_macaddr VALUES
5+
INSERT INTO test_macaddr VALUES
66
( '22:00:5c:03:55:08' ),
77
( '22:00:5c:04:55:08' ),
88
( '22:00:5c:05:55:08' ),

contrib/btree_gin/expected/time.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_time (
33
i time
44
);
5-
INSERT INTO test_time VALUES
5+
INSERT INTO test_time VALUES
66
( '03:55:08' ),
77
( '04:55:08' ),
88
( '05:55:08' ),

contrib/btree_gin/expected/timestamp.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_timestamp (
33
i timestamp
44
);
5-
INSERT INTO test_timestamp VALUES
5+
INSERT INTO test_timestamp VALUES
66
( '2004-10-26 03:55:08' ),
77
( '2004-10-26 04:55:08' ),
88
( '2004-10-26 05:55:08' ),

contrib/btree_gin/expected/timestamptz.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_timestamptz (
33
i timestamptz
44
);
5-
INSERT INTO test_timestamptz VALUES
5+
INSERT INTO test_timestamptz VALUES
66
( '2004-10-26 03:55:08' ),
77
( '2004-10-26 04:55:08' ),
88
( '2004-10-26 05:55:08' ),

contrib/btree_gin/expected/timetz.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set enable_seqscan=off;
22
CREATE TABLE test_timetz (
33
i timetz
44
);
5-
INSERT INTO test_timetz VALUES
5+
INSERT INTO test_timetz VALUES
66
( '03:55:08 GMT+2' ),
77
( '04:55:08 GMT+2' ),
88
( '05:55:08 GMT+2' ),

contrib/btree_gin/sql/cidr.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_cidr (
44
i cidr
55
);
66

7-
INSERT INTO test_cidr VALUES
7+
INSERT INTO test_cidr VALUES
88
( '1.2.3.4' ),
99
( '1.2.4.4' ),
1010
( '1.2.5.4' ),

contrib/btree_gin/sql/date.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_date (
44
i date
55
);
66

7-
INSERT INTO test_date VALUES
7+
INSERT INTO test_date VALUES
88
( '2004-10-23' ),
99
( '2004-10-24' ),
1010
( '2004-10-25' ),

contrib/btree_gin/sql/inet.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_inet (
44
i inet
55
);
66

7-
INSERT INTO test_inet VALUES
7+
INSERT INTO test_inet VALUES
88
( '1.2.3.4/16' ),
99
( '1.2.4.4/16' ),
1010
( '1.2.5.4/16' ),

contrib/btree_gin/sql/interval.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_interval (
44
i interval
55
);
66

7-
INSERT INTO test_interval VALUES
7+
INSERT INTO test_interval VALUES
88
( '03:55:08' ),
99
( '04:55:08' ),
1010
( '05:55:08' ),

contrib/btree_gin/sql/macaddr.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_macaddr (
44
i macaddr
55
);
66

7-
INSERT INTO test_macaddr VALUES
7+
INSERT INTO test_macaddr VALUES
88
( '22:00:5c:03:55:08' ),
99
( '22:00:5c:04:55:08' ),
1010
( '22:00:5c:05:55:08' ),

contrib/btree_gin/sql/time.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_time (
44
i time
55
);
66

7-
INSERT INTO test_time VALUES
7+
INSERT INTO test_time VALUES
88
( '03:55:08' ),
99
( '04:55:08' ),
1010
( '05:55:08' ),

contrib/btree_gin/sql/timestamp.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_timestamp (
44
i timestamp
55
);
66

7-
INSERT INTO test_timestamp VALUES
7+
INSERT INTO test_timestamp VALUES
88
( '2004-10-26 03:55:08' ),
99
( '2004-10-26 04:55:08' ),
1010
( '2004-10-26 05:55:08' ),

contrib/btree_gin/sql/timestamptz.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_timestamptz (
44
i timestamptz
55
);
66

7-
INSERT INTO test_timestamptz VALUES
7+
INSERT INTO test_timestamptz VALUES
88
( '2004-10-26 03:55:08' ),
99
( '2004-10-26 04:55:08' ),
1010
( '2004-10-26 05:55:08' ),

contrib/btree_gin/sql/timetz.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE TABLE test_timetz (
44
i timetz
55
);
66

7-
INSERT INTO test_timetz VALUES
7+
INSERT INTO test_timetz VALUES
88
( '03:55:08 GMT+2' ),
99
( '04:55:08 GMT+2' ),
1010
( '05:55:08 GMT+2' ),

0 commit comments

Comments
 (0)