Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
re-ordered temporal config
  • Loading branch information
Dermot Smyth authored and Dermot Smyth committed Mar 3, 2017
commit 160149dab35a18181107f8731797fdf2711c5a58
Original file line number Diff line number Diff line change
Expand Up @@ -140,18 +140,19 @@ public Map<String, List<Command>> buildCommandMap() {
taskCommands.add(new DeployScheduledTasksCommand());
map.put("mlTaskCommands", taskCommands);

// Triggers
List<Command> triggerCommands = new ArrayList<Command>();
triggerCommands.add(new DeployTriggersCommand());
map.put("mlTriggerCommands", triggerCommands);

// Temporal
List<Command> temporalCommands = new ArrayList<>();
temporalCommands.add(new DeployTemporalAxesCommand());
temporalCommands.add(new DeployTemporalCollectionsCommand())
;
temporalCommands.add(new DeployTemporalCollectionsLSQTCommand())
;
map.put("mlTemporalCommands", temporalCommands);

// Triggers
List<Command> triggerCommands = new ArrayList<Command>();
triggerCommands.add(new DeployTriggersCommand());
map.put("mlTriggerCommands", triggerCommands);


// SQL Views
List<Command> viewCommands = new ArrayList<Command>();
viewCommands.add(new DeployViewSchemasCommand());
Expand Down