Skip to content
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions go/base/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ func (this *MigrationContext) ReadConfigFile() error {
return nil
}

// getGhostTriggerName generates the name of a ghost trigger, based on original trigger name
// GetGhostTriggerName generates the name of a ghost trigger, based on original trigger name
// or a given trigger name
func (this *MigrationContext) GetGhostTriggerName(triggerName string) string {
if this.RemoveTriggerSuffix && strings.HasSuffix(triggerName, this.TriggerSuffix) {
Expand All @@ -941,7 +941,7 @@ func (this *MigrationContext) GetGhostTriggerName(triggerName string) string {
return triggerName + this.TriggerSuffix
}

// validateGhostTriggerLength check if the ghost trigger name length is not more than 64 characters
// ValidateGhostTriggerLengthBelowMaxLength check if the ghost trigger name length is not more than 64 characters
func (this *MigrationContext) ValidateGhostTriggerLengthBelowMaxLength(triggerName string) bool {
ghostTriggerName := this.GetGhostTriggerName(triggerName)

Expand Down