(n *pg.AlterSystemStmt)
| 473 | } |
| 474 | |
| 475 | func 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 | |
| 484 | func convertAlterTSConfigurationStmt(n *pg.AlterTSConfigurationStmt) *ast.AlterTSConfigurationStmt { |
| 485 | if n == nil { |
no test coverage detected