mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-19 16:59:47 +00:00
LibSQL: Move Lexer and Parser machinery to AST directory
The SQL engine is expected to be a fairly sizeable piece of software. Therefore we're starting to restructure the codebase for growth.
This commit is contained in:
parent
e0f1c237d2
commit
4198f7e1af
Notes:
sideshowbarker
2024-07-18 11:36:48 +09:00
Author: https://github.com/JanDeVisser
Commit: 4198f7e1af
Pull-request: https://github.com/SerenityOS/serenity/pull/8193
Reviewed-by: https://github.com/trflynn89 ✅
24 changed files with 281 additions and 278 deletions
|
@ -127,7 +127,7 @@ void insert_into_and_scan_btree(int num_keys);
|
|||
NonnullRefPtr<SQL::BTree> setup_btree(SQL::Heap& heap)
|
||||
{
|
||||
SQL::TupleDescriptor tuple_descriptor;
|
||||
tuple_descriptor.append({ "key_value", SQL::SQLType::Integer, SQL::Order::Ascending });
|
||||
tuple_descriptor.append({ "key_value", SQL::SQLType::Integer, SQL::AST::Order::Ascending });
|
||||
|
||||
auto root_pointer = heap.user_value(0);
|
||||
if (!root_pointer) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue