summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-xorm/builder/cond_notin.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/go-xorm/builder/cond_notin.go')
-rw-r--r--vendor/github.com/go-xorm/builder/cond_notin.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/vendor/github.com/go-xorm/builder/cond_notin.go b/vendor/github.com/go-xorm/builder/cond_notin.go
index 9be44cb2af..dc3ac49a35 100644
--- a/vendor/github.com/go-xorm/builder/cond_notin.go
+++ b/vendor/github.com/go-xorm/builder/cond_notin.go
@@ -20,10 +20,8 @@ func NotIn(col string, values ...interface{}) Cond {
}
func (condNotIn condNotIn) handleBlank(w Writer) error {
- if _, err := fmt.Fprintf(w, "%s NOT IN ()", condNotIn.col); err != nil {
- return err
- }
- return nil
+ _, err := fmt.Fprint(w, "0=0")
+ return err
}
func (condNotIn condNotIn) WriteTo(w Writer) error {