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

Function exprListSQL

pkg/sql/ast/sql.go:1275–1281  ·  view source on GitHub ↗
(exprs []Expression)

Source from the content-addressed store, hash-verified

1273}
1274
1275func exprListSQL(exprs []Expression) string {
1276 parts := make([]string, len(exprs))
1277 for i, e := range exprs {
1278 parts[i] = exprSQL(e)
1279 }
1280 return strings.Join(parts, ", ")
1281}
1282
1283func orderBySQL(orders []OrderByExpression) string {
1284 parts := make([]string, len(orders))

Callers 13

SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
SQLMethod · 0.70
windowSpecSQLFunction · 0.70

Calls 1

exprSQLFunction · 0.70

Tested by

no test coverage detected