fix pq syntax error on NOT
Cette révision appartient à :
Parent
92b82b7e81
révision
af7f57650e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -127,7 +127,7 @@ func findOrderBy(parameters *structs.WhereParams, orderBy string, limit int, off
|
|||
if !deleted {
|
||||
conditionArray = append(conditionArray, "deleted_at IS NULL")
|
||||
} else {
|
||||
conditionArray = append(conditionArray, "deleted_at NOT NULL")
|
||||
conditionArray = append(conditionArray, "deleted_at IS NOT NULL")
|
||||
}
|
||||
|
||||
conditions := strings.Join(conditionArray, " AND ")
|
||||
|
|
Référencer dans un nouveau ticket