-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Pipe: Fixed the missing privilege check of aligned series in tsFile scan parser & Fixed the missed parsing of insertNode privilege #17055
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
base: master
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #17055 +/- ##
============================================
+ Coverage 39.24% 39.26% +0.01%
Complexity 282 282
============================================
Files 5105 5105
Lines 341457 341446 -11
Branches 43517 43517
============================================
+ Hits 134015 134067 +52
+ Misses 207442 207379 -63 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| if (!isAligned) { | ||
| if ((chunkHeader.getChunkType() & TsFileConstant.TIME_COLUMN_MASK) | ||
| == TsFileConstant.TIME_COLUMN_MASK) { | ||
| timeChunkList.add( | ||
| new Chunk(chunkHeader, tsFileSequenceReader.readChunk(-1, chunkHeader.getDataSize()))); | ||
| isMultiPageList.add(marker == MetaMarker.TIME_CHUNK_HEADER); | ||
| return true; | ||
| } | ||
| } |
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.
This is weird, nonaligned chunk should not have time column.
|



Description
As the title said.
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