You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: clarify RawStmt is a Node type but appears inline in ParseResult
- Update comments to reference protobuf 'repeated RawStmt' definition
- Clarify that RawStmt IS a Node type (in Node oneof)
- Explain why ParseResult.stmts contains RawStmt objects inline
- Add protobuf message definitions to ENTRY_POINT.md for clarity
This is different from wrapped nodes like `{ RawStmt: {...} }` which are used when explicitly creating a Node.
76
+
Important: While RawStmt IS a Node type (listed in the Node oneof), when it appears in ParseResult.stmts, it's inline due to the "repeated RawStmt" protobuf definition. This is different from wrapped nodes like `{ RawStmt: {...} }` which are used when explicitly creating a Node for the deparser.
0 commit comments