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:
@@ -35,7 +35,6 @@ class Constraint {
|
||||
ConstraintOperator op;
|
||||
ValueType type;
|
||||
|
||||
bool boolValue;
|
||||
int64_t intValue;
|
||||
double doubleValue;
|
||||
// Doubles as string value
|
||||
@@ -47,7 +46,6 @@ public:
|
||||
int column,
|
||||
ConstraintOperator op,
|
||||
ValueType type,
|
||||
bool boolValue,
|
||||
int64_t intValue,
|
||||
double doubleValue,
|
||||
std::vector<unsigned char> blobValue
|
||||
@@ -56,7 +54,6 @@ public:
|
||||
int getColumn();
|
||||
ConstraintOperator getOperator();
|
||||
ValueType getType();
|
||||
bool getBool();
|
||||
int64_t getInt();
|
||||
double getDouble();
|
||||
std::vector<unsigned char> getBytes();
|
||||
|
Reference in New Issue
Block a user