Skip to content

Commit

Permalink
change error msg of import schema
Browse files Browse the repository at this point in the history
  • Loading branch information
priyanshi-yb committed Feb 12, 2025
1 parent 8867d54 commit 634dacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yb-voyager/cmd/importSchema.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 634dacb

Please sign in to comment.