Skip to content

Commit 99058cf

Browse files
committed
Remove tabs after spaces in C comments
This was not changed in HEAD, but will be done later as part of a pgindent run. Future pgindent runs will also do this. Report by Tom Lane Backpatch through all supported branches, but not HEAD
1 parent 3ada1fa commit 99058cf

File tree

561 files changed

+2793
-2793
lines changed

Some content is hidden

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

561 files changed

+2793
-2793
lines changed

contrib/btree_gist/btree_interval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ intr2num(const Interval *i)
8282

8383
/*
8484
* INTERVALSIZE should be the actual size-on-disk of an Interval, as shown
85-
* in pg_type. This might be less than sizeof(Interval) if the compiler
85+
* in pg_type. This might be less than sizeof(Interval) if the compiler
8686
* insists on adding alignment padding at the end of the struct.
8787
*/
8888
#define INTERVALSIZE 16

contrib/cube/cube.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ g_cube_picksplit(PG_FUNCTION_ARGS)
564564
rt_cube_size(datum_r, &size_r);
565565

566566
/*
567-
* Now split up the regions between the two seeds. An important property
567+
* Now split up the regions between the two seeds. An important property
568568
* of this split algorithm is that the split vector v has the indices of
569569
* items to be split in order in its left and right vectors. We exploit
570570
* this property by doing a merge in the code that actually splits the
@@ -580,7 +580,7 @@ g_cube_picksplit(PG_FUNCTION_ARGS)
580580
{
581581
/*
582582
* If we've already decided where to place this item, just put it on
583-
* the right list. Otherwise, we need to figure out which page needs
583+
* the right list. Otherwise, we need to figure out which page needs
584584
* the least enlargement in order to store the item.
585585
*/
586586

contrib/dblink/dblink.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ dblink_fetch(PG_FUNCTION_ARGS)
636636
"the specified FROM clause rowtype")));
637637

638638
/*
639-
* fast track when no results. We could exit earlier, but then we'd
639+
* fast track when no results. We could exit earlier, but then we'd
640640
* not report error if the result tuple type is wrong.
641641
*/
642642
if (funcctx->max_calls < 1)
@@ -2257,7 +2257,7 @@ dblink_security_check(PGconn *conn, remoteConn *rconn)
22572257
}
22582258

22592259
/*
2260-
* For non-superusers, insist that the connstr specify a password. This
2260+
* For non-superusers, insist that the connstr specify a password. This
22612261
* prevents a password from being picked up from .pgpass, a service file,
22622262
* the environment, etc. We don't want the postgres user's passwords
22632263
* to be accessible to non-superusers.

contrib/earthdistance/earthdistance.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ geo_distance_internal(Point *pt1, Point *pt2)
9191
* distance between the points in miles on earth's surface
9292
*
9393
* If float8 is passed-by-value, the oldstyle version-0 calling convention
94-
* is unportable, so we use version-1. However, if it's passed-by-reference,
94+
* is unportable, so we use version-1. However, if it's passed-by-reference,
9595
* continue to use oldstyle. This is just because we'd like earthdistance
9696
* to serve as a canary for any unintentional breakage of version-0 functions
9797
* with float8 results.

contrib/intarray/_int_gist.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ g_int_picksplit(PG_FUNCTION_ARGS)
487487
qsort((void *) costvector, maxoff, sizeof(SPLITCOST), comparecost);
488488

489489
/*
490-
* Now split up the regions between the two seeds. An important property
490+
* Now split up the regions between the two seeds. An important property
491491
* of this split algorithm is that the split vector v has the indices of
492492
* items to be split in order in its left and right vectors. We exploit
493493
* this property by doing a merge in the code that actually splits the
@@ -505,7 +505,7 @@ g_int_picksplit(PG_FUNCTION_ARGS)
505505

506506
/*
507507
* If we've already decided where to place this item, just put it on
508-
* the right list. Otherwise, we need to figure out which page needs
508+
* the right list. Otherwise, we need to figure out which page needs
509509
* the least enlargement in order to store the item.
510510
*/
511511

contrib/ltree/ltree_op.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ ltreeparentsel(PG_FUNCTION_ARGS)
612612
/*
613613
* If the histogram is large enough, see what fraction of it the
614614
* constant is "<@" to, and assume that's representative of the
615-
* non-MCV population. Otherwise use the default selectivity for the
615+
* non-MCV population. Otherwise use the default selectivity for the
616616
* non-MCV population.
617617
*/
618618
selec = histogram_selectivity(&vardata, &contproc,

contrib/oid2name/oid2name.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ sql_exec(PGconn *conn, const char *todo, bool quiet)
430430
}
431431

432432
/*
433-
* Dump all databases. There are no system objects to worry about.
433+
* Dump all databases. There are no system objects to worry about.
434434
*/
435435
void
436436
sql_exec_dumpalldbs(PGconn *conn, struct options * opts)

contrib/pg_stat_statements/pg_stat_statements.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ pgss_memsize(void)
791791
* caller must hold an exclusive lock on pgss->lock
792792
*
793793
* Note: despite needing exclusive lock, it's not an error for the target
794-
* entry to already exist. This is because pgss_store releases and
794+
* entry to already exist. This is because pgss_store releases and
795795
* reacquires lock after failing to find a match; so someone else could
796796
* have made the entry while we waited to get exclusive lock.
797797
*/

contrib/pgcrypto/crypt-des.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3030
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3131
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32-
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
32+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3333
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3434
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3535
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)

contrib/pgcrypto/crypt-gensalt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* entirely in crypt_blowfish.c.
1010
*
1111
* Put bcrypt generator also here as crypt-blowfish.c
12-
* may not be compiled always. -- marko
12+
* may not be compiled always. -- marko
1313
*/
1414

1515
#include "postgres.h"

0 commit comments

Comments
 (0)