You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by aa...@apache.org on 2019/09/10 01:36:41 UTC

[pulsar] 01/01: Fix Postgres debezium test

This is an automated email from the ASF dual-hosted git repository.

aahmed pushed a commit to branch postgres4
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit 0cf9a22047978a87822eaece84bea5a3233f2b75
Author: Ali Ahmed <al...@gmail.com>
AuthorDate: Mon Sep 9 18:35:56 2019 -0700

    Fix Postgres debezium test
    
    Remove meteadata tables for cdc test
---
 .../pulsar/tests/integration/io/DebeziumPostgresqlSourceTester.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/integration/src/test/java/org/apache/pulsar/tests/integration/io/DebeziumPostgresqlSourceTester.java b/tests/integration/src/test/java/org/apache/pulsar/tests/integration/io/DebeziumPostgresqlSourceTester.java
index 893eca4..e95db22 100644
--- a/tests/integration/src/test/java/org/apache/pulsar/tests/integration/io/DebeziumPostgresqlSourceTester.java
+++ b/tests/integration/src/test/java/org/apache/pulsar/tests/integration/io/DebeziumPostgresqlSourceTester.java
@@ -66,6 +66,7 @@ public class DebeziumPostgresqlSourceTester extends SourceTester<DebeziumPostgre
         sourceConfig.put("database.server.name", "dbserver1");
         sourceConfig.put("database.dbname", "postgres");
         sourceConfig.put("schema.whitelist", "inventory");
+        sourceConfig.put("table.blacklist", "inventory.spatial_ref_sys,inventory.geom");
         sourceConfig.put("pulsar.service.url", pulsarServiceUrl);
     }