mirror of https://github.com/citusdata/citus.git
Document failing tests for issue 5099
parent
a3cc9b4e53
commit
e6160ad131
|
@ -0,0 +1,17 @@
|
|||
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
|
||||
ERROR: cache lookup failed for type 17048
|
|
@ -95,7 +95,7 @@ test: multi_dropped_column_aliases foreign_key_restriction_enforcement
|
|||
test: binary_protocol
|
||||
test: alter_table_set_access_method
|
||||
test: alter_distributed_table
|
||||
test: issue_5248
|
||||
test: issue_5248 issue_5099
|
||||
test: object_propagation_debug
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
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');
|
||||
\set VERBOSITY TERSE
|
||||
DROP SCHEMA issue_5099 CASCADE;
|
Loading…
Reference in New Issue