| 10 | ) |
| 11 | |
| 12 | type structTableModel struct { |
| 13 | table *Table |
| 14 | rel *Relation |
| 15 | joins []join |
| 16 | |
| 17 | root reflect.Value |
| 18 | index []int |
| 19 | |
| 20 | strct reflect.Value |
| 21 | structInited bool |
| 22 | structInitErr error |
| 23 | } |
| 24 | |
| 25 | var _ TableModel = (*structTableModel)(nil) |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected