Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# specific language governing permissions and limitations
# under the License.

# Basic change to trigger testing PR.

apache-rat-*.jar
apache-arrow.tar.gz

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/dataset/file_parquet_encryption_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
#include "parquet/encryption/kms_client.h"
#include "parquet/encryption/test_in_memory_kms.h"

// Basic change to trigger testing PR.

using arrow::util::SecureString;

const SecureString kFooterKeyMasterKey("0123456789012345");
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/util/io_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
// ----------------------------------------------------------------------
// file compatibility stuff

// Basic change to trigger testing PR.

#ifdef _WIN32
# include <direct.h>
# include <io.h>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/util/io_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
#include "arrow/util/macros.h"
#include "arrow/util/windows_fixup.h"

// Basic change to trigger testing PR.

namespace arrow::internal {

// NOTE: 8-bit path strings on Windows are encoded using UTF-8.
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/generated/parquet_types.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions cpp/src/generated/parquet_types.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions cpp/src/generated/parquet_types.tcc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

#include "parquet_types.h"

/* Basic change to trigger test PR. */

namespace parquet { namespace format {

template <class Protocol_>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# specific language governing permissions and limitations
# under the License.

# Basic change to trigger testing PR.

add_custom_target(parquet-all)
add_custom_target(parquet)
add_custom_target(parquet-benchmarks)
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/arrow/arrow_reader_writer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#ifdef _MSC_VER
# pragma warning(push)
// Disable forcing value to bool warnings
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/arrow/reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ using ParquetReader = parquet::ParquetFileReader;

using parquet::internal::RecordReader;

// Basic change to trigger testing PR.

namespace bit_util = arrow::bit_util;

namespace parquet::arrow {
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/column_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ namespace parquet {

namespace {

// Basic change to trigger testing PR.

// The minimum number of repetition/definition levels to decode at a time, for
// better vectorized performance when doing many smaller record reads
constexpr int64_t kMinLevelBatchSize = 1024;
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/column_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ static constexpr uint32_t kDefaultMaxPageHeaderSize = 16 * 1024 * 1024;
// 16 KB is the default expected page header size
static constexpr uint32_t kDefaultPageHeaderSize = 16 * 1024;

// Basic change to trigger testing PR.

// \brief DataPageStats stores encoded statistics and number of values/rows for
// a page.
struct PARQUET_EXPORT DataPageStats {
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/column_writer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ namespace parquet {

namespace {

// Basic change to trigger testing PR.

// Visitor that extracts the value buffer from a FlatArray at a given offset.
struct ValueBufferSlicer {
template <typename T>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/column_writer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <memory>
#include <utility>
#include <vector>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@
# specific language governing permissions and limitations
# under the License.

# Basic change to trigger testing PR.

# Headers: public api
arrow_install_all_headers("parquet/encryption")
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/crypto_factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <string_view>

#include "arrow/util/logging.h"
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/crypto_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#include "parquet/encryption/kms_client_factory.h"
#include "parquet/platform.h"

// Basic change to trigger testing PR.

namespace parquet::encryption {

static constexpr ParquetCipher::type kDefaultEncryptionAlgorithm =
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/encryption.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#include "arrow/util/utf8.h"
#include "parquet/encryption/encryption_internal.h"

// Basic change to trigger testing PR.

using ::arrow::util::SecureString;

namespace parquet {
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/encryption.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
#include "parquet/schema.h"
#include "parquet/types.h"

// Basic change to trigger testing PR.

namespace parquet {

static constexpr ParquetCipher::type kDefaultEncryptionAlgorithm =
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/encryption_internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/encryption/encryption_internal.h"

#include <openssl/aes.h>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/encryption_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#pragma once

#include <memory>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/encryption_internal_nossl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/encryption/encryption_internal.h"
#include "parquet/exception.h"

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/encryption_internal_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <gtest/gtest.h>

#include "parquet/encryption/encryption_internal.h"
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/file_key_wrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include "parquet/encryption/key_toolkit_internal.h"
#include "parquet/exception.h"

// Basic change to trigger testing PR.

using ::arrow::util::SecureString;

namespace parquet::encryption {
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/internal_file_decryptor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/encryption/internal_file_decryptor.h"

#include "arrow/util/logging.h"
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/internal_file_decryptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#pragma once

#include <memory>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/internal_file_encryptor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/encryption/internal_file_encryptor.h"
#include "arrow/util/secure_string.h"
#include "parquet/encryption/encryption.h"
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/internal_file_encryptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#pragma once

#include <map>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/key_toolkit_internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "arrow/util/base64.h"
#include "arrow/util/secure_string.h"

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/properties_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <gtest/gtest.h>

#include <string>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/read_configurations_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <gtest/gtest.h>
#include <stdio.h>

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/encryption/write_configurations_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <gtest/gtest.h>

#include <stdio.h>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/file_deserialize_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <gmock/gmock.h>
#include <gtest/gtest.h>

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/file_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/file_reader.h"

#include <algorithm>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/file_writer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/file_writer.h"

#include <memory>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/metadata.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/metadata.h"

#include <algorithm>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/metadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#pragma once

#include <cstdint>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/page_index.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include "parquet/page_index.h"
#include "parquet/encoding.h"
#include "parquet/encryption/encryption_internal.h"
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/parquet.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* under the License.
*/

/** Basic change to trigger test PR */

/**
* File format description for the parquet file format
*/
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/thrift_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#pragma once

#include "parquet/windows_compatibility.h"
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/types.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <array>
#include <cmath>
#include <cstdint>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#pragma once

#include <algorithm>
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/parquet/types_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

// Basic change to trigger testing PR.

#include <gtest/gtest.h>

#include <string>
Expand Down
2 changes: 2 additions & 0 deletions python/pyarrow/_parquet.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# specific language governing permissions and limitations
# under the License.

# Basic change to trigger testing PR.

# distutils: language = c++
# cython: language_level = 3

Expand Down
Loading
Loading