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

Function convertA_Indices

internal/engine/postgresql/convert.go:138–147  ·  view source on GitHub ↗
(n *pg.A_Indices)

Source from the content-addressed store, hash-verified

136}
137
138func convertA_Indices(n *pg.A_Indices) *ast.A_Indices {
139 if n == nil {
140 return nil
141 }
142 return &ast.A_Indices{
143 IsSlice: n.IsSlice,
144 Lidx: convertNode(n.Lidx),
145 Uidx: convertNode(n.Uidx),
146 }
147}
148
149func convertA_Indirection(n *pg.A_Indirection) *ast.A_Indirection {
150 if n == nil {

Callers 1

convertNodeFunction · 0.85

Calls 1

convertNodeFunction · 0.85

Tested by

no test coverage detected