-
Notifications
You must be signed in to change notification settings - Fork 65
Fix tag empty error and disorder timestamp. #489
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: develop
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #489 +/- ##
========================================
Coverage 65.48% 65.48%
========================================
Files 565 565
Lines 33040 33047 +7
Branches 4603 4606 +3
========================================
+ Hits 21636 21642 +6
Misses 10762 10762
- Partials 642 643 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
for (int32_t pos : id_column_context.pos_in_result_) { | ||
common::String device_id( | ||
device_query_task_->get_device_id()->get_segments().at( | ||
id_column_context.pos_in_device_id_)); | ||
common::String device_id; | ||
if (device_query_task_->get_device_id()->segment_num() <= | ||
id_column_context.pos_in_device_id_) { | ||
device_id = common::String(""); | ||
} else { | ||
device_id = common::String( | ||
device_query_task_->get_device_id()->get_segments().at( | ||
id_column_context.pos_in_device_id_)); | ||
} | ||
if (RET_FAIL(col_appenders_[pos + 1]->fill( | ||
(char*)&device_id, sizeof(device_id), | ||
current_block_->get_row_count()))) { |
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 should distinguish null from empty string.
("table1", null, "tag1") is different from ("table1", "", "tag1")
No description provided.