dbpackage

package
v0.0.0-...-ff963ec Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 6, 2022 License: GPL-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the dbpackage type in the database.
	Label = "db_package"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldPkgbase holds the string denoting the pkgbase field in the database.
	FieldPkgbase = "pkgbase"
	// FieldPackages holds the string denoting the packages field in the database.
	FieldPackages = "packages"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldSkipReason holds the string denoting the skip_reason field in the database.
	FieldSkipReason = "skip_reason"
	// FieldRepository holds the string denoting the repository field in the database.
	FieldRepository = "repository"
	// FieldMarch holds the string denoting the march field in the database.
	FieldMarch = "march"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// FieldRepoVersion holds the string denoting the repo_version field in the database.
	FieldRepoVersion = "repo_version"
	// FieldBuildTimeStart holds the string denoting the build_time_start field in the database.
	FieldBuildTimeStart = "build_time_start"
	// FieldUpdated holds the string denoting the updated field in the database.
	FieldUpdated = "updated"
	// FieldHash holds the string denoting the hash field in the database.
	FieldHash = "hash"
	// FieldLto holds the string denoting the lto field in the database.
	FieldLto = "lto"
	// FieldLastVersionBuild holds the string denoting the last_version_build field in the database.
	FieldLastVersionBuild = "last_version_build"
	// FieldLastVerified holds the string denoting the last_verified field in the database.
	FieldLastVerified = "last_verified"
	// FieldDebugSymbols holds the string denoting the debug_symbols field in the database.
	FieldDebugSymbols = "debug_symbols"
	// FieldMaxRss holds the string denoting the max_rss field in the database.
	FieldMaxRss = "max_rss"
	// FieldUTime holds the string denoting the u_time field in the database.
	FieldUTime = "u_time"
	// FieldSTime holds the string denoting the s_time field in the database.
	FieldSTime = "s_time"
	// FieldIoIn holds the string denoting the io_in field in the database.
	FieldIoIn = "io_in"
	// FieldIoOut holds the string denoting the io_out field in the database.
	FieldIoOut = "io_out"
	// FieldSrcinfo holds the string denoting the srcinfo field in the database.
	FieldSrcinfo = "srcinfo"
	// FieldSrcinfoHash holds the string denoting the srcinfo_hash field in the database.
	FieldSrcinfoHash = "srcinfo_hash"
	// FieldPkgbuild holds the string denoting the pkgbuild field in the database.
	FieldPkgbuild = "pkgbuild"
	// Table holds the table name of the dbpackage in the database.
	Table = "db_packages"
)
View Source
const DefaultDebugSymbols = DebugSymbolsUnknown

DebugSymbolsUnknown is the default value of the DebugSymbols enum.

View Source
const DefaultLto = LtoUnknown

LtoUnknown is the default value of the Lto enum.

View Source
const DefaultStatus = StatusUnknown

StatusUnknown is the default value of the Status enum.

Variables

View Source
var (
	// PkgbaseValidator is a validator for the "pkgbase" field. It is called by the builders before save.
	PkgbaseValidator func(string) error
	// MarchValidator is a validator for the "march" field. It is called by the builders before save.
	MarchValidator func(string) error
)

Columns holds all SQL columns for dbpackage fields.

Functions

func And

func And(predicates ...predicate.DbPackage) predicate.DbPackage

And groups predicates with the AND operator between them.

func BuildTimeStart

func BuildTimeStart(v time.Time) predicate.DbPackage

BuildTimeStart applies equality check predicate on the "build_time_start" field. It's identical to BuildTimeStartEQ.

func BuildTimeStartEQ

func BuildTimeStartEQ(v time.Time) predicate.DbPackage

BuildTimeStartEQ applies the EQ predicate on the "build_time_start" field.

func BuildTimeStartGT

func BuildTimeStartGT(v time.Time) predicate.DbPackage

BuildTimeStartGT applies the GT predicate on the "build_time_start" field.

func BuildTimeStartGTE

func BuildTimeStartGTE(v time.Time) predicate.DbPackage

BuildTimeStartGTE applies the GTE predicate on the "build_time_start" field.

func BuildTimeStartIn

func BuildTimeStartIn(vs ...time.Time) predicate.DbPackage

BuildTimeStartIn applies the In predicate on the "build_time_start" field.

func BuildTimeStartIsNil

func BuildTimeStartIsNil() predicate.DbPackage

BuildTimeStartIsNil applies the IsNil predicate on the "build_time_start" field.

func BuildTimeStartLT

func BuildTimeStartLT(v time.Time) predicate.DbPackage

BuildTimeStartLT applies the LT predicate on the "build_time_start" field.

func BuildTimeStartLTE

func BuildTimeStartLTE(v time.Time) predicate.DbPackage

BuildTimeStartLTE applies the LTE predicate on the "build_time_start" field.

func BuildTimeStartNEQ

func BuildTimeStartNEQ(v time.Time) predicate.DbPackage

BuildTimeStartNEQ applies the NEQ predicate on the "build_time_start" field.

func BuildTimeStartNotIn

func BuildTimeStartNotIn(vs ...time.Time) predicate.DbPackage

BuildTimeStartNotIn applies the NotIn predicate on the "build_time_start" field.

func BuildTimeStartNotNil

func BuildTimeStartNotNil() predicate.DbPackage

BuildTimeStartNotNil applies the NotNil predicate on the "build_time_start" field.

func DebugSymbolsEQ

func DebugSymbolsEQ(v DebugSymbols) predicate.DbPackage

DebugSymbolsEQ applies the EQ predicate on the "debug_symbols" field.

func DebugSymbolsIn

func DebugSymbolsIn(vs ...DebugSymbols) predicate.DbPackage

DebugSymbolsIn applies the In predicate on the "debug_symbols" field.

func DebugSymbolsIsNil

func DebugSymbolsIsNil() predicate.DbPackage

DebugSymbolsIsNil applies the IsNil predicate on the "debug_symbols" field.

func DebugSymbolsNEQ

