📄 ridscan.java
字号:
package simpledb.index.query;import simpledb.record.RID;import simpledb.query.Scan;/** * A rid-scan is a scan which has an index * as one of its leaves. * @author Edward Sciore * */public interface RidScan extends Scan { /** * Returns the dataRid value obtained from the current * index record in the scan. * @return the current dataRid value. */ public RID getDataRid();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -