Added description field to RNTupleDescriptor::PrintInfo output#9313
Added description field to RNTupleDescriptor::PrintInfo output#9313jalopezg-git merged 4 commits intoroot-project:masterfrom psairammohan:master
Conversation
|
Can one of the admins verify this patch? |
|
@phsft-bot build |
|
Starting build on |
|
Hi @psairammohan , |
|
Build failed on mac1015/python3. Errors:
|
|
Build failed on ROOT-performance-centos8-multicore/default. Warnings:
|
| + " -- " + Detail::RColumnElementBase::GetTypeName(col.fType); | ||
| std::string id = std::string("{id:") + std::to_string(col.fColumnId) + "}"; | ||
| output << nameAndType << std::setw(60 - nameAndType.length()) << id << std::endl; | ||
| if(col.fFieldDescription != "") |
There was a problem hiding this comment.
This is not a hot path, but this should be slightly better:
| if(col.fFieldDescription != "") | |
| if (!col.fFieldDescription.empty()) |
jalopezg-git
left a comment
There was a problem hiding this comment.
Hi @psairammohan! Thanks for the contribution!
Just a tiny comment. :-)
|
@psairammohan please, commit the suggested change in order to merge this as soon as possible. :-) |
|
@phsft-bot build |
|
Starting build on |
|
Build failed on ROOT-debian10-i386/cxx14. Failing tests: |
|
Build failed on windows10/cxx14. Failing tests: |
|
@phsft-bot build just on windows10/cxx14 |
|
Starting build on |
|
Build failed on windows10/cxx14. Failing tests: |
|
These failures are totally unrelated. |
This Pull request:
Added description field to the output of
RNTupleDescriptor::PrintInfoby passingENTupleInfo::kStorageDetails.Here is an example output in which
Vxis description is set tovelocity in x direction.Vydescription is not set. The result is as follows:Changes or fixes:
Changes
RNTupleDescriptor::PrintInfoChecklist:
This PR closes #8377