| 57 | } |
| 58 | |
| 59 | type mockTableIR struct { |
| 60 | dbName string |
| 61 | tblName string |
| 62 | chunIndex int |
| 63 | data [][]driver.Value |
| 64 | selectedField string |
| 65 | selectedLen int |
| 66 | specCmt []string |
| 67 | colTypes []string |
| 68 | colNames []string |
| 69 | escapeBackSlash bool |
| 70 | hasImplicitRowID bool |
| 71 | rowErr error |
| 72 | rows *sql.Rows |
| 73 | SQLRowIter |
| 74 | } |
| 75 | |
| 76 | func (m *mockTableIR) RawRows() *sql.Rows { |
| 77 | return m.rows |
nothing calls this directly
no outgoing calls
no test coverage detected