MCPcopy Index your code
hub / github.com/sqlc-dev/sqlc / convertFromExpr

Function convertFromExpr

internal/engine/postgresql/convert.go:1593–1601  ·  view source on GitHub ↗
(n *pg.FromExpr)

Source from the content-addressed store, hash-verified

1591}
1592
1593func convertFromExpr(n *pg.FromExpr) *ast.FromExpr {
1594 if n == nil {
1595 return nil
1596 }
1597 return &ast.FromExpr{
1598 Fromlist: convertSlice(n.Fromlist),
1599 Quals: convertNode(n.Quals),
1600 }
1601}
1602
1603func convertFuncCall(n *pg.FuncCall) *ast.FuncCall {
1604 if n == nil {

Callers 2

convertQueryFunction · 0.85
convertNodeFunction · 0.85

Calls 2

convertSliceFunction · 0.85
convertNodeFunction · 0.85

Tested by

no test coverage detected