We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83983df commit 7969892Copy full SHA for 7969892
2 files changed
src/jsoniq/jars/rumbledb-2.1.1.jar
@@ -1,3 +1,3 @@
1
version https://git-lfs.github.com/spec/v1
2
-oid sha256:90e52a1958c478b4eec778b4c07bc147c7f604ac60740dc4b6baff5123f1cbd8
3
-size 79843137
+oid sha256:b774388eca9fa328d8906247907a3da19840ae22c2e2899ddc01b126c9dec0e9
+size 79843477
tests/test_sample.py
@@ -254,6 +254,20 @@ def test1(self):
254
print(rdd.count());
255
for str in rdd.take(10):
256
print(str);
257
+
258
+ test_df = rumble.jsoniq(r"""
259
+ {
260
+ "operations" : [
261
+ { "binary" : [ "and", "or"] },
262
+ { "unary" : ["not"] },
263
+ { "none" : [] }
264
+ ],
265
+ "bits" : [
266
+ 0, 1
267
+ ]
268
+ }
269
+ """);
270
+ test_df.pdf().show();
271
272
###################################################
273
###### Write back to the disk (or data lake) ######
0 commit comments