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, it's needed to get commit_ts of a schema version when inserting schema cache, the mvccGetByKey interface is used to do so. But this makes the entire schema reload process appear inconsistent. Snapshot-related interfaces are used during the reading of schema version and schema diff version, while mvcc interfaces are used when it's necessary to read the commit_ts of a schema diff transaction. Moreover, during the process of using mvccGetByKey, we have already encountered the following issues leading to schema cache invalidation:
Enhancement
Currently, it's needed to get
commit_ts
of a schema version when inserting schema cache, themvccGetByKey
interface is used to do so. But this makes the entire schema reload process appear inconsistent. Snapshot-related interfaces are used during the reading of schema version and schema diff version, while mvcc interfaces are used when it's necessary to read thecommit_ts of
a schema diff transaction. Moreover, during the process of using mvccGetByKey, we have already encountered the following issues leading to schema cache invalidation:The text was updated successfully, but these errors were encountered: