Skip to content

Commit

Permalink
0004866: Expandable trigger support for trigger names
Browse files Browse the repository at this point in the history
  • Loading branch information
joshhicks committed Mar 2, 2021
1 parent e62974a commit 8406954
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -1971,6 +1971,8 @@ public String getTriggerName(DataEventType dml, int maxTriggerNameLength, Trigge
String triggerSuffix2 = FormatUtils.replaceCharsToShortenName(trigger.getTriggerId());
if (trigger.isSourceTableNameWildCarded()) {
triggerSuffix2 = FormatUtils.replaceCharsToShortenName(table.getName());
} else if (trigger.isSourceTableNameExpanded()) {
triggerSuffix2 = FormatUtils.replaceCharsToShortenName(table.getName());
}
String triggerSuffix3 = FormatUtils.replaceCharsToShortenName("_"
+ parameterService.getNodeGroupId());
Expand Down

0 comments on commit 8406954

Please sign in to comment.