mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-09-16 22:49:59 +00:00
Remove bool from Constraint
This commit is contained in:
@@ -4,7 +4,6 @@ Constraint::Constraint(
|
||||
int column,
|
||||
ConstraintOperator op,
|
||||
ValueType type,
|
||||
bool boolValue,
|
||||
int64_t intValue,
|
||||
double doubleValue,
|
||||
std::vector<unsigned char> blobValue
|
||||
@@ -12,7 +11,6 @@ Constraint::Constraint(
|
||||
this->column = column;
|
||||
this->op = op;
|
||||
this->type = type;
|
||||
this->boolValue = boolValue;
|
||||
this->intValue = intValue;
|
||||
this->doubleValue = doubleValue;
|
||||
this->blobValue = blobValue;
|
||||
@@ -30,10 +28,6 @@ ValueType Constraint::getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
bool Constraint::getBool() {
|
||||
return boolValue;
|
||||
}
|
||||
|
||||
int64_t Constraint::getInt() {
|
||||
return intValue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user