## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> ZLIB_DECOMPRESS[ZLIB_DECOMPRESS]:::quoted ZLIB_DECOMPRESS --> End((END)) ``` ## Purpose The `ZLIB_DECOMPRESS` SQL function decompresses a BLOB using the Zlib-algorithm. Parameters: - input: the BLOB to decompress. Returns: the decompressed BLOB.