()
| 113 | } |
| 114 | |
| 115 | func (ins *inserter) String() string { |
| 116 | s, err := ins.Compile() |
| 117 | if err != nil { |
| 118 | panic(err.Error()) |
| 119 | } |
| 120 | return prepareQueryForDisplay(s) |
| 121 | } |
| 122 | |
| 123 | func (ins *inserter) frame(fn func(*inserterQuery) error) *inserter { |
| 124 | return &inserter{prev: ins, fn: fn} |
nothing calls this directly
no test coverage detected