func DebugSymbolsNEQ(v DebugSymbols) predicate.DbPackage

DebugSymbolsNEQ applies the NEQ predicate on the "debug_symbols" field.

func DebugSymbolsNotIn

func DebugSymbolsNotIn(vs ...DebugSymbols) predicate.DbPackage

DebugSymbolsNotIn applies the NotIn predicate on the "debug_symbols" field.

func DebugSymbolsNotNil

func DebugSymbolsNotNil() predicate.DbPackage

DebugSymbolsNotNil applies the NotNil predicate on the "debug_symbols" field.

func DebugSymbolsValidator

func DebugSymbolsValidator(ds DebugSymbols) error

DebugSymbolsValidator is a validator for the "debug_symbols" field enum values. It is called by the builders before save.

func Hash

func Hash(v string) predicate.DbPackage

Hash applies equality check predicate on the "hash" field. It's identical to HashEQ.

func HashContains

func HashContains(v string) predicate.DbPackage

HashContains applies the Contains predicate on the "hash" field.

func HashContainsFold

func HashContainsFold(v string) predicate.DbPackage

HashContainsFold applies the ContainsFold predicate on the "hash" field.

func HashEQ

func HashEQ(v string) predicate.DbPackage

HashEQ applies the EQ predicate on the "hash" field.

func HashEqualFold

func HashEqualFold(v string) predicate.DbPackage

HashEqualFold applies the EqualFold predicate on the "hash" field.

func HashGT

func HashGT(v string) predicate.DbPackage

HashGT applies the GT predicate on the "hash" field.

func HashGTE

func HashGTE(v string) predicate.DbPackage

HashGTE applies the GTE predicate on the "hash" field.

func HashHasPrefix

func HashHasPrefix(v string) predicate.DbPackage

HashHasPrefix applies the HasPrefix predicate on the "hash" field.

func HashHasSuffix

func HashHasSuffix(v string) predicate.DbPackage

HashHasSuffix applies the HasSuffix predicate on the "hash" field.

func HashIn

func HashIn(vs ...string) predicate.DbPackage

HashIn applies the In predicate on the "hash" field.

func HashIsNil

func HashIsNil() predicate.DbPackage

HashIsNil applies the IsNil predicate on the "hash" field.

func HashLT

func HashLT(v string) predicate.DbPackage

HashLT applies the LT predicate on the "hash" field.

func HashLTE

func HashLTE(v string) predicate.DbPackage

HashLTE applies the LTE predicate on the "hash" field.

func HashNEQ

func HashNEQ(v string) predicate.DbPackage

HashNEQ applies the NEQ predicate on the "hash" field.

func HashNotIn

func HashNotIn(vs ...string) predicate.DbPackage

HashNotIn applies the NotIn predicate on the "hash" field.

func HashNotNil

func HashNotNil() predicate.DbPackage

HashNotNil applies the NotNil predicate on the "hash" field.

func ID

func ID(id int) predicate.DbPackage

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.DbPackage

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.DbPackage

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.DbPackage

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.DbPackage

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.DbPackage

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.DbPackage

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.DbPackage

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.DbPackage

IDNotIn applies the NotIn predicate on the ID field.

func IoIn

func IoIn(v int64) predicate.DbPackage

IoIn applies equality check predicate on the "io_in" field. It's identical to IoInEQ.

func IoInEQ

func IoInEQ(v int64) predicate.DbPackage

IoInEQ applies the EQ predicate on the "io_in" field.

func IoInGT

func IoInGT(v int64) predicate.DbPackage

IoInGT applies the GT predicate on the "io_in" field.

func IoInGTE

func IoInGTE(v int64) predicate.DbPackage

IoInGTE applies the GTE predicate on the "io_in" field.

func IoInIn

func IoInIn(vs ...int64) predicate.DbPackage

IoInIn applies the In predicate on the "io_in" field.

func IoInIsNil

func IoInIsNil() predicate.DbPackage

IoInIsNil applies the IsNil predicate on the "io_in" field.

func IoInLT

func IoInLT(v int64) predicate.DbPackage

IoInLT applies the LT predicate on the "io_in" field.

func IoInLTE

func IoInLTE(v int64) predicate.DbPackage

IoInLTE applies the LTE predicate on the "io_in" field.

func IoInNEQ

func IoInNEQ(v int64) predicate.DbPackage

IoInNEQ applies the NEQ predicate on the "io_in" field.

func IoInNotIn

func IoInNotIn(vs ...int64) predicate.DbPackage

IoInNotIn applies the NotIn predicate on the "io_in" field.

func IoInNotNil

func IoInNotNil() predicate.DbPackage

IoInNotNil applies the NotNil predicate on the "io_in" field.

func IoOut

func IoOut(v int64) predicate.DbPackage

IoOut applies equality check predicate on the "io_out" field. It's identical to IoOutEQ.

func IoOutEQ

func IoOutEQ(v int64) predicate.DbPackage

IoOutEQ applies the EQ predicate on the "io_out" field.

func IoOutGT

func IoOutGT(v int64) predicate.DbPackage

IoOutGT applies the GT predicate on the "io_out" field.

func IoOutGTE

func IoOutGTE(v int64) predicate.DbPackage

IoOutGTE applies the GTE predicate on the "io_out" field.

func IoOutIn

func IoOutIn(vs ...int64) predicate.DbPackage

IoOutIn applies the In predicate on the "io_out" field.

func IoOutIsNil

func IoOutIsNil() predicate.DbPackage

IoOutIsNil applies the IsNil predicate on the "io_out" field.

func IoOutLT

func IoOutLT(v int64) predicate.DbPackage

IoOutLT applies the LT predicate on the "io_out" field.

func IoOutLTE

func IoOutLTE(v int64) predicate.DbPackage

IoOutLTE applies the LTE predicate on the "io_out" field.

func IoOutNEQ

func IoOutNEQ(v int64) predicate.DbPackage

IoOutNEQ applies the NEQ predicate on the "io_out" field.

func IoOutNotIn

func IoOutNotIn(vs ...int64) predicate.DbPackage

