some TODOs removed..
This commit is contained in:
10
parser.h
10
parser.h
@@ -125,11 +125,11 @@ namespace usql {
|
||||
|
||||
bool isNull() override { return true; }
|
||||
|
||||
long getIntegerValue() override { throw Exception("not supported on null value"); };
|
||||
double getDoubleValue() override { throw Exception("not supported on null value"); };
|
||||
std::string getStringValue() override { throw Exception("not supported on null value"); };
|
||||
long getDateValue() override { throw Exception("not supported on null value"); };
|
||||
bool getBooleanValue() override { return false; };
|
||||
long getIntegerValue() override { throw Exception("getIntegerValue not supported on NullValueNode"); };
|
||||
double getDoubleValue() override { throw Exception("getDoubleValue not supported on NullValueNode"); };
|
||||
std::string getStringValue() override { throw Exception("getStringValue not supported on NullValueNode"); };
|
||||
long getDateValue() override { throw Exception("getDateValue not supported on NullValueNode"); };
|
||||
bool getBooleanValue() override { throw Exception("getBooleanValue not supported on NullValueNode"); };
|
||||
};
|
||||
|
||||
struct IntValueNode : ValueNode {
|
||||
|
||||
Reference in New Issue
Block a user