mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-09 17:15:31 +00:00
1e9119ace9
* update xorm.io * update module * update github.com/docker/cli * update github.com/docker/distribution * update github.com/docker/docker * update github.com/gin-gonic/gin * update github.com/golang-jwt/jwt/v4 * update github.com/golangci/golangci-lint * update github.com/gorilla/securecookie * update github.com/lib/pq * update github.com/mattn/go-sqlite3 * update github.com/moby/moby * update github.com/stretchr/testify * update github.com/urfave/cli/v2 * update github.com/xanzy/go-gitlab * finish * update module * clean
49 lines
1,013 B
Go
49 lines
1,013 B
Go
// Copyright 2022 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 (
|
|
"errors"
|
|
"io"
|
|
)
|
|
|
|
type condExists struct {
|
|
subQuery *Builder
|
|
}
|
|
|
|
var _ Cond = condExists{}
|
|
|
|
// Exists returns Cond via condition
|
|
func Exists(subQuery *Builder) Cond {
|
|
return &condExists{
|
|
subQuery: subQuery,
|
|
}
|
|
}
|
|
|
|
func (condExists condExists) WriteTo(w Writer) error {
|
|
if !condExists.IsValid() {
|
|
return errors.New("exists condition is nov valid")
|
|
}
|
|
if _, err := io.WriteString(w, "EXISTS ("); err != nil {
|
|
return err
|
|
}
|
|
if err := condExists.subQuery.WriteTo(w); err != nil {
|
|
return err
|
|
}
|
|
_, err := io.WriteString(w, ")")
|
|
return err
|
|
}
|
|
|
|
func (condExists condExists) And(conds ...Cond) Cond {
|
|
return And(condExists, And(conds...))
|
|
}
|
|
|
|
func (condExists condExists) Or(conds ...Cond) Cond {
|
|
return Or(condExists, Or(conds...))
|
|
}
|
|
|
|
func (condExists condExists) IsValid() bool {
|
|
return condExists.subQuery != nil
|
|
}
|