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

Method LeftJoin

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

Source from the content-addressed store, hash-verified

348}
349
350func (sel *selector) LeftJoin(tables ...interface{}) db.Selector {
351 return sel.frame(func(sq *selectorQuery) error {
352 return sq.pushJoin("LEFT", tables)
353 })
354}
355
356func (sel *selector) Join(tables ...interface{}) db.Selector {
357 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