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

wgtmac pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-java.git


The following commit(s) were added to refs/heads/master by this push:
     new 263038add Bump com.google.api.grpc:proto-google-common-protos from 
2.72.0 to 2.73.0 (#3657)
263038add is described below

commit 263038add7547eb51294d3f7f015e0df6729f0c0
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 12 12:32:29 2026 +0800

    Bump com.google.api.grpc:proto-google-common-protos from 2.72.0 to 2.73.0 
(#3657)
    
    * Bump com.google.api.grpc:proto-google-common-protos
    
    Bumps 
[com.google.api.grpc:proto-google-common-protos](https://github.com/googleapis/sdk-platform-java)
 from 2.72.0 to 2.73.0.
    - [Release notes](https://github.com/googleapis/sdk-platform-java/releases)
    - 
[Changelog](https://github.com/googleapis/sdk-platform-java/blob/main/CHANGELOG.md)
    - 
[Commits](https://github.com/googleapis/sdk-platform-java/compare/gax/v2.72.0...gax/2.73.0)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.api.grpc:proto-google-common-protos
      dependency-version: 2.73.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Preserve NaN bits in plain encoding
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Gang Wu <[email protected]>
---
 .../org/apache/parquet/column/values/plain/PlainValuesWriter.java     | 4 ++--
 parquet-protobuf/pom.xml                                              | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/parquet-column/src/main/java/org/apache/parquet/column/values/plain/PlainValuesWriter.java
 
b/parquet-column/src/main/java/org/apache/parquet/column/values/plain/PlainValuesWriter.java
index be5dfc0fa..1c4b1e46c 100644
--- 
a/parquet-column/src/main/java/org/apache/parquet/column/values/plain/PlainValuesWriter.java
+++ 
b/parquet-column/src/main/java/org/apache/parquet/column/values/plain/PlainValuesWriter.java
@@ -67,12 +67,12 @@ public class PlainValuesWriter extends ValuesWriter {
 
   @Override
   public final void writeFloat(float v) {
-    arrayOut.writeInt(Float.floatToIntBits(v));
+    arrayOut.writeInt(Float.floatToRawIntBits(v));
   }
 
   @Override
   public final void writeDouble(double v) {
-    arrayOut.writeLong(Double.doubleToLongBits(v));
+    arrayOut.writeLong(Double.doubleToRawLongBits(v));
   }
 
   @Override
diff --git a/parquet-protobuf/pom.xml b/parquet-protobuf/pom.xml
index c6e5ca97c..a8dec516d 100644
--- a/parquet-protobuf/pom.xml
+++ b/parquet-protobuf/pom.xml
@@ -32,7 +32,7 @@
   <properties>
     <elephant-bird.version>4.4</elephant-bird.version>
     <protobuf.version>4.35.1</protobuf.version>
-    <common-protos.version>2.72.0</common-protos.version>  <!-- make sure it's 
compatible with protobuf.version -->
+    <common-protos.version>2.73.0</common-protos.version>  <!-- make sure it's 
compatible with protobuf.version -->
     <truth-proto-extension.version>1.4.5</truth-proto-extension.version>
   </properties>
 

Reply via email to