MCPcopy
hub / github.com/sqlc-dev/sqlc / convertA_Indirection

Function convertA_Indirection

internal/engine/postgresql/convert.go:149–157  ·  view source on GitHub ↗
(n *pg.A_Indirection)

Source from the content-addressed store, hash-verified

147}
148
149func convertA_Indirection(n *pg.A_Indirection) *ast.A_Indirection {
150 if n == nil {
151 return nil
152 }
153 return &ast.A_Indirection{
154 Arg: convertNode(n.Arg),
155 Indirection: convertSlice(n.Indirection),
156 }
157}
158
159func convertA_Star(n *pg.A_Star) *ast.A_Star {
160 if n == nil {

Callers 1

convertNodeFunction · 0.85

Calls 2

convertNodeFunction · 0.85
convertSliceFunction · 0.85

Tested by

no test coverage detected