ladybird/Userland/Libraries/LibSQL/AST
Jan de Visser 3425730294 LibSQL: Implement table joins
This patch introduces table joins. It uses a pretty dumb algorithm-
starting with a singleton '__unity__' row consisting of a single boolean
value, a cartesian product of all tables in the 'FROM' clause is built.
This cartesian product is then filtered through the 'WHERE' clause,
again without any smarts just using brute force.

This patch required a bunch of busy work to allow for example the
ColumnNameExpression having to deal with multiple tables potentially
having columns with the same name.
2021-11-10 14:47:49 +01:00
..
AST.h LibSQL: Add current statement to the ExecutionContext 2021-11-10 14:47:49 +01:00
CreateSchema.cpp
CreateTable.cpp
Expression.cpp LibSQL: Implement table joins 2021-11-10 14:47:49 +01:00
Insert.cpp LibSQL: Add better error handling to evaluate and execute methods 2021-10-25 12:59:42 +02:00
Lexer.cpp
Lexer.h
Parser.cpp Everywhere: Prevent risky implicit casts of (Nonnull)RefPtr 2021-09-03 23:20:23 +02:00
Parser.h LibSQL: Replace Optional<NonnullRefPtr<T>> with RefPtr<T> 2021-09-03 15:36:51 +02:00
Select.cpp LibSQL: Implement table joins 2021-11-10 14:47:49 +01:00
Statement.cpp LibSQL: Add current statement to the ExecutionContext 2021-11-10 14:47:49 +01:00
SyntaxHighlighter.cpp
SyntaxHighlighter.h
Token.cpp
Token.h