Merge pull request #832 from citusdata/bugfix/remove_eventinvoke_trigger

Remove EventInvokeTrigger from regression test output
pull/1938/head
Marco Slot 2016-10-03 20:26:19 +02:00 committed by GitHub
commit 5c5f7d4478
2 changed files with 3 additions and 7 deletions

View File

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

View File

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