Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,10 @@ Even more queries can be found [here](https://colab.research.google.com/github/R

# Latest updates

## Version 2.1.1
- Extend data frame detection to nested arrays.
- More bugfixes.

## Version 2.1.1
- Fixed a bug preventing the display of some query outputs as a Data Frame.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "jsoniq"
version = "2.1.1"
version = "2.1.2"
description = "Python edition of RumbleDB, a JSONiq engine"
requires-python = ">=3.11"
dependencies = [
Expand Down
4 changes: 2 additions & 2 deletions src/jsoniq/jars/rumbledb-2.1.1.jar
Git LFS file not shown
14 changes: 14 additions & 0 deletions tests/test_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,20 @@ def test1(self):
print(rdd.count());
for str in rdd.take(10):
print(str);

test_df = rumble.jsoniq(r"""
{
"operations" : [
{ "binary" : [ "and", "or"] },
{ "unary" : ["not"] },
{ "none" : [] }
],
"bits" : [
0, 1
]
}
""");
print(test_df.pdf());

###################################################
###### Write back to the disk (or data lake) ######
Expand Down
Loading