You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 6.1.4 Treatment of MISSING in SELECT VALUE, all of the examples (18-21) are not valid PartiQL. For example, SELECT VALUE {'a':v.a, 'b':v.b} FROM [{'a':1, 'b':1}, {'a':2}] has no binding for v and should actually be SELECT VALUE {'a':v.a, 'b':v.b} FROM [{'a':1, 'b':1}, {'a':2}] as v.
The text was updated successfully, but these errors were encountered:
In 6.1.4 Treatment of MISSING in SELECT VALUE, all of the examples (18-21) are not valid PartiQL. For example,
SELECT VALUE {'a':v.a, 'b':v.b} FROM [{'a':1, 'b':1}, {'a':2}]
has no binding forv
and should actually beSELECT VALUE {'a':v.a, 'b':v.b} FROM [{'a':1, 'b':1}, {'a':2}] as v
.The text was updated successfully, but these errors were encountered: