You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/11/28 21:24:01 UTC

[arrow-nanoarrow] branch main updated: Update dist/ for commit 3d9bcca1e1effe1590437e8f8d9a77fef2ac4d59

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 4f07d39  Update dist/ for commit 3d9bcca1e1effe1590437e8f8d9a77fef2ac4d59
4f07d39 is described below

commit 4f07d3981708e0142d5dd22350a91f04351d68a2
Author: GitHub Actions <ac...@github.com>
AuthorDate: Mon Nov 28 21:23:57 2022 +0000

    Update dist/ for commit 3d9bcca1e1effe1590437e8f8d9a77fef2ac4d59
---
 dist/nanoarrow.h | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dist/nanoarrow.h b/dist/nanoarrow.h
index 319906d..83e66be 100644
--- a/dist/nanoarrow.h
+++ b/dist/nanoarrow.h
@@ -20,7 +20,7 @@
 
 // #define NANOARROW_NAMESPACE YourNamespaceHere
 
-#define NANOARROW_BUILD_ID "ghabf2418ab92053614ad3354f3386e56f393a6a0c8"
+#define NANOARROW_BUILD_ID "gha3d9bcca1e1effe1590437e8f8d9a77fef2ac4d59"
 
 #endif
 // Licensed to the Apache Software Foundation (ASF) under one
@@ -2171,8 +2171,7 @@ static inline ArrowErrorCode ArrowArrayAppendDouble(struct ArrowArray* array,
       NANOARROW_RETURN_NOT_OK(ArrowBufferAppend(data_buffer, &value, sizeof(double)));
       break;
     case NANOARROW_TYPE_FLOAT:
-      _NANOARROW_CHECK_RANGE(value, FLT_MIN, FLT_MAX);
-      NANOARROW_RETURN_NOT_OK(ArrowBufferAppendFloat(data_buffer, value));
+      NANOARROW_RETURN_NOT_OK(ArrowBufferAppendFloat(data_buffer, (float)value));
       break;
     default:
       return EINVAL;