blob: 8a3ff2213949451a1882563e9f0eed99453d7a7c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* custom error: <main>:5:13: Error: Cannot parse string value from entity (#) */
pragma DebugPositions;
select
Yson::ConvertToString(d["answer"]),
Yson::ConvertToString(d["query"])
from (
select "{answer=foo;query=#}"y as d
)
|