We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47b2201 commit e93a624Copy full SHA for e93a624
lib/src/main/java/io/cloudquery/scalar/Binary.java
@@ -60,6 +60,7 @@ public void set(Object value) throws ValidationException {
60
}
61
62
if (value instanceof CharSequence sequence) {
63
+ this.valid = true;
64
this.value = Base64.decodeBase64(sequence.toString());
65
return;
66
lib/src/main/java/io/cloudquery/scalar/Bool.java
@@ -1,7 +1,6 @@
1
package io.cloudquery.scalar;
2
3
import org.apache.arrow.vector.types.pojo.ArrowType;
4
-import org.apache.commons.codec.binary.Base64;
5
6
public class Bool implements Scalar {
7
protected boolean value;
0 commit comments