IoOutNotIn applies the NotIn predicate on the "io_out" field.

func IoOutNotNil

func IoOutNotNil() predicate.DbPackage

IoOutNotNil applies the NotNil predicate on the "io_out" field.

func LastVerified

func LastVerified(v time.Time) predicate.DbPackage

LastVerified applies equality check predicate on the "last_verified" field. It's identical to LastVerifiedEQ.

func LastVerifiedEQ

func LastVerifiedEQ(v time.Time) predicate.DbPackage

LastVerifiedEQ applies the EQ predicate on the "last_verified" field.

func LastVerifiedGT

func LastVerifiedGT(v time.Time) predicate.DbPackage

LastVerifiedGT applies the GT predicate on the "last_verified" field.

func LastVerifiedGTE

func LastVerifiedGTE(v time.Time) predicate.DbPackage

LastVerifiedGTE applies the GTE predicate on the "last_verified" field.

func LastVerifiedIn

func LastVerifiedIn(vs ...time.Time) predicate.DbPackage

LastVerifiedIn applies the In predicate on the "last_verified" field.

func LastVerifiedIsNil

func LastVerifiedIsNil() predicate.DbPackage

LastVerifiedIsNil applies the IsNil predicate on the "last_verified" field.

func LastVerifiedLT

func LastVerifiedLT(v time.Time) predicate.DbPackage

LastVerifiedLT applies the LT predicate on the "last_verified" field.

func LastVerifiedLTE

func LastVerifiedLTE(v time.Time) predicate.DbPackage

LastVerifiedLTE applies the LTE predicate on the "last_verified" field.

func LastVerifiedNEQ

func LastVerifiedNEQ(v time.Time) predicate.DbPackage

LastVerifiedNEQ applies the NEQ predicate on the "last_verified" field.

func LastVerifiedNotIn

func LastVerifiedNotIn(vs ...time.Time) predicate.DbPackage

LastVerifiedNotIn applies the NotIn predicate on the "last_verified" field.

func LastVerifiedNotNil

func LastVerifiedNotNil() predicate.DbPackage

LastVerifiedNotNil applies the NotNil predicate on the "last_verified" field.

func LastVersionBuild

func LastVersionBuild(v string) predicate.DbPackage

LastVersionBuild applies equality check predicate on the "last_version_build" field. It's identical to LastVersionBuildEQ.

func LastVersionBuildContains

func LastVersionBuildContains(v string) predicate.DbPackage

LastVersionBuildContains applies the Contains predicate on the "last_version_build" field.

func LastVersionBuildContainsFold

func LastVersionBuildContainsFold(v string) predicate.DbPackage

LastVersionBuildContainsFold applies the ContainsFold predicate on the "last_version_build" field.

func LastVersionBuildEQ

func LastVersionBuildEQ(v string) predicate.DbPackage

LastVersionBuildEQ applies the EQ predicate on the "last_version_build" field.

func LastVersionBuildEqualFold

func LastVersionBuildEqualFold(v string) predicate.DbPackage

LastVersionBuildEqualFold applies the EqualFold predicate on the "last_version_build" field.

func LastVersionBuildGT

func LastVersionBuildGT(v string) predicate.DbPackage

LastVersionBuildGT applies the GT predicate on the "last_version_build" field.

func LastVersionBuildGTE

func LastVersionBuildGTE(v string) predicate.DbPackage

LastVersionBuildGTE applies the GTE predicate on the "last_version_build" field.

func LastVersionBuildHasPrefix

func LastVersionBuildHasPrefix(v string) predicate.DbPackage

LastVersionBuildHasPrefix applies the HasPrefix predicate on the "last_version_build" field.

func LastVersionBuildHasSuffix

func LastVersionBuildHasSuffix(v string) predicate.DbPackage

LastVersionBuildHasSuffix applies the HasSuffix predicate on the "last_version_build" field.

func LastVersionBuildIn

func LastVersionBuildIn(vs ...string) predicate.DbPackage

LastVersionBuildIn applies the In predicate on the "last_version_build" field.

func LastVersionBuildIsNil

func LastVersionBuildIsNil() predicate.DbPackage

LastVersionBuildIsNil applies the IsNil predicate on the "last_version_build" field.

func LastVersionBuildLT

func LastVersionBuildLT(v string) predicate.DbPackage

LastVersionBuildLT applies the LT predicate on the "last_version_build" field.

func LastVersionBuildLTE

func LastVersionBuildLTE(v string) predicate.DbPackage

LastVersionBuildLTE applies the LTE predicate on the "last_version_build" field.

func LastVersionBuildNEQ

func LastVersionBuildNEQ(v string) predicate.DbPackage

LastVersionBuildNEQ applies the NEQ predicate on the "last_version_build" field.

func LastVersionBuildNotIn

func LastVersionBuildNotIn(vs ...string) predicate.DbPackage

LastVersionBuildNotIn applies the NotIn predicate on the "last_version_build" field.

func LastVersionBuildNotNil

func LastVersionBuildNotNil() predicate.DbPackage

LastVersionBuildNotNil applies the NotNil predicate on the "last_version_build" field.

func LtoEQ

func LtoEQ(v Lto) predicate.DbPackage

LtoEQ applies the EQ predicate on the "lto" field.

func LtoIn

func LtoIn(vs ...Lto) predicate.DbPackage

LtoIn applies the In predicate on the "lto" field.

func LtoIsNil

func LtoIsNil() predicate.DbPackage

LtoIsNil applies the IsNil predicate on the "lto" field.

func LtoNEQ

func LtoNEQ(v Lto) predicate.DbPackage

LtoNEQ applies the NEQ predicate on the "lto" field.

func LtoNotIn

func LtoNotIn(vs ...Lto) predicate.DbPackage

LtoNotIn applies the NotIn predicate on the "lto" field.

func LtoNotNil

func LtoNotNil() predicate.DbPackage

LtoNotNil applies the NotNil predicate on the "lto" field.

func LtoValidator

func LtoValidator(l Lto) error

