Comparison operators refactoring.
This commit is contained in:
parent
64ba909381
commit
7b89caa7e0
28 changed files with 694 additions and 384 deletions
|
|
@ -12,7 +12,7 @@ func TestDeleteUnconditionally(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestDeleteWithWhere(t *testing.T) {
|
||||
sql, _, err := table1.DELETE().WHERE(table1Col1.EqL(1)).Sql()
|
||||
sql, _, err := table1.DELETE().WHERE(table1Col1.EQ(Int(1))).Sql()
|
||||
assert.NilError(t, err)
|
||||
|
||||
fmt.Println(sql)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue