blob: 628febe899e3cf702a4d2ebfe4d5f47bc648921d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* XXX: Enable UseBlocks pragma and provide input to trigger block execution. */
PRAGMA UseBlocks;
SELECT
value,
String::AsciiToLower(value) AS ascii_lower,
String::AsciiToUpper(value) AS ascii_upper,
String::AsciiToTitle(value) AS ascii_title,
FROM Input;
|