MCPcopy Index your code
hub / github.com/upper/db / CrossJoin

Method CrossJoin

internal/sqlbuilder/select.go:338–342  ·  view source on GitHub ↗
(tables ...interface{})

Source from the content-addressed store, hash-verified

336}
337
338func (sel *selector) CrossJoin(tables ...interface{}) db.Selector {
339 return sel.frame(func(sq *selectorQuery) error {
340 return sq.pushJoin("CROSS", tables)
341 })
342}
343
344func (sel *selector) RightJoin(tables ...interface{}) db.Selector {
345 return sel.frame(func(sq *selectorQuery) error {

Callers

nothing calls this directly

Calls 2

frameMethod · 0.95
pushJoinMethod · 0.80

Tested by

no test coverage detected