add space between column and operator

This commit is contained in:
Dawid Wysokiński 2021-01-06 17:48:49 +01:00
parent d3488036ca
commit b5537d951b
1 changed files with 7 additions and 7 deletions

View File

@ -19,31 +19,31 @@ func wrapStringInDoubleQuotes(str string) string {
}
func buildConditionEquals(column string) string {
return column + "= ?"
return column + " = ?"
}
func buildConditionLT(column string) string {
return column + "< ?"
return column + " < ?"
}
func buildConditionLTE(column string) string {
return column + "<= ?"
return column + " <= ?"
}
func buildConditionGT(column string) string {
return column + "> ?"
return column + " > ?"
}
func buildConditionGTE(column string) string {
return column + ">= ?"
return column + " >= ?"
}
func buildConditionMatch(column string) string {
return column + "LIKE ?"
return column + " LIKE ?"
}
func buildConditionIEQ(column string) string {
return column + "ILIKE ?"
return column + " ILIKE ?"
}
func buildConditionArray(column string) string {