-
Notifications
You must be signed in to change notification settings - Fork 39
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
Support GEOSHAPE field type in RediSearch #191
Conversation
* delete mock * coverage * fix test * indent * change to var - check * cluster test * add opthin to connect cluster with dotnet test * use key in topk tests * get env vars inside RedisFixture * skip if redis * add skip where needed * Execute broadcast * delete cluster tests * RedisFixture fix * add to contributing * run cluster on CI * wip * fix / * -d * delete restore * return restore * add -RC3 * add RC3 to docker-compose * try define both .net 6 and 7 * Skip if cluster where needed * add names * skip configOnTimeout if cluster * try to fix win tests * tests names +fix win version * fix versions * versions * win verer * wording * change to OSSCluster * isOSSCluster * update skip reason to OSS cluster * general dispose * general dispose for the rest of the disposes --------- Co-authored-by: Chayim <[email protected]>
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #191 +/- ##
==========================================
- Coverage 94.06% 94.03% -0.04%
==========================================
Files 82 82
Lines 5109 5127 +18
Branches 483 483
==========================================
+ Hits 4806 4821 +15
- Misses 176 180 +4
+ Partials 127 126 -1
☔ View full report in Codecov by Sentry. |
Examples/GeoShape.md
Outdated
2) "POLYGON ((1 1, 1 200, 200 200, 200 1, 1 1))" | ||
``` | ||
|
||
### Point type |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Searching with Co-ordinates
@@ -38,6 +40,7 @@ internal void AddSchemaArgs(List<object> args) | |||
{ | |||
FieldType.Text => "TEXT", | |||
FieldType.Geo => "GEO", | |||
FieldType.GeoShape => "GEOSHAPE", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good
Closes #188