Skip to content

Commit

Permalink
removed Unused method receiver2
Browse files Browse the repository at this point in the history
  • Loading branch information
shasw94 committed May 7, 2023
1 parent b548003 commit e7cad4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/db/postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ func (*Postgresql) Name() string {
}

// GetDelimiter implements the method Connection.GetDelimiter.
func (db *Postgresql) GetDelimiter() string {
func (*Postgresql) GetDelimiter() string {
return `"`
}

// GetDelimiter2 implements the method Connection.GetDelimiter2.
func (db *Postgresql) GetDelimiter2() string {
func (*Postgresql) GetDelimiter2() string {
return `"`
}

// GetDelimiters implements the method Connection.GetDelimiters.
func (db *Postgresql) GetDelimiters() []string {
func (*Postgresql) GetDelimiters() []string {
return []string{`"`, `"`}
}

Expand Down

0 comments on commit e7cad4c

Please sign in to comment.