Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c14d2ad

Browse filesBrowse files
committed
Additional mtm compatibility
1 parent b75fbe7 commit c14d2ad
Copy full SHA for c14d2ad

File tree

2 files changed

+4
-4
lines changed
Filter options

2 files changed

+4
-4
lines changed

‎expected/pathman_basic.out

Copy file name to clipboardExpand all lines: expected/pathman_basic.out
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ DROP TABLE test.num_range_rel CASCADE;
13121312
DROP TABLE test.range_rel CASCADE;
13131313
NOTICE: drop cascades to 10 other objects
13141314
/* Test attributes copying */
1315-
CREATE UNLOGGED TABLE test.range_rel (
1315+
CREATE TABLE test.range_rel (
13161316
id SERIAL PRIMARY KEY,
13171317
dt DATE NOT NULL)
13181318
WITH (fillfactor = 70);
@@ -1328,13 +1328,13 @@ SELECT pathman.create_range_partitions('test.range_rel', 'dt',
13281328
SELECT reloptions, relpersistence FROM pg_class WHERE oid='test.range_rel'::REGCLASS;
13291329
reloptions | relpersistence
13301330
-----------------+----------------
1331-
{fillfactor=70} | u
1331+
{fillfactor=70} | p
13321332
(1 row)
13331333

13341334
SELECT reloptions, relpersistence FROM pg_class WHERE oid='test.range_rel_1'::REGCLASS;
13351335
reloptions | relpersistence
13361336
-----------------+----------------
1337-
{fillfactor=70} | u
1337+
{fillfactor=70} | p
13381338
(1 row)
13391339

13401340
DROP TABLE test.range_rel CASCADE;

‎sql/pathman_basic.sql

Copy file name to clipboardExpand all lines: sql/pathman_basic.sql
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ DROP TABLE test.num_range_rel CASCADE;
380380
DROP TABLE test.range_rel CASCADE;
381381

382382
/* Test attributes copying */
383-
CREATE UNLOGGED TABLE test.range_rel (
383+
CREATE TABLE test.range_rel (
384384
id SERIAL PRIMARY KEY,
385385
dt DATE NOT NULL)
386386
WITH (fillfactor = 70);

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.