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