citus/src/test/regress/expected/issue_5099.out

17 lines
467 B
Plaintext

CREATE SCHEMA issue_5099;
SET search_path to 'issue_5099';
CREATE TYPE comp_type AS (
int_field_1 BIGINT,
int_field_2 BIGINT
);
CREATE TABLE range_dist_table_2 (dist_col comp_type);
SELECT create_distributed_table('range_dist_table_2', 'dist_col', 'range');
create_distributed_table
---------------------------------------------------------------------
(1 row)
\set VERBOSITY TERSE
DROP SCHEMA issue_5099 CASCADE;
NOTICE: drop cascades to 2 other objects