From 1a5bbef70b737b6e325ee3c859f4f39ed3297549 Mon Sep 17 00:00:00 2001 From: Tomasz Cebula Date: Tue, 29 Jul 2025 22:50:34 +0200 Subject: [PATCH] Correct the display name of the catalog.pattern config property --- .../connect/jdbc/source/JdbcSourceConnectorConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/confluent/connect/jdbc/source/JdbcSourceConnectorConfig.java b/src/main/java/io/confluent/connect/jdbc/source/JdbcSourceConnectorConfig.java index e5b3d32a0..f53dacffb 100644 --- a/src/main/java/io/confluent/connect/jdbc/source/JdbcSourceConnectorConfig.java +++ b/src/main/java/io/confluent/connect/jdbc/source/JdbcSourceConnectorConfig.java @@ -266,7 +266,7 @@ public class JdbcSourceConnectorConfig extends AbstractConfig { + " * ``\"\"`` retrieves those without a catalog \n" + " * null (default) indicates that the schema name is not used to narrow the search and " + "that all table metadata is fetched, regardless of the catalog."; - private static final String CATALOG_PATTERN_DISPLAY = "Schema pattern"; + private static final String CATALOG_PATTERN_DISPLAY = "Catalog pattern"; public static final String CATALOG_PATTERN_DEFAULT = null; public static final String QUERY_CONFIG = "query";