Skip to content

Commit f433b7e

Browse files
authored
fix spaces (#19859)
2 parents d7674e8 + bcb9055 commit f433b7e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

yql/essentials/public/udf/arrow/block_item.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class TBlockItem {
2727
*reinterpret_cast<NYql::NDecimal::TInt128*>(&Raw) = value;
2828
Raw.Simple.Meta = static_cast<ui8>(EMarkers::Embedded);
2929
}
30-
30+
3131
inline explicit TBlockItem(IBoxedValuePtr&& value) {
3232
Raw.Resource.Meta = static_cast<ui8>(EMarkers::Boxed);
3333
Raw.Resource.Value = value.Release();
@@ -127,7 +127,7 @@ class TBlockItem {
127127
Y_DEBUG_ABORT_UNLESS(GetMarkers() == EMarkers::String);
128128
return TStringValue(Raw.StringValue.Value);
129129
}
130-
130+
131131
inline TStringRef GetStringRefFromValue() const {
132132
Y_DEBUG_ABORT_UNLESS(GetMarkers() == EMarkers::String);
133133
return { Raw.StringValue.Value->Data() + (Raw.StringValue.Offset & 0xFFFFFF), Raw.StringValue.Size };
@@ -184,7 +184,7 @@ class TBlockItem {
184184
}
185185

186186
inline explicit operator bool() const { return bool(Raw); }
187-
187+
188188
EMarkers GetMarkers() const {
189189
return static_cast<EMarkers>(Raw.Simple.Meta);
190190
}
@@ -208,7 +208,7 @@ class TBlockItem {
208208
ui64 Halfs[2] = {0, 0};
209209

210210
TRawEmbeddedValue Embedded;
211-
211+
212212
TRawBoxedValue Resource;
213213

214214
TRawStringValue StringValue;

0 commit comments

Comments
 (0)