()
| 37 | } |
| 38 | |
| 39 | func (e UnsupportedCompressionError) Error() string { |
| 40 | return "Compression algorithm: " + e.algorithm + |
| 41 | " not supported on table: " + e.table + |
| 42 | " for column: " + e.column |
| 43 | } |
| 44 | |
| 45 | // CompressionVerifier provides support for verifying the payload of compressed columns that |
| 46 | // may have different hashes for the same data by first decompressing the compressed |
nothing calls this directly
no outgoing calls
no test coverage detected