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
挖坟,我页在看这个项目,但是作者定义的时候就是有浪费的。
static class UpdateLogInfo {
long xid;
int pgno;
short offset;
byte[] oldRaw;
byte[] newRaw;
}
这里offset是short,所以给低16位没问题,只是中间16位确实是被浪费了
uid由offset和pgno组成,pgno占高32位,offset占低32位
The text was updated successfully, but these errors were encountered: