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

Function convertInteger

internal/engine/postgresql/convert.go:1815–1822  ·  view source on GitHub ↗
(n *pg.Integer)

Source from the content-addressed store, hash-verified

1813}
1814
1815func convertInteger(n *pg.Integer) *ast.Integer {
1816 if n == nil {
1817 return nil
1818 }
1819 return &ast.Integer{
1820 Ival: int64(n.Ival),
1821 }
1822}
1823
1824func convertIntoClause(n *pg.IntoClause) *ast.IntoClause {
1825 if n == nil {

Callers 2

convertA_ConstFunction · 0.85
convertNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected