Skip to content

Commit

Permalink
Make SerializedTableHeader(numRows) public (#10949)
Browse files Browse the repository at this point in the history
to be usable in different packages of spark-rapids to address 
NVIDIA/spark-rapids#5513

Signed-off-by: Gera Shegalov <gera@apache.org>

Authors:
  - Gera Shegalov (https://github.com/gerashegalov)

Approvers:
  - Jason Lowe (https://github.com/jlowe)

URL: #10949
  • Loading branch information
gerashegalov authored May 24, 2022
1 parent da74744 commit 9f06de6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/src/main/java/ai/rapids/cudf/JCudfSerialization.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (c) 2019-2021, NVIDIA CORPORATION.
* Copyright (c) 2019-2022, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -108,7 +108,7 @@ public SerializedTableHeader(DataInputStream din) throws IOException {
}

/** Constructor for a row-count only table (no columns) */
SerializedTableHeader(int numRows) {
public SerializedTableHeader(int numRows) {
this(new SerializedColumnHeader[0], numRows, 0);
}

Expand Down

0 comments on commit 9f06de6

Please sign in to comment.