提交 c82055c8 编写于 作者: M Marbin Tan

Fix backup behave test for user defined types (#664)

We were using "complex" as a user defined type, which is no longer the
case once #605 was checked in.
上级 052a2984
......@@ -34,10 +34,10 @@ Distributed by: (a)
before_heap_ins_trig | 7
(1 row)
List of data types
Schema | Name | Description
--------+---------+-------------
public | complex |
List of data types
Schema | Name | Description
--------+-------------------+-------------
public | user_defined_type |
(1 row)
List of operators
......
......@@ -18,7 +18,7 @@ CREATE TRIGGER before_heap_ins_trig BEFORE INSERT ON heap_table
FOR EACH ROW EXECUTE PROCEDURE trigger_func();
-- Create a user-defined type
CREATE TYPE complex AS (r real, i real);
CREATE TYPE user_defined_type AS (r real, i real);
-- Create aggregate functions
CREATE AGGREGATE newcnt ("any") (
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册