Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSON Module rewrite with custom JSONPath implementation #974

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed build issue
  • Loading branch information
Vijay-Nirmal committed Feb 1, 2025
commit ebb4f256769e61c5ea08856242e2691a3ed6d2d7
1 change: 0 additions & 1 deletion modules/GarnetJSON/JSONPath/QueryFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,4 @@ public QueryFilter(QueryExpression expression)
}
}
}
}
}
2 changes: 2 additions & 0 deletions test/Garnet.test/GarnetJSON/JSONPath/JsonPathParseTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#region License
// Copyright (c) 2007 James Newton-King
//
// Permission is hereby granted, free of charge, to any person
Expand All @@ -20,6 +21,7 @@
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
#endregion

using GarnetJSON.JSONPath;
using NUnit.Framework;
Expand Down
4 changes: 3 additions & 1 deletion test/Garnet.test/GarnetJSON/JSONPath/QueryExpressionTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2007 James Newton-King
#region License
// Copyright (c) 2007 James Newton-King
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand All @@ -20,6 +21,7 @@
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
#endregion

using GarnetJSON.JSONPath;
using NUnit.Framework;
Expand Down
Loading