From: Michael Orlitzky Date: Wed, 15 Apr 2020 12:49:48 +0000 (-0400) Subject: test/sql: set default_with_oids=false everywhere. X-Git-Tag: 0.0.4~3 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=905ae8ab18c0422229246b39c6318775477cf6ae;hp=905ae8ab18c0422229246b39c6318775477cf6ae;p=mailshears.git test/sql: set default_with_oids=false everywhere. 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. ---