(p *PrettyCfg)
| 905 | } |
| 906 | |
| 907 | func (node *OnJoinCond) doc(p *PrettyCfg) pretty.Doc { |
| 908 | e := node.Expr |
| 909 | if p.Simplify { |
| 910 | e = StripParens(e) |
| 911 | } |
| 912 | return p.nestUnder(pretty.Keyword("ON"), p.Doc(e)) |
| 913 | } |
| 914 | |
| 915 | func (node *Insert) doc(p *PrettyCfg) pretty.Doc { |
| 916 | items := make([]pretty.TableRow, 0, 8) |
nothing calls this directly
no test coverage detected