Fixed comment spacing

This commit is contained in:
ManReinsp 2017-07-26 14:46:05 +02:00
parent 47ec74e014
commit 928f99dbb5

View File

@ -456,7 +456,7 @@ var (
isNumberRegexp = regexp.MustCompile("^\\s*\\d+\\s*$") // match if string is number
comparisonRegexp = regexp.MustCompile("(?i) (=|<>|>|<|LIKE|IS|IN) ")
countingQueryRegexp = regexp.MustCompile("(?i)^count(.+)$")
pgParameterRegexp = regexp.MustCompile(`\$[0-9]+`) // to exchange postgres `$1` style parameter placeholders
pgParameterRegexp = regexp.MustCompile(`\$[0-9]+`) // to exchange postgres `$1` style parameter placeholders
)
func (scope *Scope) quoteIfPossible(str string) string {