noop implements the ClickHouse interface but discards all operations. This is useful for testing or when ClickHouse functionality is not needed, such as in development environments or when running integration tests.
| 11 | // This is useful for testing or when ClickHouse functionality is not needed, |
| 12 | // such as in development environments or when running integration tests. |
| 13 | type noop struct{} |
| 14 | |
| 15 | var _ ClickHouse = (*noop)(nil) |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected