v1.11.2
Bug fixes
-
GH-1860: Fix parsing for vectors of literals.
This was broken in two ways:
- with the
(LITERAL)[]
syntax, the parser would not recognize literals using type constructors - with the syntax
LITERAL[]
, we'd try to store the parsed value into a vector
- with the
-
GH-1847: Fix resynchronization issue with trimmed input.
When input had been trimmed,
View::advanceToNextData
could end up returning a view starting ahead of the valid area. -
GH-1852: Fix
skip
with units.For unit parsing with
skip
, we would create a temporary instance but wouldn't properly initialize it, meaning for example that parameters weren't available. We now generally fully initialize any destination, even if temporary.