Method
visit_MultiAssignRef
(self, node: pgast.MultiAssignRef)
Source from the content-addressed store, hash-verified
| 606 | self.write(' NULLS LAST') |
| 607 | |
| 608 | def visit_MultiAssignRef(self, node: pgast.MultiAssignRef) -> None: |
| 609 | self.write('(') |
| 610 | for index, col in enumerate(node.columns): |
| 611 | if index > 0: |
| 612 | self.write(', ') |
| 613 | self.write(common.quote_col(col)) |
| 614 | self.write(') = ') |
| 615 | self.visit(node.source) |
| 616 | |
| 617 | def visit_LiteralExpr(self, node: pgast.LiteralExpr) -> None: |
| 618 | self.write(node.expr) |
Callers
nothing calls this directly
Tested by
no test coverage detected