Scanning in other File Structures
Above examples are for heap files
- simple, unordered, maybe indexed, no hashing
Other access file structures in PostgreSQL:
-
btree , hash , gist , gin
- each implements:
- startscan, getnext, endscan
- insert, delete
- other file-specific operators
|