LtoValidator is a validator for the "lto" field enum values. It is called by the builders before save.

func March

func March(v string) predicate.DbPackage

March applies equality check predicate on the "march" field. It's identical to MarchEQ.

func MarchContains

func MarchContains(v string) predicate.DbPackage

MarchContains applies the Contains predicate on the "march" field.

func MarchContainsFold

func MarchContainsFold(v string) predicate.DbPackage

MarchContainsFold applies the ContainsFold predicate on the "march" field.

func MarchEQ

func MarchEQ(v string) predicate.DbPackage

MarchEQ applies the EQ predicate on the "march" field.

func MarchEqualFold

func MarchEqualFold(v string) predicate.DbPackage

MarchEqualFold applies the EqualFold predicate on the "march" field.

func MarchGT

func MarchGT(v string) predicate.DbPackage

MarchGT applies the GT predicate on the "march" field.

func MarchGTE

func MarchGTE(v string) predicate.DbPackage

MarchGTE applies the GTE predicate on the "march" field.

func MarchHasPrefix

func MarchHasPrefix(v string) predicate.DbPackage

MarchHasPrefix applies the HasPrefix predicate on the "march" field.

func MarchHasSuffix

func MarchHasSuffix(v string) predicate.DbPackage

MarchHasSuffix applies the HasSuffix predicate on the "march" field.

func MarchIn

func MarchIn(vs ...string) predicate.DbPackage

MarchIn applies the In predicate on the "march" field.

func MarchLT

func MarchLT(v string) predicate.DbPackage

MarchLT applies the LT predicate on the "march" field.

func MarchLTE

func MarchLTE(v string) predicate.DbPackage

MarchLTE applies the LTE predicate on the "march" field.

func MarchNEQ

func MarchNEQ(v string) predicate.DbPackage

MarchNEQ applies the NEQ predicate on the "march" field.

func MarchNotIn

func MarchNotIn(vs ...string) predicate.DbPackage

MarchNotIn applies the NotIn predicate on the "march" field.

func MaxRss

func MaxRss(v int64) predicate.DbPackage

MaxRss applies equality check predicate on the "max_rss" field. It's identical to MaxRssEQ.

func MaxRssEQ

func MaxRssEQ(v int64) predicate.DbPackage

MaxRssEQ applies the EQ predicate on the "max_rss" field.

func MaxRssGT

func MaxRssGT(v int64) predicate.DbPackage

MaxRssGT applies the GT predicate on the "max_rss" field.

func MaxRssGTE

func MaxRssGTE(v int64) predicate.DbPackage

MaxRssGTE applies the GTE predicate on the "max_rss" field.

func MaxRssIn

func MaxRssIn(vs ...int64) predicate.DbPackage

MaxRssIn applies the In predicate on the "max_rss" field.

func MaxRssIsNil

func MaxRssIsNil() predicate.DbPackage

MaxRssIsNil applies the IsNil predicate on the "max_rss" field.

func MaxRssLT

func MaxRssLT(v int64) predicate.DbPackage

MaxRssLT applies the LT predicate on the "max_rss" field.

func MaxRssLTE

func MaxRssLTE(v int64) predicate.DbPackage

MaxRssLTE applies the LTE predicate on the "max_rss" field.

func MaxRssNEQ

func MaxRssNEQ(v int64) predicate.DbPackage

MaxRssNEQ applies the NEQ predicate on the "max_rss" field.

func MaxRssNotIn

func MaxRssNotIn(vs ...int64) predicate.DbPackage

MaxRssNotIn applies the NotIn predicate on the "max_rss" field.

func MaxRssNotNil

func MaxRssNotNil() predicate.DbPackage

MaxRssNotNil applies the NotNil predicate on the "max_rss" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.DbPackage) predicate.DbPackage

Or groups predicates with the OR operator between them.

func PackagesIsNil

func PackagesIsNil() predicate.DbPackage

PackagesIsNil applies the IsNil predicate on the "packages" field.

func PackagesNotNil

func PackagesNotNil() predicate.DbPackage

PackagesNotNil applies the NotNil predicate on the "packages" field.

func Pkgbase

func Pkgbase(v string) predicate.DbPackage

Pkgbase applies equality check predicate on the "pkgbase" field. It's identical to PkgbaseEQ.

func PkgbaseContains

func PkgbaseContains(v string) predicate.DbPackage

PkgbaseContains applies the Contains predicate on the "pkgbase" field.

func PkgbaseContainsFold

func PkgbaseContainsFold(v string) predicate.DbPackage

PkgbaseContainsFold applies the ContainsFold predicate on the "pkgbase" field.

func PkgbaseEQ

func PkgbaseEQ(v string) predicate.DbPackage

PkgbaseEQ applies the EQ predicate on the "pkgbase" field.

func PkgbaseEqualFold

func PkgbaseEqualFold(v string) predicate.DbPackage

PkgbaseEqualFold applies the EqualFold predicate on the "pkgbase" field.

func PkgbaseGT

func PkgbaseGT(v string) predicate.DbPackage

PkgbaseGT applies the GT predicate on the "pkgbase" field.

func PkgbaseGTE

func PkgbaseGTE(v string) predicate.DbPackage

PkgbaseGTE applies the GTE predicate on the "pkgbase" field.

func PkgbaseHasPrefix

func PkgbaseHasPrefix(v string) predicate.DbPackage

PkgbaseHasPrefix applies the HasPrefix predicate on the "pkgbase" field.

func PkgbaseHasSuffix

func PkgbaseHasSuffix(v string) predicate.DbPackage

PkgbaseHasSuffix applies the HasSuffix predicate on the "pkgbase" field.

func PkgbaseIn

func PkgbaseIn(vs ...string) predicate.DbPackage

PkgbaseIn applies the In predicate on the "pkgbase" field.

func PkgbaseLT

func PkgbaseLT(v string) predicate.DbPackage

PkgbaseLT applies the LT predicate on the "pkgbase" field.

func PkgbaseLTE

