File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
yql/essentials/public/udf/arrow Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class TBlockItem {
27
27
*reinterpret_cast <NYql::NDecimal::TInt128*>(&Raw) = value;
28
28
Raw.Simple .Meta = static_cast <ui8>(EMarkers::Embedded);
29
29
}
30
-
30
+
31
31
inline explicit TBlockItem (IBoxedValuePtr&& value) {
32
32
Raw.Resource .Meta = static_cast <ui8>(EMarkers::Boxed);
33
33
Raw.Resource .Value = value.Release ();
@@ -127,7 +127,7 @@ class TBlockItem {
127
127
Y_DEBUG_ABORT_UNLESS (GetMarkers () == EMarkers::String);
128
128
return TStringValue (Raw.StringValue .Value );
129
129
}
130
-
130
+
131
131
inline TStringRef GetStringRefFromValue () const {
132
132
Y_DEBUG_ABORT_UNLESS (GetMarkers () == EMarkers::String);
133
133
return { Raw.StringValue .Value ->Data () + (Raw.StringValue .Offset & 0xFFFFFF ), Raw.StringValue .Size };
@@ -184,7 +184,7 @@ class TBlockItem {
184
184
}
185
185
186
186
inline explicit operator bool () const { return bool (Raw); }
187
-
187
+
188
188
EMarkers GetMarkers () const {
189
189
return static_cast <EMarkers>(Raw.Simple .Meta );
190
190
}
@@ -208,7 +208,7 @@ class TBlockItem {
208
208
ui64 Halfs[2 ] = {0 , 0 };
209
209
210
210
TRawEmbeddedValue Embedded;
211
-
211
+
212
212
TRawBoxedValue Resource;
213
213
214
214
TRawStringValue StringValue;
You can’t perform that action at this time.
0 commit comments