mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00
LibSQL: Add parsing and evaluation of BOOLEAN type literals
This allows you to enter TRUE or FALSE in a SQL statement for BOOLEAN types. Note that this differs from SQLite, which requires entering 1 or 0 for BOOLEANs; having explicit keywords feels a bit more natural.
This commit is contained in:
parent
c67c7dd1f2
commit
41e0e4cdd7
5 changed files with 43 additions and 0 deletions
|
@ -24,6 +24,11 @@ ResultOr<Value> StringLiteral::evaluate(ExecutionContext&) const
|
|||
return Value { value() };
|
||||
}
|
||||
|
||||
ResultOr<Value> BooleanLiteral::evaluate(ExecutionContext&) const
|
||||
{
|
||||
return Value { value() };
|
||||
}
|
||||
|
||||
ResultOr<Value> NullLiteral::evaluate(ExecutionContext&) const
|
||||
{
|
||||
return Value {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue