@@ -185,7 +185,7 @@ template <TableRef R>
185185constexpr auto tableRef2Schema ()
186186{
187187 return o2::framework::ConfigParamSpec{
188- std::string{" input-schema:" } + o2::aod::label <R>(),
188+ std::string{" input-schema:" } + o2::aod::binding <R>(),
189189 framework::VariantType::String,
190190 framework::serializeSchema (o2::aod::MetadataTrait<o2::aod::Hash<R.desc_hash >>::metadata::getSchema ()),
191191 {" \"\" " }};
@@ -258,9 +258,9 @@ inline constexpr auto getIndexMapping()
258258 ([&idx]<TableRef ref, typename C>() mutable {
259259 constexpr auto pos = o2::aod::MetadataTrait<o2::aod::Hash<ref.desc_hash >>::metadata::template getIndexPosToKey<Key>();
260260 if constexpr (pos == -1 ) {
261- idx.emplace_back (o2::aod::label <ref>(), C::columnLabel (), IndexKind::IdxSelf, pos);
261+ idx.emplace_back (o2::aod::binding <ref>(), C::columnLabel (), IndexKind::IdxSelf, pos);
262262 } else {
263- idx.emplace_back (o2::aod::label <ref>(), C::columnLabel (), getIndexKind<typename C::type>(), pos);
263+ idx.emplace_back (o2::aod::binding <ref>(), C::columnLabel (), getIndexKind<typename C::type>(), pos);
264264 }
265265 }.template operator ()<refs[Is], typename framework::pack_element_t <Is, indices>>(),
266266 ...);
@@ -368,7 +368,7 @@ constexpr auto tableRef2InputSpec()
368368 }
369369
370370 return framework::InputSpec{
371- o2::aod::label <R>(),
371+ o2::aod::binding <R>(),
372372 o2::aod::origin<R>(),
373373 o2::aod::description (o2::aod::signature<R>()),
374374 R.version ,
0 commit comments