()
| 1559 | } |
| 1560 | |
| 1561 | func (q *Query) isSliceModelWithData() bool { |
| 1562 | if !q.hasTableModel() { |
| 1563 | return false |
| 1564 | } |
| 1565 | m, ok := q.tableModel.(*sliceTableModel) |
| 1566 | return ok && m.sliceLen > 0 |
| 1567 | } |
| 1568 | |
| 1569 | //------------------------------------------------------------------------------ |
| 1570 |
no test coverage detected