From 634dacb8523b1ff6605e413555febf3448d3c30a Mon Sep 17 00:00:00 2001 From: priyanshi-yb Date: Wed, 12 Feb 2025 20:35:03 +0530 Subject: [PATCH] change error msg of import schema --- yb-voyager/cmd/importSchema.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yb-voyager/cmd/importSchema.go b/yb-voyager/cmd/importSchema.go index 2a8c6b8061..dd6004eec0 100644 --- a/yb-voyager/cmd/importSchema.go +++ b/yb-voyager/cmd/importSchema.go @@ -198,7 +198,7 @@ func importSchema() error { skipFn := isSkipStatement err = importSchemaInternal(exportDir, objectList, skipFn) if err != nil { - return fmt.Errorf("failed to import schema for objects %s: %s", objectList, err) // object list is the static list of object types + return fmt.Errorf("failed to import schema for various objects: %s", err) // object list is the static list of object types } // Import the skipped ALTER TABLE statements from sequence.sql and table.sql if it exists