[IoTDB-2837] Add check and sort for NumpyTablet to make sure timestamps are ordered#5434
Merged
HTHou merged 4 commits intoapache:masterfrom Apr 7, 2022
Merged
[IoTDB-2837] Add check and sort for NumpyTablet to make sure timestamps are ordered#5434HTHou merged 4 commits intoapache:masterfrom
HTHou merged 4 commits intoapache:masterfrom
Conversation
HTHou
reviewed
Apr 6, 2022
ZhanGHanG9991
commented
Apr 6, 2022
HTHou
reviewed
Apr 7, 2022
Comment on lines
187
to
193
| np_values_ = [ | ||
| np.array([False, True, False, True], np.dtype('>?')), | ||
| np.array([10, 100, 100, 0], np.dtype('>i4')), | ||
| np.array([11, 11111, 1, 0], np.dtype('>i8')), | ||
| np.array([1.1, 1.25, 188.1, 0], np.dtype('>f4')), | ||
| np.array([10011.1, 101.0, 688.25, 6.25], np.dtype('>f8')), | ||
| np.array([False, True, False, True], np.dtype(">?")), | ||
| np.array([10, 100, 100, 0], np.dtype(">i4")), | ||
| np.array([11, 11111, 1, 0], np.dtype(">i8")), | ||
| np.array([1.1, 1.25, 188.1, 0], np.dtype(">f4")), | ||
| np.array([10011.1, 101.0, 688.25, 6.25], np.dtype(">f8")), | ||
| np.array(["test01", "test02", "test03", "test04"]), |
Contributor
There was a problem hiding this comment.
Hi, would you like to format the example code in user guide documents?
client-py/README.md, docs/UserGuide/API/Programming-Python-Native-API.mdand docs/zh/UserGuide/API/Programming-Python-Native-API.md.
Contributor
Author
There was a problem hiding this comment.
I've formatted the example code in docs.
HTHou
approved these changes
Apr 7, 2022
HTHou
pushed a commit
that referenced
this pull request
Apr 7, 2022
xinzhongtianxia
pushed a commit
to xinzhongtianxia/iotdb
that referenced
this pull request
Apr 11, 2022
…er_meta * remotes/upstream/master: [IOTDB-2859] Fix python tablet with None value is incorrect (apache#5441) Modify site/src/main/.vuepress/config.js to add REST API navigation for v0.13 (apache#5442) [IoTDB-2837] Add check and sort for NumpyTablet to make sure timestamps are ordered (apache#5434) Implement mpp scheduler interface (apache#5438) [IOTDB-2855] Fix DeletionFileNodeTest error (apache#5435) [IOTDB-2853] there is low version of integration and jdbc in library-udf\pom.xml (apache#5436)
This was referenced Apr 3, 2023
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Add check and sort for NumpyTablet to make sure timestamps are ordered and format code with
black .This PR has:
for an unfamiliar reader.
for code coverage.
Key changed/added classes (or packages if there are too many classes) in this PR