mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 14:42:50 +02:00
LibSQL: Return a not-yet-implemented error for unimplemented expressions
Easier to debug than returning a NULL value.
This commit is contained in:
committed by
Linus Groh
parent
5c90aa357b
commit
e649ff5d31
@@ -12,11 +12,6 @@ namespace SQL::AST {
|
||||
|
||||
static const String s_posix_basic_metacharacters = ".^$*[]+\\";
|
||||
|
||||
ResultOr<Value> Expression::evaluate(ExecutionContext&) const
|
||||
{
|
||||
return Value::null();
|
||||
}
|
||||
|
||||
ResultOr<Value> NumericLiteral::evaluate(ExecutionContext&) const
|
||||
{
|
||||
Value ret(SQLType::Float);
|
||||
|
||||
Reference in New Issue
Block a user