Closed gajus closed 5 years ago
sql.rawList misleading implies use of sql.raw as a requirement.
sql.rawList
sql.raw
Same goes for sql.valueList, sql.tupleList, sql.identifierList and sql.booleanExpression.
sql.valueList
sql.tupleList
sql.identifierList
sql.booleanExpression
All of them can be replaced with a generic sql.expressionList that works similar to .join().
sql.expressionList
.join()
And add an option to specify glue expression.
This has been already done.
Is expressionList is still valid?
expressionList
No. Just use sql.join.
sql.join
sql.rawList
misleading implies use ofsql.raw
as a requirement.Same goes for
sql.valueList
,sql.tupleList
,sql.identifierList
andsql.booleanExpression
.All of them can be replaced with a generic
sql.expressionList
that works similar to.join()
.