-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Remove the primary_key parameter of SecondaryIndex::GetSecondary{KeyPrefix,Value} #13207
Conversation
This pull request was exported from Phabricator. Differential Revision: D67184936 |
Summary: Pull Request resolved: facebook#13207 Differential Revision: D67184936
ea79fbe
to
63bdb47
Compare
This pull request was exported from Phabricator. Differential Revision: D67184936 |
great work! |
Summary: Pull Request resolved: facebook#13207 Differential Revision: D67184936
63bdb47
to
3bddcbf
Compare
This pull request was exported from Phabricator. Differential Revision: D67184936 |
Summary: Pull Request resolved: facebook#13207 Differential Revision: D67184936
3bddcbf
to
eeb2ebb
Compare
This pull request was exported from Phabricator. Differential Revision: D67184936 |
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
eeb2ebb
to
5a29838
Compare
This pull request was exported from Phabricator. Differential Revision: D67184936 |
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Differential Revision: D67184936
…refix,Value} (facebook#13207) Summary: The patch tweaks the new `SecondaryIndex` interface a bit by removing the `primary_key` parameter of `GetSecondaryKeyPrefix` and `GetSecondaryValue`. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time. Pull Request resolved: facebook#13207 Differential Revision: D67184936
This pull request has been merged in 3570e4f. |
The patch tweaks the new
SecondaryIndex
interface a bit by removing theprimary_key
parameter ofGetSecondaryKeyPrefix
andGetSecondaryValue
. This parameter is currently unused by existing implementations and it actually does not make sense to have the secondary index prefix depend on the primary key since it would lead to potential chicken-and-egg problems at query time.Differential Revision: D67184936