Document failing tests for issue 5099

pull/5372/head
Hanefi Onaldi 2021-11-10 17:10:07 +03:00
parent a3cc9b4e53
commit e6160ad131
No known key found for this signature in database
GPG Key ID: F18CDB10BA0DFDC7
3 changed files with 29 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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;