@@ -268,7 +268,7 @@ class TToUnits {
268
268
269
269
builder.Args ()->Add (argsTuple.GetElementType (0 ));
270
270
const TType* retType;
271
- if (features & NUdf::BigDateType ) {
271
+ if (features & NUdf::ExtDateType ) {
272
272
retType = builder.SimpleType <TWResult>();
273
273
} else if (features & NUdf::TimeIntervalType) {
274
274
retType = builder.SimpleType <TSignedResult>();
@@ -286,7 +286,7 @@ class TToUnits {
286
286
}
287
287
288
288
builder.Returns (retType);
289
- if (!(features & NUdf::BigDateType )) {
289
+ if (!(features & NUdf::ExtDateType )) {
290
290
// FIXME: Only non-wide overloads support block rewrite now.
291
291
builder.SupportsBlocks ();
292
292
}
@@ -449,7 +449,7 @@ struct TGetTimeComponent {
449
449
}
450
450
451
451
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
452
- if (features & NUdf::BigDateType ) {
452
+ if (features & NUdf::ExtDateType ) {
453
453
// FIXME: The condition below is required to untie the
454
454
// Gordian knot with the upgrade, when two MiniKQL
455
455
// runtimes with different versions are being used.
@@ -856,7 +856,7 @@ TUnboxedValuePod DoAddYears(const TUnboxedValuePod& date, i64 years, const NUdf:
856
856
}
857
857
} else {
858
858
builder.Args ()->Add <TUserDataType>().Flags (ICallablePayload::TArgumentFlags::AutoMap);
859
- if constexpr (NUdf::TDataType<TUserDataType>::Features & NYql::NUdf::BigDateType ) {
859
+ if constexpr (NUdf::TDataType<TUserDataType>::Features & NYql::NUdf::ExtDateType ) {
860
860
builder.Returns (builder.Resource (TM64ResourceName));
861
861
} else {
862
862
builder.Returns (builder.Resource (TMResourceName));
@@ -1384,7 +1384,7 @@ class TGetDateComponent: public ::NYql::NUdf::TBoxedValue {
1384
1384
}
1385
1385
1386
1386
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
1387
- if (features & NUdf::BigDateType ) {
1387
+ if (features & NUdf::ExtDateType ) {
1388
1388
// FIXME: The condition below is required to untie the
1389
1389
// Gordian knot with the upgrade, when two MiniKQL
1390
1390
// runtimes with different versions are being used.
@@ -1515,7 +1515,7 @@ class TGetDateComponentName: public ::NYql::NUdf::TBoxedValue {
1515
1515
}
1516
1516
1517
1517
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
1518
- if (features & NUdf::BigDateType ) {
1518
+ if (features & NUdf::ExtDateType ) {
1519
1519
// FIXME: The condition below is required to untie the
1520
1520
// Gordian knot with the upgrade, when two MiniKQL
1521
1521
// runtimes with different versions are being used.
@@ -1763,7 +1763,7 @@ TUnboxedValue GetTimezoneName(const IValueBuilder* valueBuilder, const TUnboxedV
1763
1763
}
1764
1764
1765
1765
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
1766
- if (features & NUdf::BigDateType ) {
1766
+ if (features & NUdf::ExtDateType ) {
1767
1767
// FIXME: The condition below is required to untie the
1768
1768
// Gordian knot with the upgrade, when two MiniKQL
1769
1769
// runtimes with different versions are being used.
@@ -2022,7 +2022,7 @@ class TToConverter : public TBoxedValue {
2022
2022
2023
2023
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
2024
2024
if (features & NUdf::TimeIntervalType) {
2025
- if (features & NUdf::BigDateType ) {
2025
+ if (features & NUdf::ExtDateType ) {
2026
2026
BuildSignature<TInterval64, TWResult>(builder, typesOnly);
2027
2027
} else {
2028
2028
BuildSignature<TInterval, TResult>(builder, typesOnly);
@@ -2147,7 +2147,7 @@ class TBoundaryOf: public ::NYql::NUdf::TBoxedValue {
2147
2147
}
2148
2148
2149
2149
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
2150
- if (features & NUdf::BigDateType ) {
2150
+ if (features & NUdf::ExtDateType ) {
2151
2151
// FIXME: The condition below is required to untie the
2152
2152
// Gordian knot with the upgrade, when two MiniKQL
2153
2153
// runtimes with different versions are being used.
@@ -2497,7 +2497,7 @@ class TBoundaryOfInterval: public ::NYql::NUdf::TBoxedValue {
2497
2497
}
2498
2498
2499
2499
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
2500
- if (features & NUdf::BigDateType ) {
2500
+ if (features & NUdf::ExtDateType ) {
2501
2501
BuildSignature<TM64ResourceName, WBoundary>(builder, typesOnly);
2502
2502
return true ;
2503
2503
}
@@ -2619,7 +2619,7 @@ class TTimeOfDay: public ::NYql::NUdf::TBoxedValue {
2619
2619
}
2620
2620
2621
2621
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
2622
- if (features & NUdf::BigDateType ) {
2622
+ if (features & NUdf::ExtDateType ) {
2623
2623
BuildSignature<TM64ResourceName>(builder, typesOnly);
2624
2624
return true ;
2625
2625
}
@@ -2746,7 +2746,7 @@ class TShift : public TBoxedValue {
2746
2746
}
2747
2747
2748
2748
const auto features = NUdf::GetDataTypeInfo (NUdf::GetDataSlot (data.GetTypeId ())).Features ;
2749
- if (features & NUdf::BigDateType ) {
2749
+ if (features & NUdf::ExtDateType ) {
2750
2750
// FIXME: The condition below is required to untie the
2751
2751
// Gordian knot with the upgrade, when two MiniKQL
2752
2752
// runtimes with different versions are being used.
0 commit comments