func PkgbaseLTE(v string) predicate.DbPackage

PkgbaseLTE applies the LTE predicate on the "pkgbase" field.

func PkgbaseNEQ

func PkgbaseNEQ(v string) predicate.DbPackage

PkgbaseNEQ applies the NEQ predicate on the "pkgbase" field.

func PkgbaseNotIn

func PkgbaseNotIn(vs ...string) predicate.DbPackage

PkgbaseNotIn applies the NotIn predicate on the "pkgbase" field.

func Pkgbuild

func Pkgbuild(v string) predicate.DbPackage

Pkgbuild applies equality check predicate on the "pkgbuild" field. It's identical to PkgbuildEQ.

func PkgbuildContains

func PkgbuildContains(v string) predicate.DbPackage

PkgbuildContains applies the Contains predicate on the "pkgbuild" field.

func PkgbuildContainsFold

func PkgbuildContainsFold(v string) predicate.DbPackage

PkgbuildContainsFold applies the ContainsFold predicate on the "pkgbuild" field.

func PkgbuildEQ

func PkgbuildEQ(v string) predicate.DbPackage

PkgbuildEQ applies the EQ predicate on the "pkgbuild" field.

func PkgbuildEqualFold

func PkgbuildEqualFold(v string) predicate.DbPackage

PkgbuildEqualFold applies the EqualFold predicate on the "pkgbuild" field.

func PkgbuildGT

func PkgbuildGT(v string) predicate.DbPackage

PkgbuildGT applies the GT predicate on the "pkgbuild" field.

func PkgbuildGTE

func PkgbuildGTE(v string) predicate.DbPackage

PkgbuildGTE applies the GTE predicate on the "pkgbuild" field.

func PkgbuildHasPrefix

func PkgbuildHasPrefix(v string) predicate.DbPackage

PkgbuildHasPrefix applies the HasPrefix predicate on the "pkgbuild" field.

func PkgbuildHasSuffix

func PkgbuildHasSuffix(v string) predicate.DbPackage

PkgbuildHasSuffix applies the HasSuffix predicate on the "pkgbuild" field.

func PkgbuildIn

func PkgbuildIn(vs ...string) predicate.DbPackage

PkgbuildIn applies the In predicate on the "pkgbuild" field.

func PkgbuildIsNil

func PkgbuildIsNil() predicate.DbPackage

PkgbuildIsNil applies the IsNil predicate on the "pkgbuild" field.

func PkgbuildLT

func PkgbuildLT(v string) predicate.DbPackage

PkgbuildLT applies the LT predicate on the "pkgbuild" field.

func PkgbuildLTE

func PkgbuildLTE(v string) predicate.DbPackage

PkgbuildLTE applies the LTE predicate on the "pkgbuild" field.

func PkgbuildNEQ

func PkgbuildNEQ(v string) predicate.DbPackage

PkgbuildNEQ applies the NEQ predicate on the "pkgbuild" field.

func PkgbuildNotIn

func PkgbuildNotIn(vs ...string) predicate.DbPackage

PkgbuildNotIn applies the NotIn predicate on the "pkgbuild" field.

func PkgbuildNotNil

func PkgbuildNotNil() predicate.DbPackage

PkgbuildNotNil applies the NotNil predicate on the "pkgbuild" field.

func RepoVersion

func RepoVersion(v string) predicate.DbPackage

RepoVersion applies equality check predicate on the "repo_version" field. It's identical to RepoVersionEQ.

func RepoVersionContains

func RepoVersionContains(v string) predicate.DbPackage

RepoVersionContains applies the Contains predicate on the "repo_version" field.

func RepoVersionContainsFold

func RepoVersionContainsFold(v string) predicate.DbPackage

RepoVersionContainsFold applies the ContainsFold predicate on the "repo_version" field.

func RepoVersionEQ

func RepoVersionEQ(v string) predicate.DbPackage

RepoVersionEQ applies the EQ predicate on the "repo_version" field.

func RepoVersionEqualFold

func RepoVersionEqualFold(v string) predicate.DbPackage

RepoVersionEqualFold applies the EqualFold predicate on the "repo_version" field.

func RepoVersionGT

func RepoVersionGT(v string) predicate.DbPackage

RepoVersionGT applies the GT predicate on the "repo_version" field.

func RepoVersionGTE

func RepoVersionGTE(v string) predicate.DbPackage

RepoVersionGTE applies the GTE predicate on the "repo_version" field.

func RepoVersionHasPrefix

func RepoVersionHasPrefix(v string) predicate.DbPackage

RepoVersionHasPrefix applies the HasPrefix predicate on the "repo_version" field.

func RepoVersionHasSuffix

func RepoVersionHasSuffix(v string) predicate.DbPackage

RepoVersionHasSuffix applies the HasSuffix predicate on the "repo_version" field.

func RepoVersionIn

func RepoVersionIn(vs ...string) predicate.DbPackage

RepoVersionIn applies the In predicate on the "repo_version" field.

func RepoVersionIsNil

func RepoVersionIsNil() predicate.DbPackage

RepoVersionIsNil applies the IsNil predicate on the "repo_version" field.

func RepoVersionLT

func RepoVersionLT(v string) predicate.DbPackage

RepoVersionLT applies the LT predicate on the "repo_version" field.

func RepoVersionLTE

func RepoVersionLTE(v string) predicate.DbPackage

RepoVersionLTE applies the LTE predicate on the "repo_version" field.

func RepoVersionNEQ

func RepoVersionNEQ(v string) predicate.DbPackage

RepoVersionNEQ applies the NEQ predicate on the "repo_version" field.

func RepoVersionNotIn

func RepoVersionNotIn(vs ...string) predicate.DbPackage

RepoVersionNotIn applies the NotIn predicate on the "repo_version" field.

func RepoVersionNotNil

func RepoVersionNotNil() predicate.DbPackage

RepoVersionNotNil applies the NotNil predicate on the "repo_version" field.

func RepositoryEQ

func RepositoryEQ(v Repository) predicate.DbPackage

RepositoryEQ applies the EQ predicate on the "repository" field.

func RepositoryIn

func RepositoryIn(vs ...Repository) predicate.DbPackage

RepositoryIn applies the In predicate on the "repository" field.

func RepositoryNEQ

func RepositoryNEQ(v Repository) predicate.DbPackage

RepositoryNEQ applies the NEQ predicate on the "repository" field.

func RepositoryNotIn

func RepositoryNotIn(vs ...Repository) predicate.DbPackage

RepositoryNotIn applies the NotIn predicate on the "repository" field.

func RepositoryValidator

func RepositoryValidator(r Repository) error

RepositoryValidator is a validator for the "repository" field enum values. It is called by the builders before save.

func STime

func STime(v int64) predicate.DbPackage

STime applies equality check predicate on the "s_time" field. It's identical to STimeEQ.

func STimeEQ

func STimeEQ(v int64) predicate.DbPackage

STimeEQ applies the EQ predicate on the "s_time" field.

func STimeGT

func STimeGT(v int64) predicate.DbPackage

STimeGT applies the GT predicate on the "s_time" field.

func STimeGTE

func STimeGTE(v int64) predicate.DbPackage

STimeGTE applies the GTE predicate on the "s_time" field.

func STimeIn

func STimeIn(vs ...int64) predicate.DbPackage

STimeIn applies the In predicate on the "s_time" field.

func STimeIsNil

func STimeIsNil() predicate.DbPackage

STimeIsNil applies the IsNil predicate on the "s_time" field.

func STimeLT

func STimeLT(v int64) predicate.DbPackage

STimeLT applies the LT predicate on the "s_time" field.

func STimeLTE

func STimeLTE(v int64) predicate.DbPackage

STimeLTE applies the LTE predicate on the "s_time" field.

func STimeNEQ

func STimeNEQ(v int64) predicate.DbPackage

STimeNEQ applies the NEQ predicate on the "s_time" field.

func STimeNotIn

func STimeNotIn(vs ...int64) predicate.DbPackage

STimeNotIn applies the NotIn predicate on the "s_time" field.

func STimeNotNil

func STimeNotNil() predicate.DbPackage

STimeNotNil applies the NotNil predicate on the "s_time" field.

func SkipReason

func SkipReason(v string) predicate.DbPackage

SkipReason applies equality check predicate on the "skip_reason" field. It's identical to SkipReasonEQ.

func SkipReasonContains

func SkipReasonContains(v string) predicate.DbPackage

SkipReasonContains applies the Contains predicate on the "skip_reason" field.

func SkipReasonContainsFold

func SkipReasonContainsFold(v string) predicate.DbPackage

SkipReasonContainsFold applies the ContainsFold predicate on the "skip_reason" field.

func SkipReasonEQ

func SkipReasonEQ(v string) predicate.DbPackage

SkipReasonEQ applies the EQ predicate on the "skip_reason" field.

func SkipReasonEqualFold

func SkipReasonEqualFold(v string) predicate.DbPackage

SkipReasonEqualFold applies the EqualFold predicate on the "skip_reason" field.

func SkipReasonGT

func SkipReasonGT(v string) predicate.DbPackage

SkipReasonGT applies the GT predicate on the "skip_reason" field.

func SkipReasonGTE

func SkipReasonGTE(v string) predicate.DbPackage

SkipReasonGTE applies the GTE predicate on the "skip_reason" field.

func SkipReasonHasPrefix

func SkipReasonHasPrefix(v string) predicate.DbPackage

SkipReasonHasPrefix applies the HasPrefix predicate on the "skip_reason" field.

func SkipReasonHasSuffix

func SkipReasonHasSuffix(v string) predicate.DbPackage

SkipReasonHasSuffix applies the HasSuffix predicate on the "skip_reason" field.

func SkipReasonIn

func SkipReasonIn(vs ...string) predicate.DbPackage

SkipReasonIn applies the In predicate on the "skip_reason" field.

func SkipReasonIsNil

func SkipReasonIsNil() predicate.DbPackage

SkipReasonIsNil applies the IsNil predicate on the "skip_reason" field.

func SkipReasonLT

func SkipReasonLT(v string) predicate.DbPackage

SkipReasonLT applies the LT predicate on the "skip_reason" field.

func SkipReasonLTE

func SkipReasonLTE(v string) predicate.DbPackage

SkipReasonLTE applies the LTE predicate on the "skip_reason" field.

func SkipReasonNEQ

func SkipReasonNEQ(v string) predicate.DbPackage

SkipReasonNEQ applies the NEQ predicate on the "skip_reason" field.

func SkipReasonNotIn

func SkipReasonNotIn(vs ...string) predicate.DbPackage

SkipReasonNotIn applies the NotIn predicate on the "skip_reason" field.

func SkipReasonNotNil

func SkipReasonNotNil() predicate.DbPackage

SkipReasonNotNil applies the NotNil predicate on the "skip_reason" field.

func Srcinfo

func Srcinfo(v string) predicate.DbPackage

Srcinfo applies equality check predicate on the "srcinfo" field. It's identical to SrcinfoEQ.

func SrcinfoContains

func SrcinfoContains(v string) predicate.DbPackage

SrcinfoContains applies the Contains predicate on the "srcinfo" field.

func SrcinfoContainsFold

func SrcinfoContainsFold(v string) predicate.DbPackage

SrcinfoContainsFold applies the ContainsFold predicate on the "srcinfo" field.

func SrcinfoEQ

func SrcinfoEQ(v string) predicate.DbPackage

SrcinfoEQ applies the EQ predicate on the "srcinfo" field.

func SrcinfoEqualFold

func SrcinfoEqualFold(v string) predicate.DbPackage

SrcinfoEqualFold applies the EqualFold predicate on the "srcinfo" field.

func SrcinfoGT

func SrcinfoGT(v string) predicate.DbPackage

SrcinfoGT applies the GT predicate on the "srcinfo" field.

func SrcinfoGTE

func SrcinfoGTE(v string) predicate.DbPackage

