Remove unnecessary checkpoint from PL regression tests. This was once

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.
REL8_3_STABLE
Tom Lane 19 years ago
parent 74a1a2b8b1
commit 28c480e9ae
  1. 5
      src/pl/plperl/expected/plperl.out
  2. 6
      src/pl/plperl/sql/plperl.sql
  3. 5
      src/pl/tcl/expected/pltcl_setup.out
  4. 6
      src/pl/tcl/sql/pltcl_setup.sql

@ -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 $$

@ -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
--

@ -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

@ -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
--

Loading…
Cancel
Save