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:37:12 UTC

[pulsar] branch postgres4 updated (0cf9a22 -> a99ce46)

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

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


 discard 0cf9a22  Fix Postgres debezium test
    omit 32a46c4  Add ping util to Docker file
     new a99ce46  Fix Postgres debezium test

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0cf9a22)
            \
             N -- N -- N   refs/heads/postgres4 (a99ce46)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/pulsar/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[pulsar] 01/01: Fix Postgres debezium test

Posted by aa...@apache.org.
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 a99ce46d272c12641aee6fef71b965d37654b6cb
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);
     }