SrcinfoGTE applies the GTE predicate on the "srcinfo" field.

func SrcinfoHasPrefix

func SrcinfoHasPrefix(v string) predicate.DbPackage

SrcinfoHasPrefix applies the HasPrefix predicate on the "srcinfo" field.

func SrcinfoHasSuffix

func SrcinfoHasSuffix(v string) predicate.DbPackage

SrcinfoHasSuffix applies the HasSuffix predicate on the "srcinfo" field.

func SrcinfoHash

func SrcinfoHash(v string) predicate.DbPackage

SrcinfoHash applies equality check predicate on the "srcinfo_hash" field. It's identical to SrcinfoHashEQ.

func SrcinfoHashContains

func SrcinfoHashContains(v string) predicate.DbPackage

SrcinfoHashContains applies the Contains predicate on the "srcinfo_hash" field.

func SrcinfoHashContainsFold

func SrcinfoHashContainsFold(v string) predicate.DbPackage

SrcinfoHashContainsFold applies the ContainsFold predicate on the "srcinfo_hash" field.

func SrcinfoHashEQ

func SrcinfoHashEQ(v string) predicate.DbPackage

SrcinfoHashEQ applies the EQ predicate on the "srcinfo_hash" field.

func SrcinfoHashEqualFold

func SrcinfoHashEqualFold(v string) predicate.DbPackage

SrcinfoHashEqualFold applies the EqualFold predicate on the "srcinfo_hash" field.

func SrcinfoHashGT

func SrcinfoHashGT(v string) predicate.DbPackage

SrcinfoHashGT applies the GT predicate on the "srcinfo_hash" field.

func SrcinfoHashGTE

func SrcinfoHashGTE(v string) predicate.DbPackage

SrcinfoHashGTE applies the GTE predicate on the "srcinfo_hash" field.

func SrcinfoHashHasPrefix

func SrcinfoHashHasPrefix(v string) predicate.DbPackage

SrcinfoHashHasPrefix applies the HasPrefix predicate on the "srcinfo_hash" field.

func SrcinfoHashHasSuffix

func SrcinfoHashHasSuffix(v string) predicate.DbPackage

SrcinfoHashHasSuffix applies the HasSuffix predicate on the "srcinfo_hash" field.

func SrcinfoHashIn

func SrcinfoHashIn(vs ...string) predicate.DbPackage

SrcinfoHashIn applies the In predicate on the "srcinfo_hash" field.

func SrcinfoHashIsNil

func SrcinfoHashIsNil() predicate.DbPackage

SrcinfoHashIsNil applies the IsNil predicate on the "srcinfo_hash" field.

func SrcinfoHashLT

func SrcinfoHashLT(v string) predicate.DbPackage

SrcinfoHashLT applies the LT predicate on the "srcinfo_hash" field.

func SrcinfoHashLTE

func SrcinfoHashLTE(v string) predicate.DbPackage

SrcinfoHashLTE applies the LTE predicate on the "srcinfo_hash" field.

func SrcinfoHashNEQ

func SrcinfoHashNEQ(v string) predicate.DbPackage

SrcinfoHashNEQ applies the NEQ predicate on the "srcinfo_hash" field.

func SrcinfoHashNotIn

func SrcinfoHashNotIn(vs ...string) predicate.DbPackage

SrcinfoHashNotIn applies the NotIn predicate on the "srcinfo_hash" field.

func SrcinfoHashNotNil

func SrcinfoHashNotNil() predicate.DbPackage

SrcinfoHashNotNil applies the NotNil predicate on the "srcinfo_hash" field.

func SrcinfoIn

func SrcinfoIn(vs ...string) predicate.DbPackage

SrcinfoIn applies the In predicate on the "srcinfo" field.

func SrcinfoIsNil

func SrcinfoIsNil() predicate.DbPackage

SrcinfoIsNil applies the IsNil predicate on the "srcinfo" field.

func SrcinfoLT

func SrcinfoLT(v string) predicate.DbPackage

SrcinfoLT applies the LT predicate on the "srcinfo" field.

func SrcinfoLTE

func SrcinfoLTE(v string) predicate.DbPackage

SrcinfoLTE applies the LTE predicate on the "srcinfo" field.

func SrcinfoNEQ

func SrcinfoNEQ(v string) predicate.DbPackage

SrcinfoNEQ applies the NEQ predicate on the "srcinfo" field.

func SrcinfoNotIn

func SrcinfoNotIn(vs ...string) predicate.DbPackage

SrcinfoNotIn applies the NotIn predicate on the "srcinfo" field.

func SrcinfoNotNil

func SrcinfoNotNil() predicate.DbPackage

SrcinfoNotNil applies the NotNil predicate on the "srcinfo" field.

func StatusEQ

func StatusEQ(v Status) predicate.DbPackage

StatusEQ applies the EQ predicate on the "status" field.

func StatusIn

func StatusIn(vs ...Status) predicate.DbPackage

StatusIn applies the In predicate on the "status" field.

func StatusIsNil

func StatusIsNil() predicate.DbPackage

StatusIsNil applies the IsNil predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v Status) predicate.DbPackage

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...Status) predicate.DbPackage

StatusNotIn applies the NotIn predicate on the "status" field.

func StatusNotNil

func StatusNotNil() predicate.DbPackage

StatusNotNil applies the NotNil predicate on the "status" field.

func StatusValidator

func StatusValidator(s Status) error

StatusValidator is a validator for the "status" field enum values. It is called by the builders before save.

func UTime

func UTime(v int64) predicate.DbPackage

UTime applies equality check predicate on the "u_time" field. It's identical to UTimeEQ.

func UTimeEQ

func UTimeEQ(v int64) predicate.DbPackage

UTimeEQ applies the EQ predicate on the "u_time" field.

func UTimeGT

func UTimeGT(v int64) predicate.DbPackage

UTimeGT applies the GT predicate on the "u_time" field.

func UTimeGTE

func UTimeGTE(v int64) predicate.DbPackage

UTimeGTE applies the GTE predicate on the "u_time" field.

