| 8 | ) |
| 9 | |
| 10 | type structTableModel struct { |
| 11 | db *DB |
| 12 | table *chschema.Table |
| 13 | strct reflect.Value |
| 14 | columnar bool |
| 15 | } |
| 16 | |
| 17 | func newStructTableModel(db *DB, table *chschema.Table) *structTableModel { |
| 18 | return &structTableModel{db: db, table: table} |
nothing calls this directly
no outgoing calls
no test coverage detected