(p *PrettyCfg)
| 2465 | } |
| 2466 | |
| 2467 | func (node *FetchCursor) doc(p *PrettyCfg) pretty.Doc { |
| 2468 | return pretty.ConcatSpace(pretty.Keyword("FETCH"), node.CursorStmt.doc(p)) |
| 2469 | } |
| 2470 | |
| 2471 | func (node *MoveCursor) doc(p *PrettyCfg) pretty.Doc { |
| 2472 | return pretty.ConcatSpace(pretty.Keyword("MOVE"), node.CursorStmt.doc(p)) |
nothing calls this directly
no test coverage detected