Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Jul 28, 2023
1 parent b585b83 commit 12530a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/validation/adbc_validation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1040,8 +1040,8 @@ void StatementTest::TestSqlIngestNumericType(ArrowType type) {
} else if (type == ArrowType::NANOARROW_TYPE_DATE32) {
// Different databases may choose different epochs, so providing
// max values for DATE types is likely to cause overflows
values.push_back(static_cast<CType>(-200));
values.push_back(static_cast<CType>(200));
values.push_back(static_cast<CType>(-20000));
values.push_back(static_cast<CType>(20000));
} else {
values.push_back(std::numeric_limits<CType>::lowest());
values.push_back(std::numeric_limits<CType>::max());
Expand Down

0 comments on commit 12530a9

Please sign in to comment.