blob: 82f82f50d9d549b42c601540d3d05eb5f00b7512 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* XXX: Enable UseBlocks pragma and provide input to trigger block execution. */
PRAGMA UseBlocks;
SELECT
String::Base32Decode(value) as b32dec,
String::Base32StrictDecode(value) AS b32sdec,
String::Base64Decode(value) as b64dec,
String::Base64StrictDecode(value) AS b64sdec,
String::HexDecode(value) as xdec,
FROM Input
|