MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / ExprDebugString

Function ExprDebugString

pkg/sql/sem/tree/walk.go:1456–1460  ·  view source on GitHub ↗

ExprDebugString generates a multi-line debug string with one node per line in Go format.

(expr Expr)

Source from the content-addressed store, hash-verified

1454// ExprDebugString generates a multi-line debug string with one node per line in
1455// Go format.
1456func ExprDebugString(expr Expr) string {
1457 v := debugVisitor{}
1458 WalkExprConst(&v, expr)
1459 return v.buf.String()
1460}
1461
1462// StmtDebugString generates multi-line debug strings in Go format for the
1463// expressions that are part of the given statement.

Callers

nothing calls this directly

Calls 2

WalkExprConstFunction · 0.85
StringMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…