diff options
Diffstat (limited to 'vendor/github.com/go-xorm/builder/cond_notin.go')
-rw-r--r-- | vendor/github.com/go-xorm/builder/cond_notin.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/github.com/go-xorm/builder/cond_notin.go b/vendor/github.com/go-xorm/builder/cond_notin.go index 9176dacddc..47c16be275 100644 --- a/vendor/github.com/go-xorm/builder/cond_notin.go +++ b/vendor/github.com/go-xorm/builder/cond_notin.go @@ -1,3 +1,7 @@ +// Copyright 2016 The Xorm Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package builder import ( @@ -9,6 +13,7 @@ type condNotIn condIn var _ Cond = condNotIn{} +// NotIn generate NOT IN condition func NotIn(col string, values ...interface{}) Cond { return condNotIn{col, values} } |