Numeric expression type.
This commit is contained in:
parent
1ac324e198
commit
829736279b
8 changed files with 41 additions and 52 deletions
14
sqlbuilder/numeric_expression.go
Normal file
14
sqlbuilder/numeric_expression.go
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package sqlbuilder
|
||||
|
||||
type NumericExpression interface {
|
||||
Expression
|
||||
numericExpression
|
||||
}
|
||||
|
||||
type numericExpression interface {
|
||||
isNumericExpression()
|
||||
}
|
||||
|
||||
type numericExpressionImpl struct{}
|
||||
|
||||
func (n *numericExpressionImpl) isNumericExpression() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue