github.com/RevenueMonster/sqlike@v1.0.6/sql/util/postgres.go (about)

     1  package util
     2  
     3  import "strconv"
     4  
     5  // PostgresUtil :
     6  type PostgresUtil struct{}
     7  
     8  // Quote :
     9  func (util PostgresUtil) Quote(n string) string {
    10  	return strconv.Quote(n)
    11  }