func UTimeIn

func UTimeIn(vs ...int64) predicate.DbPackage

UTimeIn applies the In predicate on the "u_time" field.

func UTimeIsNil

func UTimeIsNil() predicate.DbPackage

UTimeIsNil applies the IsNil predicate on the "u_time" field.

func UTimeLT

func UTimeLT(v int64) predicate.DbPackage

UTimeLT applies the LT predicate on the "u_time" field.

func UTimeLTE

func UTimeLTE(v int64) predicate.DbPackage

UTimeLTE applies the LTE predicate on the "u_time" field.

func UTimeNEQ

func UTimeNEQ(v int64) predicate.DbPackage

UTimeNEQ applies the NEQ predicate on the "u_time" field.

func UTimeNotIn

func UTimeNotIn(vs ...int64) predicate.DbPackage

UTimeNotIn applies the NotIn predicate on the "u_time" field.

func UTimeNotNil

func UTimeNotNil() predicate.DbPackage

UTimeNotNil applies the NotNil predicate on the "u_time" field.

func Updated

func Updated(v time.Time) predicate.DbPackage

Updated applies equality check predicate on the "updated" field. It's identical to UpdatedEQ.

func UpdatedEQ

func UpdatedEQ(v time.Time) predicate.DbPackage

UpdatedEQ applies the EQ predicate on the "updated" field.

func UpdatedGT

func UpdatedGT(v time.Time) predicate.DbPackage

UpdatedGT applies the GT predicate on the "updated" field.

func UpdatedGTE

func UpdatedGTE(v time.Time) predicate.DbPackage

UpdatedGTE applies the GTE predicate on the "updated" field.

func UpdatedIn

func UpdatedIn(vs ...time.Time) predicate.DbPackage

UpdatedIn applies the In predicate on the "updated" field.

func UpdatedIsNil

func UpdatedIsNil() predicate.DbPackage

UpdatedIsNil applies the IsNil predicate on the "updated" field.

func UpdatedLT

func UpdatedLT(v time.Time) predicate.DbPackage

UpdatedLT applies the LT predicate on the "updated" field.

func UpdatedLTE

func UpdatedLTE(v time.Time) predicate.DbPackage

UpdatedLTE applies the LTE predicate on the "updated" field.

func UpdatedNEQ

func UpdatedNEQ(v time.Time) predicate.DbPackage

UpdatedNEQ applies the NEQ predicate on the "updated" field.

func UpdatedNotIn

func UpdatedNotIn(vs ...time.Time) predicate.DbPackage

UpdatedNotIn applies the NotIn predicate on the "updated" field.

func UpdatedNotNil

func UpdatedNotNil() predicate.DbPackage

UpdatedNotNil applies the NotNil predicate on the "updated" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

func Version

func Version(v string) predicate.DbPackage

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionContains

func VersionContains(v string) predicate.DbPackage

VersionContains applies the Contains predicate on the "version" field.

func VersionContainsFold

func VersionContainsFold(v string) predicate.DbPackage

VersionContainsFold applies the ContainsFold predicate on the "version" field.

func VersionEQ

func VersionEQ(v string) predicate.DbPackage

VersionEQ applies the EQ predicate on the "version" field.

func VersionEqualFold

func VersionEqualFold(v string) predicate.DbPackage

VersionEqualFold applies the EqualFold predicate on the "version" field.

func VersionGT

func VersionGT(v string) predicate.DbPackage

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v string) predicate.DbPackage

VersionGTE applies the GTE predicate on the "version" field.

func VersionHasPrefix

func VersionHasPrefix(v string) predicate.DbPackage

VersionHasPrefix applies the HasPrefix predicate on the "version" field.

func VersionHasSuffix

func VersionHasSuffix(v string) predicate.DbPackage

VersionHasSuffix applies the HasSuffix predicate on the "version" field.

func VersionIn

func VersionIn(vs ...string) predicate.DbPackage

VersionIn applies the In predicate on the "version" field.

func VersionIsNil

func VersionIsNil() predicate.DbPackage

VersionIsNil applies the IsNil predicate on the "version" field.

func VersionLT

func VersionLT(v string) predicate.DbPackage

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v string) predicate.DbPackage

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v string) predicate.DbPackage

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...string) predicate.DbPackage

VersionNotIn applies the NotIn predicate on the "version" field.

func VersionNotNil

func VersionNotNil() predicate.DbPackage

VersionNotNil applies the NotNil predicate on the "version" field.

Types

type DebugSymbols

type DebugSymbols string

DebugSymbols defines the type for the "debug_symbols" enum field.

const (
	DebugSymbolsAvailable    DebugSymbols = "available"
	DebugSymbolsUnknown      DebugSymbols = "unknown"
	DebugSymbolsNotAvailable DebugSymbols = "not_available"
)

DebugSymbols values.

func (DebugSymbols) String

func (ds DebugSymbols) String() string

type Lto

type Lto string

Lto defines the type for the "lto" enum field.

const (
	LtoEnabled      Lto = "enabled"
	LtoUnknown      Lto = "unknown"
	LtoDisabled     Lto = "disabled"
	LtoAutoDisabled Lto = "auto_disabled"
)

Lto values.

func (Lto) String

func (l Lto) String() string

type Repository

type Repository string

Repository defines the type for the "repository" enum field.

const (
	RepositoryExtra     Repository = "extra"
	RepositoryCore      Repository = "core"
	RepositoryCommunity Repository = "community"
)

Repository values.

func (Repository) String

func (r Repository) String() string

type Status

type Status string

Status defines the type for the "status" enum field.

const (
	StatusSkipped  Status = "skipped"
	StatusFailed   Status = "failed"
	StatusBuild    Status = "build"
	StatusQueued   Status = "queued"
	StatusDelayed  Status = "delayed"
	StatusBuilding Status = "building"
	StatusLatest   Status = "latest"
	StatusSigning  Status = "signing"
	StatusUnknown  Status = "unknown"
)

Status values.

func (Status) String

func (s Status) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL