1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 07:07:34 +00:00

LibSQL: Hash index implementation for the SQL storage layer

This patch implements a basic hash index. It uses the extendible hashing
algorith. Also includes a test file.
This commit is contained in:
Jan de Visser 2021-06-17 14:07:29 -04:00 committed by Andreas Kling
parent 224804b424
commit 267eb3b329
5 changed files with 945 additions and 0 deletions

View file

@ -35,6 +35,10 @@ class ErrorStatement;
class ExistsExpression;
class Expression;
class GroupByClause;
class HashBucket;
class HashDirectoryNode;
class HashIndex;
class HashIndexIterator;
class Heap;
class InChainedExpression;
class Index;