Functions go doc.
This commit is contained in:
parent
13c671fa3f
commit
4ab9d73a8b
7 changed files with 141 additions and 59 deletions
|
|
@ -53,8 +53,8 @@ var CONCAT = func(expressions ...Expression) StringExpression {
|
|||
return jet.CONCAT(explicitLiteralCasts(expressions...)...)
|
||||
}
|
||||
|
||||
func CONCAT_WS(expressions ...Expression) StringExpression {
|
||||
return jet.CONCAT_WS(explicitLiteralCasts(expressions...)...)
|
||||
func CONCAT_WS(separator Expression, expressions ...Expression) StringExpression {
|
||||
return jet.CONCAT_WS(explicitLiteralCast(separator), explicitLiteralCasts(expressions...)...)
|
||||
}
|
||||
|
||||
var CONVERT = jet.CONVERT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue