Skip to content

Commit e93a624

Browse files
committed
char sequence fix
1 parent 47b2201 commit e93a624

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Diff for: lib/src/main/java/io/cloudquery/scalar/Binary.java

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ public void set(Object value) throws ValidationException {
6060
}
6161

6262
if (value instanceof CharSequence sequence) {
63+
this.valid = true;
6364
this.value = Base64.decodeBase64(sequence.toString());
6465
return;
6566
}

Diff for: lib/src/main/java/io/cloudquery/scalar/Bool.java

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package io.cloudquery.scalar;
22

33
import org.apache.arrow.vector.types.pojo.ArrowType;
4-
import org.apache.commons.codec.binary.Base64;
54

65
public class Bool implements Scalar {
76
protected boolean value;

0 commit comments

Comments
 (0)