Skip to content
Snippets Groups Projects
Verified Commit 89ad5f2a authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: SELECT for GRPC API

parent 47494971
No related branches found
No related tags found
2 merge requests!80Release 0.9,!72F grpc select
Pipeline #30373 failed
......@@ -32,6 +32,8 @@ public class BooleanDatatype extends AbstractDatatype {
public SingleValue parseValue(final Object value) throws Message {
if (value instanceof BooleanValue) {
return (SingleValue) value;
} else if (value instanceof CollectionValue) {
throw ServerMessages.DATA_TYPE_DOES_NOT_ACCEPT_COLLECTION_VALUES;
} else if (value instanceof SingleValue) {
return parse(((SingleValue) value).toDatabaseString());
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment