Skip to content

Commit

Permalink
test: fix merge skew
Browse files Browse the repository at this point in the history
  • Loading branch information
benesch committed Feb 20, 2020
1 parent e779e7e commit 596335e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/testdrive/dependencies.td
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,10 @@ materialize.public.s3 materialize.public.s3_primary_idx y <null>
> DROP SOURCE s3;

! DROP SOURCE s3;
catalog item 's3' does not exist
unknown catalog item 's3'

! DROP INDEX j1;
catalog item 'j1' does not exist
unknown catalog item 'j1'

# Test cascade deletes all indexes associated with cascaded sources and views

Expand Down Expand Up @@ -305,16 +305,16 @@ materialize.public.w materialize.public.j3 z <null>
> DROP SOURCE s4 CASCADE;

! DROP VIEW w;
catalog item 'w' does not exist
unknown catalog item 'w'

! DROP INDEX j3;
catalog item 'j3' does not exist
unknown catalog item 'j3'

! DROP SOURCE s4;
catalog item 's4' does not exist
unknown catalog item 's4'

! DROP INDEX j2;
catalog item 'j2' does not exist
unknown catalog item 'j2'

# Test that dropping indexes even with cascade does not cause the underlying source to be dropped

Expand Down

0 comments on commit 596335e

Please sign in to comment.