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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 05b809ce5b fix #2907 - Postgres Bulk Loader throws class exception
     new 7d34997491 Merge pull request #2920 from sramazzina/SANDBOX-CLGROUP
05b809ce5b is described below

commit 05b809ce5bbe20e1efa2bf68f135306ba4bcb408
Author: sramazzina <[email protected]>
AuthorDate: Thu May 11 19:32:00 2023 +0200

    fix #2907 - Postgres Bulk Loader throws class exception
---
 .../org/apache/hop/databases/postgresql/PostgreSqlDatabaseMeta.java    | 2 +-
 .../apache/hop/pipeline/transforms/pgbulkloader/PGBulkLoaderMeta.java  | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/plugins/databases/postgresql/src/main/java/org/apache/hop/databases/postgresql/PostgreSqlDatabaseMeta.java
 
b/plugins/databases/postgresql/src/main/java/org/apache/hop/databases/postgresql/PostgreSqlDatabaseMeta.java
index 53c22da8c3..4d94027591 100644
--- 
a/plugins/databases/postgresql/src/main/java/org/apache/hop/databases/postgresql/PostgreSqlDatabaseMeta.java
+++ 
b/plugins/databases/postgresql/src/main/java/org/apache/hop/databases/postgresql/PostgreSqlDatabaseMeta.java
@@ -28,7 +28,7 @@ import org.apache.hop.core.row.IValueMeta;
 /**
  * Contains PostgreSQL specific information through static final members
  */
-@DatabaseMetaPlugin(type = "POSTGRESQL", typeDescription = "PostgreSQL", 
documentationUrl = "/database/databases/postgresql.html")
+@DatabaseMetaPlugin(type = "POSTGRESQL", typeDescription = "PostgreSQL", 
documentationUrl = "/database/databases/postgresql.html", classLoaderGroup = 
"postgres-db")
 @GuiPlugin(id = "GUI-PostgreSQLDatabaseMeta")
 public class PostgreSqlDatabaseMeta extends BaseDatabaseMeta implements 
IDatabase {
   private static final int GB_LIMIT = 1_073_741_824;
diff --git 
a/plugins/transforms/pgbulkloader/src/main/java/org/apache/hop/pipeline/transforms/pgbulkloader/PGBulkLoaderMeta.java
 
b/plugins/transforms/pgbulkloader/src/main/java/org/apache/hop/pipeline/transforms/pgbulkloader/PGBulkLoaderMeta.java
index 1d1090b45d..16f2acf313 100644
--- 
a/plugins/transforms/pgbulkloader/src/main/java/org/apache/hop/pipeline/transforms/pgbulkloader/PGBulkLoaderMeta.java
+++ 
b/plugins/transforms/pgbulkloader/src/main/java/org/apache/hop/pipeline/transforms/pgbulkloader/PGBulkLoaderMeta.java
@@ -50,7 +50,8 @@ import java.util.List;
     name = "i18n::PGBulkLoader.Name",
     categoryDescription = 
"i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Bulk",
     keywords = "i18n::PGBulkLoaderMeta.keyword",
-    documentationUrl = "/pipeline/transforms/postgresbulkloader.html")
+    documentationUrl = "/pipeline/transforms/postgresbulkloader.html",
+    classLoaderGroup = "postgres-db")
 public class PGBulkLoaderMeta extends BaseTransformMeta<PGBulkLoader, 
PGBulkLoaderData> implements
         IProvidesDatabaseConnectionInformation {
 

Reply via email to