()
| 270 | } |
| 271 | |
| 272 | func (q Query) hasRetType() bool { |
| 273 | scanned := q.Cmd == metadata.CmdOne || q.Cmd == metadata.CmdMany || |
| 274 | q.Cmd == metadata.CmdBatchMany || q.Cmd == metadata.CmdBatchOne |
| 275 | return scanned && !q.Ret.isEmpty() |
| 276 | } |
| 277 | |
| 278 | func (q Query) TableIdentifierAsGoSlice() string { |
| 279 | escapedNames := make([]string, 0, 3) |
no test coverage detected