]> gitweb.michael.orlitzky.com - mailshears.git/commitdiff
test/sql: set default_with_oids=false everywhere.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 15 Apr 2020 12:49:48 +0000 (08:49 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 15 Apr 2020 12:55:20 +0000 (08:55 -0400)
PostgreSQL 12.x no longer supports OIDs, and attempting to create
tables that support them is throwing an error:

  1) Error:
  TestRm#test_rm_domain:
  PG::FeatureNotSupported: ERROR:  tables declared WITH OIDS are not
  supported

This commit disables the OIDs-by-default, and should allow the test
suite to run under newer versions of PostgreSQL.

test/sql/postfixadmin.sql
test/sql/roundcube.sql

index f139a4f77680e61f7a9e69528c1b4761ad524405..9b6250102a2829cb1f1e78eea6b6f609fd808453 100644 (file)
@@ -89,7 +89,7 @@ ALTER FUNCTION public.merge_quota2() OWNER TO postgres;
 
 SET default_tablespace = '';
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: admin; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
@@ -160,7 +160,7 @@ ALTER TABLE public.alias_domain OWNER TO postgres;
 COMMENT ON TABLE alias_domain IS 'Postfix Admin - Domain Aliases';
 
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: config; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
@@ -371,7 +371,7 @@ CREATE TABLE quota2 (
 
 ALTER TABLE public.quota2 OWNER TO postgres;
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: vacation; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
index 36e0a6c8def9e3e73a9d8d6784b03e938036504c..2004ffae23b3c434b638c7d4ed0712d681051e7a 100644 (file)
@@ -26,7 +26,7 @@ SET search_path = public, pg_catalog;
 
 SET default_tablespace = '';
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: cache; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
@@ -145,7 +145,7 @@ CREATE SEQUENCE contactgroups_ids
 
 ALTER TABLE public.contactgroups_ids OWNER TO postgres;
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: contacts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
@@ -182,7 +182,7 @@ CREATE TABLE dictionary (
 
 ALTER TABLE public.dictionary OWNER TO postgres;
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: identities; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
@@ -251,7 +251,7 @@ CREATE TABLE searches (
 
 ALTER TABLE public.searches OWNER TO postgres;
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: session; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
@@ -296,7 +296,7 @@ CREATE SEQUENCE user_ids
 
 ALTER TABLE public.user_ids OWNER TO postgres;
 
-SET default_with_oids = true;
+SET default_with_oids = false;
 
 --
 -- Name: users; Type: TABLE; Schema: public; Owner: postgres; Tablespace: