MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / GetBinaryExpression

Function GetBinaryExpression

pkg/sql/ast/pool.go:735–737  ·  view source on GitHub ↗

GetBinaryExpression gets a BinaryExpression from the pool

()

Source from the content-addressed store, hash-verified

733
734// GetBinaryExpression gets a BinaryExpression from the pool
735func GetBinaryExpression() *BinaryExpression {
736 return binaryExprPool.Get().(*BinaryExpression)
737}
738
739// PutBinaryExpression returns a BinaryExpression to the pool
740func PutBinaryExpression(expr *BinaryExpression) {

Calls 1

GetMethod · 0.45