-
Notifications
You must be signed in to change notification settings - Fork 165
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
RNET-1132: Add tests for sync schema migration #3570
Conversation
Pull Request Test Coverage Report for Build 8629196354Details
💛 - Coveralls |
@@ -473,9 +475,9 @@ private async Task<BaasApp> CreateFlxApp(string name) | |||
{ | |||
state = "enabled", | |||
database_name = GetSyncDatabaseName(name), | |||
queryable_fields_names = new[] { "Int64Property", "GuidProperty", "DoubleProperty", "Int", "Guid", "Id", "PartitionLike" }, | |||
queryable_fields_names = new[] { "Int64Property", "GuidProperty", "DoubleProperty", "Int", "Guid", "Id", "PartitionLike", "Differentiator" }, |
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.
Not a biggie, but maybe we should find another name for "differentiator"? We already use it for differentiating the apps, maybe it could create confusion
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.
We do the same in dart.
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.
I feel it's a reasonable name given that it differentiates things based on some criteria. Is it the best name - probably not, but I liked it better than PartitionLike
😄
@@ -473,9 +475,9 @@ private async Task<BaasApp> CreateFlxApp(string name) | |||
{ | |||
state = "enabled", | |||
database_name = GetSyncDatabaseName(name), | |||
queryable_fields_names = new[] { "Int64Property", "GuidProperty", "DoubleProperty", "Int", "Guid", "Id", "PartitionLike" }, | |||
queryable_fields_names = new[] { "Int64Property", "GuidProperty", "DoubleProperty", "Int", "Guid", "Id", "PartitionLike", "Differentiator" }, |
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.
We do the same in dart.
Description
Fixes #3569