mirror of https://github.com/citusdata/citus.git
Remove EventInvokeTrigger from regression test output
parent
3d1e2c1d3a
commit
fc93974238
|
@ -1793,11 +1793,6 @@ SELECT * FROM mv_articles_hash;
|
|||
41 | 1 | aznavour | 11814
|
||||
(5 rows)
|
||||
|
||||
DROP MATERIALIZED VIEW mv_articles_hash;
|
||||
DEBUG: drop auto-cascades to type mv_articles_hash
|
||||
DEBUG: drop auto-cascades to type mv_articles_hash[]
|
||||
DEBUG: drop auto-cascades to rule _RETURN on materialized view mv_articles_hash
|
||||
DEBUG: EventTriggerInvoke 16761
|
||||
CREATE MATERIALIZED VIEW mv_articles_hash_error AS
|
||||
SELECT * FROM articles_hash WHERE author_id in (1,2);
|
||||
NOTICE: cannot use shard pruning with ANY/ALL (array expression)
|
||||
|
@ -1844,6 +1839,7 @@ DEBUG: predicate pruning for shardId 840001
|
|||
SET client_min_messages to 'NOTICE';
|
||||
DROP FUNCTION author_articles_max_id();
|
||||
DROP FUNCTION author_articles_id_word_count();
|
||||
DROP MATERIALIZED VIEW mv_articles_hash;
|
||||
DROP TABLE articles_hash;
|
||||
DROP TABLE articles_single_shard_hash;
|
||||
DROP TABLE authors_hash;
|
||||
|
|
|
@ -768,8 +768,6 @@ CREATE MATERIALIZED VIEW mv_articles_hash AS
|
|||
|
||||
SELECT * FROM mv_articles_hash;
|
||||
|
||||
DROP MATERIALIZED VIEW mv_articles_hash;
|
||||
|
||||
CREATE MATERIALIZED VIEW mv_articles_hash_error AS
|
||||
SELECT * FROM articles_hash WHERE author_id in (1,2);
|
||||
|
||||
|
@ -793,6 +791,8 @@ SET client_min_messages to 'NOTICE';
|
|||
DROP FUNCTION author_articles_max_id();
|
||||
DROP FUNCTION author_articles_id_word_count();
|
||||
|
||||
DROP MATERIALIZED VIEW mv_articles_hash;
|
||||
|
||||
DROP TABLE articles_hash;
|
||||
DROP TABLE articles_single_shard_hash;
|
||||
DROP TABLE authors_hash;
|
||||
|
|
Loading…
Reference in New Issue