Skip to content

Commit

Permalink
Remove unnecessary regresstion tests code
Browse files Browse the repository at this point in the history
Remove CREATE LANGUAGE plpgsql from the regression tests, because it's useless these days.
  • Loading branch information
MoonInsung committed Feb 28, 2019
1 parent 8da8454 commit af2dc40
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion bin/expected/init.out
@@ -1,6 +1,5 @@
SET client_min_messages = warning;
\set ECHO none
CREATE LANGUAGE 'plpgsql';
RESET client_min_messages;
CREATE TABLE customer (
c_id int4 NOT NULL,
Expand Down
1 change: 0 additions & 1 deletion bin/expected/init_1.out
@@ -1,6 +1,5 @@
SET client_min_messages = warning;
\set ECHO none
CREATE LANGUAGE 'plpgsql';
RESET client_min_messages;
CREATE TABLE customer (
c_id int4 NOT NULL,
Expand Down
1 change: 0 additions & 1 deletion bin/expected/init_2.out
@@ -1,6 +1,5 @@
SET client_min_messages = warning;
\set ECHO none
CREATE LANGUAGE 'plpgsql';
RESET client_min_messages;
CREATE TABLE customer (
c_id int4 NOT NULL,
Expand Down
1 change: 0 additions & 1 deletion bin/sql/init-extension.sql
Expand Up @@ -5,7 +5,6 @@ DROP DATABASE IF EXISTS contrib_regression_sqlascii;
DROP DATABASE IF EXISTS contrib_regression_utf8;
SET client_min_messages = fatal;
\set ECHO all
CREATE LANGUAGE 'plpgsql';
RESET client_min_messages;

CREATE TABLE customer (
Expand Down
1 change: 0 additions & 1 deletion bin/sql/init-legacy.sql
Expand Up @@ -5,7 +5,6 @@ DROP DATABASE IF EXISTS contrib_regression_sqlascii;
DROP DATABASE IF EXISTS contrib_regression_utf8;
SET client_min_messages = fatal;
\set ECHO all
CREATE LANGUAGE 'plpgsql';
RESET client_min_messages;

CREATE TABLE customer (
Expand Down

0 comments on commit af2dc40

Please sign in to comment.