| 9 | ) |
| 10 | |
| 11 | type QRecordStream struct { |
| 12 | schemaLatch *concurrency.Latch[types.QRecordSchema] |
| 13 | Records chan []types.QValue |
| 14 | schemaDebug *types.NullableSchemaDebug |
| 15 | err error |
| 16 | closeOnce sync.Once |
| 17 | } |
| 18 | |
| 19 | func NewQRecordStream(buffer int) *QRecordStream { |
| 20 | return &QRecordStream{ |
nothing calls this directly
no outgoing calls
no test coverage detected