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
We now keep even strings as byte vector in OwnedValue. Next step is to teach OwnedValue about blobs and strings that are managed by someone else and the figure out if we can just pin the btree page somehow and point there. This would be essentially zero-copy to return result row to apps, following SQLite's design.
The text was updated successfully, but these errors were encountered:
Hi @penberg. Do you know in what situations SQLite values should be static and not dynamic? Because I was trying to find it in sqlite source code, but it was not obvious to me the flow of data where the static data is referenced and when it will not be used anymore. This would help me understand the lifetime of the value so that I can attempt to do a zerocopy operation.
We now keep even strings as byte vector in
OwnedValue
. Next step is to teachOwnedValue
about blobs and strings that are managed by someone else and the figure out if we can just pin the btree page somehow and point there. This would be essentially zero-copy to return result row to apps, following SQLite's design.The text was updated successfully, but these errors were encountered: