-
Notifications
You must be signed in to change notification settings - Fork 350
Consolidate MapData.from_multiple_map_data into MapData.from_multiple_data #4410
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
Open
esantorella
wants to merge
1
commit into
facebook:main
Choose a base branch
from
esantorella:export-D84066098
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+23
−24
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@esantorella has exported this pull request. If you are a Meta employee, you can view the originating Diff in D84066098. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4410 +/- ##
=======================================
Coverage 96.17% 96.17%
=======================================
Files 555 555
Lines 57453 57457 +4
=======================================
+ Hits 55253 55259 +6
+ Misses 2200 2198 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
c21236f
to
a2bb2fb
Compare
esantorella
added a commit
to esantorella/Ax
that referenced
this pull request
Oct 8, 2025
…_data (facebook#4410) Summary: **Context**: The following very similar methods exist: * `Data.from_multiple_data`: Combines multiple `Data` (not MapData) into one `Data` * `MapData.from_multiple_data`: Converts any data arguments into `MapData` if they are not already and then calls `MapData.from_multiple_map_data` * `MapData.from_multiple_map_data`: Combines `MapData`s into one `MapData` **This PR**: * Removes `MapData.from_multiple_map_data`; `MapData.from_multiple_data` should now be used Reviewed By: Balandat Differential Revision: D84066098
esantorella
added a commit
to esantorella/Ax
that referenced
this pull request
Oct 8, 2025
…_data (facebook#4410) Summary: **Context**: The following very similar methods exist: * `Data.from_multiple_data`: Combines multiple `Data` (not MapData) into one `Data` * `MapData.from_multiple_data`: Converts any data arguments into `MapData` if they are not already and then calls `MapData.from_multiple_map_data` * `MapData.from_multiple_map_data`: Combines `MapData`s into one `MapData` **This PR**: * Removes `MapData.from_multiple_map_data`; `MapData.from_multiple_data` should now be used Reviewed By: Balandat Differential Revision: D84066098
a2bb2fb
to
ebd0b00
Compare
esantorella
added a commit
to esantorella/Ax
that referenced
this pull request
Oct 8, 2025
…_data (facebook#4410) Summary: **Context**: The following very similar methods exist: * `Data.from_multiple_data`: Combines multiple `Data` (not MapData) into one `Data` * `MapData.from_multiple_data`: Converts any data arguments into `MapData` if they are not already and then calls `MapData.from_multiple_map_data` * `MapData.from_multiple_map_data`: Combines `MapData`s into one `MapData` **This PR**: * Removes `MapData.from_multiple_map_data`; `MapData.from_multiple_data` should now be used Reviewed By: Balandat Differential Revision: D84066098
5558101
to
66e034e
Compare
esantorella
added a commit
to esantorella/Ax
that referenced
this pull request
Oct 9, 2025
…_data (facebook#4410) Summary: **Context**: The following very similar methods exist: * `Data.from_multiple_data`: Combines multiple `Data` (not MapData) into one `Data` * `MapData.from_multiple_data`: Converts any data arguments into `MapData` if they are not already and then calls `MapData.from_multiple_map_data` * `MapData.from_multiple_map_data`: Combines `MapData`s into one `MapData` **This PR**: * Removes `MapData.from_multiple_map_data`; `MapData.from_multiple_data` should now be used Reviewed By: Balandat Differential Revision: D84066098
66e034e
to
6a5838c
Compare
esantorella
added a commit
to esantorella/Ax
that referenced
this pull request
Oct 9, 2025
…_data (facebook#4410) Summary: **Context**: The following very similar methods exist: * `Data.from_multiple_data`: Combines multiple `Data` (not MapData) into one `Data` * `MapData.from_multiple_data`: Converts any data arguments into `MapData` if they are not already and then calls `MapData.from_multiple_map_data` * `MapData.from_multiple_map_data`: Combines `MapData`s into one `MapData` **This PR**: * Removes `MapData.from_multiple_map_data`; `MapData.from_multiple_data` should now be used Reviewed By: Balandat Differential Revision: D84066098
…_data (facebook#4410) Summary: **Context**: The following very similar methods exist: * `Data.from_multiple_data`: Combines multiple `Data` (not MapData) into one `Data` * `MapData.from_multiple_data`: Converts any data arguments into `MapData` if they are not already and then calls `MapData.from_multiple_map_data` * `MapData.from_multiple_map_data`: Combines `MapData`s into one `MapData` **This PR**: * Removes `MapData.from_multiple_map_data`; `MapData.from_multiple_data` should now be used Reviewed By: Balandat Differential Revision: D84066098
6a5838c
to
633ceeb
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
Context:
The following very similar methods exist:
Data.from_multiple_data
: Combines multipleData
(not MapData) into oneData
MapData.from_multiple_data
: Converts any data arguments intoMapData
if they are not already and then callsMapData.from_multiple_map_data
MapData.from_multiple_map_data
: CombinesMapData
s into oneMapData
This PR:
MapData.from_multiple_map_data
;MapData.from_multiple_data
should now be usedDifferential Revision: D84066098