MCPcopy
hub / github.com/geldata/gel / visit_MultiAssignRef

Method visit_MultiAssignRef

edb/pgsql/codegen.py:608–615  ·  view source on GitHub ↗
(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

Calls 2

writeMethod · 0.95
visitMethod · 0.95

Tested by

no test coverage detected