diff --git a/test/expected/custom_type.out b/test/expected/custom_type.out index fc2ce37e92b..10fe457918d 100644 --- a/test/expected/custom_type.out +++ b/test/expected/custom_type.out @@ -23,10 +23,7 @@ CREATE TYPE customtype ( OUTPUT = customtype_out, RECEIVE = customtype_recv, SEND = customtype_send, - INTERNALLENGTH = 8, - PASSEDBYVALUE, - ALIGNMENT = double, - STORAGE = plain + LIKE = TIMESTAMPTZ ); CREATE CAST (customtype AS bigint) WITHOUT FUNCTION AS ASSIGNMENT; diff --git a/test/sql/custom_type.sql b/test/sql/custom_type.sql index 6e735ab1977..d4a1148f27a 100644 --- a/test/sql/custom_type.sql +++ b/test/sql/custom_type.sql @@ -23,10 +23,7 @@ CREATE TYPE customtype ( OUTPUT = customtype_out, RECEIVE = customtype_recv, SEND = customtype_send, - INTERNALLENGTH = 8, - PASSEDBYVALUE, - ALIGNMENT = double, - STORAGE = plain + LIKE = TIMESTAMPTZ ); CREATE CAST (customtype AS bigint)