File tree 2 files changed +6
-2
lines changed
ydb/library/yql/parser/pg_wrapper
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
#include " arrow.h"
2
2
#include " arrow_impl.h"
3
- #include " ydb/library/yql/minikql/defs.h"
3
+ #include < ydb/library/yql/minikql/defs.h>
4
4
#include < ydb/library/yql/parser/pg_wrapper/interface/arrow.h>
5
5
#include < ydb/library/yql/parser/pg_wrapper/interface/utils.h>
6
6
#include < ydb/library/yql/minikql/mkql_node_cast.h>
Original file line number Diff line number Diff line change @@ -194,11 +194,15 @@ Y_UNIT_TEST(PgConvertNumericDecimal128BigScale3) {
194
194
arrow::Decimal128Builder builder (type);
195
195
196
196
const char * expected[] = {
197
- " 36893488147419103.245" , " -36893488147419103.245" , nullptr
197
+ " 36893488147419103.245" , " -36893488147419103.245" ,
198
+ " 46116860184273879.041" , " -46116860184273879.041" ,
199
+ nullptr
198
200
};
199
201
200
202
ARROW_OK (builder.Append (arrow::Decimal128::FromString (" 36893488147419103.245" ).ValueOrDie ()));
201
203
ARROW_OK (builder.Append (arrow::Decimal128::FromString (" -36893488147419103.245" ).ValueOrDie ()));
204
+ ARROW_OK (builder.Append (arrow::Decimal128::FromString (" 46116860184273879.041" ).ValueOrDie ()));
205
+ ARROW_OK (builder.Append (arrow::Decimal128::FromString (" -46116860184273879.041" ).ValueOrDie ()));
202
206
ARROW_OK (builder.AppendNull ());
203
207
204
208
std::shared_ptr<arrow::Array> array;
You can’t perform that action at this time.
0 commit comments