| 16 | QueryBlocks(ctx context.Context, query string, args ...any) (*BlockIter, error) |
| 17 | } |
| 18 | type baseQuery struct { |
| 19 | db *DB |
| 20 | conn IConn |
| 21 | tableModel TableModel |
| 22 | table *chschema.Table |
| 23 | err error |
| 24 | with []withQuery |
| 25 | modelTableName chschema.QueryWithArgs |
| 26 | tables []chschema.QueryWithArgs |
| 27 | columns []chschema.QueryWithArgs |
| 28 | settings []chschema.QueryWithArgs |
| 29 | flags internal.Flag |
| 30 | } |
| 31 | type withQuery struct { |
| 32 | name string |
| 33 | query chschema.QueryAppender |
nothing calls this directly
no outgoing calls
no test coverage detected