Returns an ID uniquely identifying this BTreeFile. Implementation note: you will need to generate this tableid somewhere and ensure that each BTreeFile has a "unique id," and that you always return the same value for a particular BTreeFile. We suggest hashing the absolute file name of the file under
()
| 67 | * @return an ID uniquely identifying this BTreeFile. |
| 68 | */ |
| 69 | public int getId() { |
| 70 | return tableid; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Returns the TupleDesc of the table stored in this DbFile. |
no outgoing calls