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
Not quite sure how that would look like. Presumably we'd detect the column type JSON and then allow SQLite JSON operations on it?
How would it look in the associated structure? Expose it as Data, but at least in the Lighter API provide a wrapper that allows direct access?
structPerson{varname:StringvarprivateAddress:[UInt8]// in raw API?varbusinessAddress:[UInt8]// in raw API?}structAddress:Codable{varstreet:Stringvarcity:String}
We can't use Codable directly here (and Codable is really slow anyways, so not that desirable).
The text was updated successfully, but these errors were encountered:
Not quite sure how that would look like. Presumably we'd detect the column type
JSON
and then allow SQLite JSON operations on it?How would it look in the associated structure? Expose it as Data, but at least in the Lighter API provide a wrapper that allows direct access?
We can't use
Codable
directly here (and Codable is really slow anyways, so not that desirable).The text was updated successfully, but these errors were encountered: