Details
-
Bug
-
Status: Closed (View Workflow)
-
High
-
Resolution: Fixed
-
master, 6.11/02
-
None
-
any
Description
Reproducer:
#include <ROOT/TDataFrame.hxx>
|
using namespace ROOT::Experimental; |
|
void testReport() |
{
|
TDataFrame d_(10);
|
auto d = d_.Define("x", "(int) tdfentry_"); |
auto dF = d.Filter([](int x) { return x > 3; }, {"x"}, "f1").Filter([](int x) { return x > 5; }, {"x"}, "f2"); |
dF.Report();
|
auto dFF = dF.Filter([](int x) { return x > 8; }, {"x"}, "f3"); |
dFF.Report();
|
}
|
|
int main() |
{
|
testReport();
|
return 0; |
}
|
The output shows that "f3" is never called (it's report is empty).
Attachments
Issue Links
- blocks
-
ROOT-8855 Upgrade of TDataFrame for 6.12/00 release
-
- Closed
-