We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf79d7b commit d38f6f2Copy full SHA for d38f6f2
marklogic-data-hub/src/main/java/com/marklogic/hub/DataHub.java
@@ -442,7 +442,9 @@ private List<Command> getCommands(AppConfig config) {
442
443
// SQL Views
444
List<Command> viewCommands = new ArrayList<>();
445
- viewCommands.add(new DeployViewSchemasCommand());
+ DeployViewSchemasCommand deployViewSchemasCommand = new DeployViewSchemasCommand();
446
+ deployViewSchemasCommand.setDatabaseIdOrName(hubConfig.finalDbName);
447
+ viewCommands.add(deployViewSchemasCommand);
448
commands.addAll(viewCommands);
449
450
return commands;
0 commit comments