index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Userland
/
Libraries
/
LibSQL
/
AST
Age
Commit message (
Expand
)
Author
2022-03-18
Userland: Change static const variables to static constexpr
Lenny Maiorani
2022-03-13
Libraries: Use default constructors/destructors in LibSQL
Lenny Maiorani
2022-02-13
LibSQL: Return a not-yet-implemented error for unimplemented expressions
Timothy Flynn
2022-02-10
LibSQL: Return unimplemented errors from unimplemented MATCH expressions
Timothy Flynn
2022-02-10
LibSQL: Remove the now-unused ExecutionContext::result object
Timothy Flynn
2022-02-10
LibSQL: Convert SQL expression evaluation to use ResultOr
Timothy Flynn
2022-02-10
LibSQL+SQLServer: Introduce and use ResultOr<ValueType>
Timothy Flynn
2022-02-10
LibSQL: Do not crash when SELECTing from an empty table
Timothy Flynn
2022-02-10
LibSQL+SQLServer: Move LibSQL/SQLResult.[h,cpp] to LibSQL/Result.[h,cpp]
Timothy Flynn
2022-02-10
LibSQL+SQLServer: Return the new Result class from statement executions
Timothy Flynn
2022-02-09
LibSQL: Update list of expected statements
Daniel van Gerpen
2022-02-05
LibSQL: Implement a DESCRIBE TABLE statement
Mahmoud Mandour
2022-01-31
Everywhere: Update copyrights with my new serenityos.org e-mail :^)
Timothy Flynn
2022-01-23
LibSQL: Add simple REGEXP match
mnlrsn
2022-01-16
LibSQL: Introduce SELECT ... LIMIT xxx OFFSET yyy
Jan de Visser
2022-01-16
LibSQL+SQLServer: Implement first cut of SELECT ... ORDER BY foo
Jan de Visser
2022-01-07
LibSQL: Implement LIKE SQL expressions
Guilherme Gonçalves
2022-01-07
LibSQL: Properly parse ESCAPE expressions
Guilherme Gonçalves
2021-12-11
Everywhere: Fix -Winconsistent-missing-override warnings from Clang
Daniel Bertalan
2021-12-04
LibSQL: Gracefully react to unimplemented valid SQL
Jan de Visser
2021-12-04
LibSQL: Improve error handling
Jan de Visser
2021-11-10
LibSQL: Implement table joins
Jan de Visser
2021-11-10
LibSQL: Add current statement to the ExecutionContext
Jan de Visser
2021-10-25
LibSQL: Add better error handling to `evaluate` and `execute` methods
Jan de Visser
2021-10-25
LibSQL: First cut of SQL `WHERE` clause
Jan de Visser
2021-10-25
LibSQL: Implement evaluate() method of BinaryOperatorExpression
Jan de Visser
2021-10-05
LibSQL: Allow expressions and column names in SELECT ... FROM
Jan de Visser
2021-10-04
LibSQL: Check data types in INSERT statement parsing
Mahmoud Mandour
2021-10-04
LibSQL: Parse INSERT statement without column names
Mahmoud Mandour
2021-09-03
Everywhere: Prevent risky implicit casts of (Nonnull)RefPtr
Daniel Bertalan
2021-09-03
LibSQL: Replace Optional<NonnullRefPtr<T>> with RefPtr<T>
Andreas Kling
2021-08-21
LibSQL+SQLServer: Bare bones INSERT and SELECT statements
Jan de Visser
2021-07-08
LibSQL: Invent statement execution machinery and CREATE SCHEMA statement
Jan de Visser
2021-07-08
LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace
Jan de Visser
2021-06-24
LibSQL: Make lexer and parser more standard SQL compliant
Jan de Visser
2021-06-24
LibSQL: Move Lexer and Parser machinery to AST directory
Jan de Visser