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
Currently, SQL table write() method always calls initializeOffsets() method for all blobs. This can bring extra unnecessary overhead. It is natural that user application is responsible for correct settings of blobs. So if it is really necessary, application can call initializeOffsets() method by itself.
Therefore, it could be ok to remove calling of initializeOffsets() method completely from SQL Table write() method.
The text was updated successfully, but these errors were encountered:
Currently, SQL table
write()
method always callsinitializeOffsets()
method for all blobs. This can bring extra unnecessary overhead. It is natural that user application is responsible for correct settings of blobs. So if it is really necessary, application can callinitializeOffsets()
method by itself.Therefore, it could be ok to remove calling of
initializeOffsets()
method completely from SQL Tablewrite()
method.The text was updated successfully, but these errors were encountered: