Skip to content

Commit 7786af4

Browse files
committed
Fix some inconsistent whitespace in Perl file
1 parent 35bc310 commit 7786af4

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

src/test/modules/test_pg_dump/t/001_base.pl

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -387,14 +387,14 @@
387387
388388
'CREATE SEQUENCE regress_pg_dump_table_col1_seq' => {
389389
regexp => qr/^
390-
\QCREATE SEQUENCE public.regress_pg_dump_table_col1_seq\E
391-
\n\s+\QAS integer\E
392-
\n\s+\QSTART WITH 1\E
393-
\n\s+\QINCREMENT BY 1\E
394-
\n\s+\QNO MINVALUE\E
395-
\n\s+\QNO MAXVALUE\E
396-
\n\s+\QCACHE 1;\E
397-
\n/xm,
390+
\QCREATE SEQUENCE public.regress_pg_dump_table_col1_seq\E
391+
\n\s+\QAS integer\E
392+
\n\s+\QSTART WITH 1\E
393+
\n\s+\QINCREMENT BY 1\E
394+
\n\s+\QNO MINVALUE\E
395+
\n\s+\QNO MAXVALUE\E
396+
\n\s+\QCACHE 1;\E
397+
\n/xm,
398398
like => { binary_upgrade => 1, },
399399
},
400400
@@ -412,13 +412,13 @@
412412
413413
'CREATE SEQUENCE regress_pg_dump_seq' => {
414414
regexp => qr/^
415-
\QCREATE SEQUENCE public.regress_pg_dump_seq\E
416-
\n\s+\QSTART WITH 1\E
417-
\n\s+\QINCREMENT BY 1\E
418-
\n\s+\QNO MINVALUE\E
419-
\n\s+\QNO MAXVALUE\E
420-
\n\s+\QCACHE 1;\E
421-
\n/xm,
415+
\QCREATE SEQUENCE public.regress_pg_dump_seq\E
416+
\n\s+\QSTART WITH 1\E
417+
\n\s+\QINCREMENT BY 1\E
418+
\n\s+\QNO MINVALUE\E
419+
\n\s+\QNO MAXVALUE\E
420+
\n\s+\QCACHE 1;\E
421+
\n/xm,
422422
like => { binary_upgrade => 1, },
423423
},
424424
@@ -642,13 +642,13 @@
642642
643643
'CREATE SEQUENCE regress_pg_dump_schema.test_seq' => {
644644
regexp => qr/^
645-
\QCREATE SEQUENCE regress_pg_dump_schema.test_seq\E
646-
\n\s+\QSTART WITH 1\E
647-
\n\s+\QINCREMENT BY 1\E
648-
\n\s+\QNO MINVALUE\E
649-
\n\s+\QNO MAXVALUE\E
650-
\n\s+\QCACHE 1;\E
651-
\n/xm,
645+
\QCREATE SEQUENCE regress_pg_dump_schema.test_seq\E
646+
\n\s+\QSTART WITH 1\E
647+
\n\s+\QINCREMENT BY 1\E
648+
\n\s+\QNO MINVALUE\E
649+
\n\s+\QNO MAXVALUE\E
650+
\n\s+\QCACHE 1;\E
651+
\n/xm,
652652
like => { binary_upgrade => 1, },
653653
},
654654
@@ -663,9 +663,9 @@
663663
664664
'CREATE TYPE regress_pg_dump_schema.test_type' => {
665665
regexp => qr/^
666-
\QCREATE TYPE regress_pg_dump_schema.test_type AS (\E
667-
\n\s+\Qcol1 integer\E
668-
\n\);\n/xm,
666+
\QCREATE TYPE regress_pg_dump_schema.test_type AS (\E
667+
\n\s+\Qcol1 integer\E
668+
\n\);\n/xm,
669669
like => { binary_upgrade => 1, },
670670
},
671671
@@ -680,9 +680,9 @@
680680
681681
'CREATE FUNCTION regress_pg_dump_schema.test_func' => {
682682
regexp => qr/^
683-
\QCREATE FUNCTION regress_pg_dump_schema.test_func() RETURNS integer\E
684-
\n\s+\QLANGUAGE sql\E
685-
\n/xm,
683+
\QCREATE FUNCTION regress_pg_dump_schema.test_func() RETURNS integer\E
684+
\n\s+\QLANGUAGE sql\E
685+
\n/xm,
686686
like => { binary_upgrade => 1, },
687687
},
688688
@@ -697,10 +697,10 @@
697697
698698
'CREATE AGGREGATE regress_pg_dump_schema.test_agg' => {
699699
regexp => qr/^
700-
\QCREATE AGGREGATE regress_pg_dump_schema.test_agg(smallint) (\E
701-
\n\s+\QSFUNC = int2_sum,\E
702-
\n\s+\QSTYPE = bigint\E
703-
\n\);\n/xm,
700+
\QCREATE AGGREGATE regress_pg_dump_schema.test_agg(smallint) (\E
701+
\n\s+\QSFUNC = int2_sum,\E
702+
\n\s+\QSTYPE = bigint\E
703+
\n\);\n/xm,
704704
like => { binary_upgrade => 1, },
705705
},
706706

0 commit comments

Comments
 (0)