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
The code in schema.rs assumes the expression for "generationExpression" should be a valid JSON for some reason, it shouldn't, it doesn't specify this in the protocol.
The code tries to deserialize this as a JSON VALUE and fails, thus unable to open the table.
Even the unit tests wrongly assume this, see the extra escaped double quotes: {"name":"id2","type":"integer","nullable":true,"metadata":{"delta.generationExpression":"\"id * 10\""}},]
The text was updated successfully, but these errors were encountered:
The code in schema.rs assumes the expression for "generationExpression" should be a valid JSON for some reason, it shouldn't, it doesn't specify this in the protocol.
The code tries to deserialize this as a JSON VALUE and fails, thus unable to open the table.
Even the unit tests wrongly assume this, see the extra escaped double quotes:
{"name":"id2","type":"integer","nullable":true,"metadata":{"delta.generationExpression":"\"id * 10\""}},]
The text was updated successfully, but these errors were encountered: