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

Function convertAlterSystemStmt

internal/engine/postgresql/convert.go:475–482  ·  view source on GitHub ↗
(n *pg.AlterSystemStmt)

Source from the content-addressed store, hash-verified

473}
474
475func convertAlterSystemStmt(n *pg.AlterSystemStmt) *ast.AlterSystemStmt {
476 if n == nil {
477 return nil
478 }
479 return &ast.AlterSystemStmt{
480 Setstmt: convertVariableSetStmt(n.Setstmt),
481 }
482}
483
484func convertAlterTSConfigurationStmt(n *pg.AlterTSConfigurationStmt) *ast.AlterTSConfigurationStmt {
485 if n == nil {

Callers 1

convertNodeFunction · 0.85

Calls 1

convertVariableSetStmtFunction · 0.85

Tested by

no test coverage detected