Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-08 | LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace | Jan de Visser | |
The Order enum is used in the Meta component of LibSQL. Using this enum meant having to include the monster AST/AST.h include file. Furthermore, they are sort of basic and therefore can live in the general SQL namespace. Moved to LibSQL/Type.h. Also introduced a new class, SQLResult, which is needed in future patches. | |||
2021-06-24 | LibSQL: Move Lexer and Parser machinery to AST directory | Jan de Visser | |
The SQL engine is expected to be a fairly sizeable piece of software. Therefore we're starting to restructure the codebase for growth. | |||
2021-06-22 | LibSQL: Create databases in writable directory | coderdreams | |
2021-06-19 | LibSQL: Hash index implementation for the SQL storage layer | Jan de Visser | |
This patch implements a basic hash index. It uses the extendible hashing algorith. Also includes a test file. |