1
0
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:
Colin Dellow
2018-03-12 20:50:30 -04:00
parent acc15256ec
commit 95748a5192
3 changed files with 0 additions and 11 deletions

View File

@@ -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();