Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e6dc503

Browse files
committed
Fix whitespace
1 parent 0563b4c commit e6dc503

File tree

7 files changed

+1
-8
lines changed

7 files changed

+1
-8
lines changed

contrib/tsm_system_rows/tsm_system_rows--1.0.sql

-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ INSERT INTO pg_tablesample_method VALUES('system_rows', false, true,
4242
'tsm_system_rows_init', 'tsm_system_rows_nextblock',
4343
'tsm_system_rows_nexttuple', 'tsm_system_rows_examinetuple',
4444
'tsm_system_rows_end', 'tsm_system_rows_reset', 'tsm_system_rows_cost');
45-

contrib/tsm_system_time/tsm_system_time--1.0.sql

-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,3 @@ INSERT INTO pg_tablesample_method VALUES('system_time', false, true,
3737
'tsm_system_time_init', 'tsm_system_time_nextblock',
3838
'tsm_system_time_nexttuple', '-', 'tsm_system_time_end',
3939
'tsm_system_time_reset', 'tsm_system_time_cost');
40-

src/backend/access/transam/multixact.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2860,7 +2860,7 @@ TruncateMultiXact(void)
28602860
SimpleLruTruncate(MultiXactOffsetCtl,
28612861
MultiXactIdToOffsetPage(oldestMXact));
28622862

2863-
2863+
28642864
/*
28652865
* Now, and only now, we can advance the stop point for multixact members.
28662866
* If we did it any sooner, the segments we deleted above might already

src/test/modules/test_ddl_deparse/sql/alter_sequence.sql

-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,3 @@ ALTER SEQUENCE fkey_table_seq
1313

1414
ALTER SEQUENCE fkey_table_seq_renamed
1515
SET SCHEMA foo;
16-
17-

src/test/modules/test_ddl_deparse/sql/create_extension.sql

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
---
44

55
CREATE EXTENSION pg_stat_statements;
6-

src/test/modules/test_ddl_deparse/sql/create_sequence_1.sql

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ CREATE SEQUENCE fkey_table_seq
99
START 10
1010
CACHE 10
1111
CYCLE;
12-

src/test/modules/test_ddl_deparse/sql/opfamily.sql

-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,3 @@ create operator =(procedure = same, leftarg = ctype, rightarg = ctype);
5050
create operator class ctype_hash_ops
5151
default for type ctype using hash as
5252
operator 1 =(ctype, ctype);
53-

0 commit comments

Comments
 (0)