Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for joinType (0.09 sec)

  1. clause/joins.go

    package clause
    
    type JoinType string
    
    const (
    	CrossJoin JoinType = "CROSS"
    	InnerJoin JoinType = "INNER"
    	LeftJoin  JoinType = "LEFT"
    	RightJoin JoinType = "RIGHT"
    )
    
    // Join clause for from
    type Join struct {
    	Type       JoinType
    	Table      Table
    	ON         Where
    	Using      []string
    	Expression Expression
    }
    
    func (join Join) Build(builder Builder) {
    	if join.Expression != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Nov 03 13:03:13 UTC 2022
    - 901 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/trieval.go

    	return c&0x3 != 0
    }
    
    func (c info) category() category {
    	small := c & catSmallMask
    	if small != 0 {
    		return category(small)
    	}
    	return category(c & catBigMask)
    }
    
    func (c info) joinType() info {
    	if c.isMapped() {
    		return 0
    	}
    	return (c >> joinShift) & joinMask
    }
    
    func (c info) isModifier() bool {
    	return c&(modifier|catSmallMask) == modifier
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top