]> granicus.if.org Git - postgresql/commitdiff
Remove unnecessary checkpoint from PL regression tests. This was once
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 28 Jan 2007 21:17:32 +0000 (21:17 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 28 Jan 2007 21:17:32 +0000 (21:17 +0000)
handy to prevent core dump files from disappearing, but it's useless now
because (a) we don't drop core in individual DB subdirectories anymore,
and (b) CREATE DATABASE forces an internal checkpoint anyway.

src/pl/plperl/expected/plperl.out
src/pl/plperl/sql/plperl.sql
src/pl/tcl/expected/pltcl_setup.out
src/pl/tcl/sql/pltcl_setup.sql

index 7658f36c25d584b813ae1b0320fd0248966bf2e2..d7914124104de912a32627b74e1aed0d90271cc7 100644 (file)
@@ -1,9 +1,4 @@
 --
--- checkpoint so that if we have a crash in the tests, replay of the
--- just-completed CREATE DATABASE won't discard the core dump file
---
-checkpoint;
---
 -- Test result value processing
 --
 CREATE OR REPLACE FUNCTION perl_int(int) RETURNS INTEGER AS $$
@@ -428,7 +423,7 @@ CREATE OR REPLACE FUNCTION  array_of_text() RETURNS TEXT[][]
 LANGUAGE plperl as $$ 
     return [['a"b',undef,'c,d'],['e\\f',undef,'g']]; 
 $$;
-SELECT array_of_text(); 
+SELECT array_of_text();
              array_of_text             
 ---------------------------------------
  {{"a\"b",NULL,"c,d"},{"e\\f",NULL,g}}
index 4d4348a1f6af5872475c62e77b0a9b8e64b8bafb..df17834952f2d406e3b9591607188d745c5e6333 100644 (file)
@@ -1,9 +1,3 @@
---
--- checkpoint so that if we have a crash in the tests, replay of the
--- just-completed CREATE DATABASE won't discard the core dump file
---
-checkpoint;
-
 --
 -- Test result value processing
 --
index ce45aec530ddf7e923f1d7e6c9863621a3857297..496cf228dc0e06cc48a90ece531bb7476168326f 100644 (file)
@@ -1,9 +1,4 @@
 --
--- checkpoint so that if we have a crash in the tests, replay of the
--- just-completed CREATE DATABASE won't discard the core dump file
---
-checkpoint;
---
 -- Create the tables used in the test queries
 --
 -- T_pkey1 is the primary key table for T_dta1. Entries from T_pkey1
index b88ebbcffe3f0b0daa44ba35c3affac6cabe840b..55ac7e20d55ec91467415ad36553c8622f32f616 100644 (file)
@@ -1,9 +1,3 @@
---
--- checkpoint so that if we have a crash in the tests, replay of the
--- just-completed CREATE DATABASE won't discard the core dump file
---
-checkpoint;
-
 --
 -- Create the tables used in the test queries
 --