├── .asf.yaml ├── .clang-format ├── .clang-tidy ├── .cmake-format ├── .codespell-dictionary ├── .codespell-ignore ├── .codespellrc ├── .env ├── .flake8 ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── feature.yml │ └── question.yml ├── dependabot.yml └── workflows │ ├── comment_bot.yml │ ├── csharp.yml │ ├── dev.yml │ ├── dev_adbc.yml │ ├── dev_pr.yml │ ├── dev_pr │ ├── body_check.py │ └── milestone.sh │ ├── integration.yml │ ├── java.yml │ ├── native-unix.yml │ ├── native-windows.yml │ ├── nightly-verify.yml │ ├── nightly-website.yml │ ├── packaging.yml │ ├── r-basic.yml │ ├── r-check.yml │ ├── r-extended.yml │ ├── r-standard.yml │ ├── rust.yml │ └── verify.yml ├── .gitignore ├── .gitmodules ├── .isort.cfg ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── c ├── CMakeLists.txt ├── CMakePresets.json ├── apidoc │ └── Doxyfile ├── cmake_modules │ ├── AdbcDefines.cmake │ ├── AdbcVersion.cmake │ ├── BuildUtils.cmake │ ├── DefineOptions.cmake │ ├── GoUtils.cmake │ ├── README.md │ └── san-config.cmake ├── driver │ ├── bigquery │ │ ├── AdbcDriverBigQueryConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── adbc-driver-bigquery.pc.in │ │ ├── bigquery_test.cc │ │ └── meson.build │ ├── common │ │ ├── AdbcDriverCommonConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── meson.build │ │ ├── options.h │ │ ├── utils.c │ │ ├── utils.h │ │ └── utils_test.cc │ ├── flightsql │ │ ├── AdbcDriverFlightSQLConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── adbc-driver-flightsql.pc.in │ │ ├── dremio_flightsql_test.cc │ │ ├── meson.build │ │ └── sqlite_flightsql_test.cc │ ├── framework │ │ ├── AdbcDriverFrameworkConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── base_driver.h │ │ ├── base_driver_test.cc │ │ ├── connection.h │ │ ├── database.h │ │ ├── meson.build │ │ ├── objects.cc │ │ ├── objects.h │ │ ├── statement.h │ │ ├── status.h │ │ ├── type_fwd.h │ │ ├── utility.cc │ │ └── utility.h │ ├── postgresql │ │ ├── AdbcDriverPostgreSQLConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── CMakeUserPresets.example.json │ │ ├── README.md │ │ ├── adbc-driver-postgresql.pc.in │ │ ├── bind_stream.h │ │ ├── connection.cc │ │ ├── connection.h │ │ ├── copy │ │ │ ├── copy_common.h │ │ │ ├── postgres_copy_reader_test.cc │ │ │ ├── postgres_copy_test_common.h │ │ │ ├── postgres_copy_writer_test.cc │ │ │ ├── reader.h │ │ │ └── writer.h │ │ ├── database.cc │ │ ├── database.h │ │ ├── error.cc │ │ ├── error.h │ │ ├── meson.build │ │ ├── postgres_type.h │ │ ├── postgres_type_test.cc │ │ ├── postgres_util.h │ │ ├── postgresql.cc │ │ ├── postgresql_benchmark.cc │ │ ├── postgresql_test.cc │ │ ├── result_helper.cc │ │ ├── result_helper.h │ │ ├── result_reader.cc │ │ ├── result_reader.h │ │ ├── statement.cc │ │ ├── statement.h │ │ └── vcpkg.json │ ├── snowflake │ │ ├── AdbcDriverSnowflakeConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── adbc-driver-snowflake.pc.in │ │ ├── meson.build │ │ └── snowflake_test.cc │ └── sqlite │ │ ├── AdbcDriverSQLiteConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── adbc-driver-sqlite.pc.in │ │ ├── meson.build │ │ ├── sqlite.cc │ │ ├── sqlite_test.cc │ │ ├── statement_reader.c │ │ └── statement_reader.h ├── driver_manager │ ├── AdbcDriverManagerConfig.cmake.in │ ├── CMakeLists.txt │ ├── README.md │ ├── adbc-driver-manager.pc.in │ ├── adbc_driver_manager.cc │ ├── adbc_driver_manager_test.cc │ ├── adbc_version_100.c │ ├── adbc_version_100.h │ ├── adbc_version_100_compatibility_test.cc │ ├── current_arch.h │ ├── entrypoint.c │ ├── meson.build │ └── vcpkg.json ├── include │ ├── adbc.h │ ├── adbc_driver_manager.h │ └── arrow-adbc │ │ ├── adbc.h │ │ ├── adbc_driver_manager.h │ │ └── driver │ │ ├── bigquery.h │ │ ├── flightsql.h │ │ ├── postgresql.h │ │ ├── snowflake.h │ │ └── sqlite.h ├── integration │ ├── duckdb │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── duckdb_test.cc │ ├── shared_test │ │ ├── CMakeLists.txt │ │ └── main.c │ └── static_test │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── main.c ├── meson.build ├── meson.options ├── subprojects │ ├── fmt.wrap │ ├── gtest.wrap │ ├── nanoarrow.wrap │ └── sqlite3.wrap ├── symbols.map ├── validation │ ├── CMakeLists.txt │ ├── README.md │ ├── adbc_validation.cc │ ├── adbc_validation.h │ ├── adbc_validation_connection.cc │ ├── adbc_validation_database.cc │ ├── adbc_validation_statement.cc │ ├── adbc_validation_util.cc │ ├── adbc_validation_util.h │ └── meson.build └── vendor │ ├── backward │ ├── LICENSE.txt │ ├── backward.cpp │ └── backward.hpp │ ├── fmt │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── fmt │ │ │ ├── args.h │ │ │ ├── base.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ ├── src │ │ ├── fmt.cc │ │ ├── format.cc │ │ └── os.cc │ └── support │ │ └── cmake │ │ ├── FindSetEnv.cmake │ │ ├── JoinPaths.cmake │ │ ├── fmt-config.cmake.in │ │ └── fmt.pc.in │ ├── nanoarrow │ ├── CMakeLists.txt │ ├── nanoarrow.c │ ├── nanoarrow.h │ └── nanoarrow.hpp │ ├── portable-snippets │ └── include │ │ └── portable-snippets │ │ └── safe-math.h │ ├── sqlite3 │ ├── sqlite3.c │ └── sqlite3.h │ ├── toml++ │ └── toml.hpp │ ├── vendor_backward.sh │ ├── vendor_fmt.sh │ ├── vendor_nanoarrow.sh │ ├── vendor_sqlite3.sh │ └── vendor_tomlplusplus.sh ├── ci ├── build_support │ ├── run-test.sh │ └── sanitizer-disallowed-entries.txt ├── conda │ ├── .ci_support │ │ ├── README │ │ ├── linux_64_.yaml │ │ ├── linux_aarch64_.yaml │ │ ├── linux_ppc64le_.yaml │ │ ├── osx_64_.yaml │ │ ├── osx_arm64_.yaml │ │ └── win_64_.yaml │ ├── .gitattributes │ ├── build-cpp.bat │ ├── build-cpp.sh │ ├── build-python.bat │ ├── build-python.sh │ ├── conda-forge.yml │ └── meta.yaml ├── conda_env_benchmarking.txt ├── conda_env_cpp.txt ├── conda_env_cpp_lint.txt ├── conda_env_dev.txt ├── conda_env_docs.txt ├── conda_env_glib.txt ├── conda_env_java.txt ├── conda_env_python.txt ├── conda_env_r.txt ├── docker │ ├── cpp-clang-latest.dockerfile │ ├── cpp-gcc-latest.dockerfile │ ├── dremio-init.dockerfile │ ├── flightsql-test.dockerfile │ ├── golang-flightsql-sqlite.dockerfile │ ├── python-debug.dockerfile │ ├── python-debug.sh │ ├── python-wheel-manylinux-relocate.dockerfile │ ├── python-wheel-manylinux.dockerfile │ └── spiceai-init.dockerfile ├── linux-packages │ ├── Rakefile │ ├── apt │ │ ├── debian-bookworm │ │ │ └── Dockerfile │ │ ├── debian-trixie │ │ │ └── Dockerfile │ │ ├── ubuntu-jammy │ │ │ └── Dockerfile │ │ └── ubuntu-noble │ │ │ └── Dockerfile │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── gir1.2-adbc-1.0.install │ │ ├── gir1.2-adbc-arrow-1.0.install │ │ ├── libadbc-arrow-glib-dev.install │ │ ├── libadbc-arrow-glib-doc.install │ │ ├── libadbc-arrow-glib1.install │ │ ├── libadbc-driver-flightsql-dev.install │ │ ├── libadbc-driver-flightsql110.install │ │ ├── libadbc-driver-manager-dev.install │ │ ├── libadbc-driver-manager110.install │ │ ├── libadbc-driver-postgresql-dev.install │ │ ├── libadbc-driver-postgresql110.install │ │ ├── libadbc-driver-snowflake-dev.install │ │ ├── libadbc-driver-snowflake110.install │ │ ├── libadbc-driver-sqlite-dev.install │ │ ├── libadbc-driver-sqlite110.install │ │ ├── libadbc-glib-dev.install │ │ ├── libadbc-glib-doc.install │ │ ├── libadbc-glib1.install │ │ └── rules │ └── yum │ │ ├── almalinux-10 │ │ └── Dockerfile │ │ ├── almalinux-8 │ │ └── Dockerfile │ │ ├── almalinux-9 │ │ └── Dockerfile │ │ └── apache-arrow-adbc.spec.in ├── scripts │ ├── cpp_build.ps1 │ ├── cpp_build.sh │ ├── cpp_clang_tidy.sh │ ├── cpp_recipe.sh │ ├── cpp_shared_no_common_entrypoints_test.sh │ ├── cpp_static_test.sh │ ├── cpp_test.ps1 │ ├── cpp_test.sh │ ├── csharp_build.ps1 │ ├── csharp_build.sh │ ├── csharp_pack.ps1 │ ├── csharp_pack.sh │ ├── csharp_smoketest.ps1 │ ├── csharp_test.sh │ ├── docs_build.sh │ ├── gemfury_clean.py │ ├── glib_build.sh │ ├── glib_test.sh │ ├── go_build.ps1 │ ├── go_build.sh │ ├── go_license.sh │ ├── go_test.ps1 │ ├── go_test.sh │ ├── install_python.sh │ ├── install_vcpkg.sh │ ├── integration │ │ └── dremio │ │ │ └── bootstrap.sh │ ├── java_build.sh │ ├── java_jar_upload.sh │ ├── java_jni_build.sh │ ├── java_test.sh │ ├── python_build.ps1 │ ├── python_build.sh │ ├── python_conda_build.sh │ ├── python_conda_clean.sh │ ├── python_conda_test.sh │ ├── python_conda_upload.sh │ ├── python_sdist_build.sh │ ├── python_sdist_test.sh │ ├── python_test.ps1 │ ├── python_test.sh │ ├── python_typecheck.sh │ ├── python_util.sh │ ├── python_venv_test.sh │ ├── python_wheel_fix_tag.py │ ├── python_wheel_unix_build.sh │ ├── python_wheel_unix_relocate.sh │ ├── python_wheel_unix_test.sh │ ├── python_wheel_upload.sh │ ├── python_wheel_windows_build.bat │ ├── python_wheel_windows_test.bat │ ├── r_build.sh │ ├── remamba.sh │ ├── run_cgo_drivermgr_check.sh │ ├── run_pre_commit_pin.py │ ├── run_rat_local.sh │ ├── rust_build.sh │ ├── rust_test.sh │ ├── source_build.sh │ ├── verify_ubuntu.sh │ └── website_build.sh └── vcpkg │ └── triplets │ ├── arm64-linux-static-release.cmake │ ├── arm64-osx-static-release.cmake │ ├── x64-linux-static-release.cmake │ └── x64-osx-static-release.cmake ├── compose.yaml ├── csharp ├── .editorconfig ├── .gitignore ├── Apache.Arrow.Adbc.sln ├── ApacheArrow.snk ├── Benchmarks │ ├── Benchmarks.csproj │ ├── CloudFetchBenchmarkRunner.cs │ ├── Databricks │ │ ├── CloudFetchRealE2EBenchmark.cs │ │ └── README.md │ └── Program.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── README.md ├── configs │ └── flightsql-spiceai.json ├── feather.png ├── src │ ├── Apache.Arrow.Adbc │ │ ├── AdbcConnection.cs │ │ ├── AdbcConnection11.cs │ │ ├── AdbcDatabase.cs │ │ ├── AdbcDatabase11.cs │ │ ├── AdbcDriver.cs │ │ ├── AdbcDriver11.cs │ │ ├── AdbcDriverLoader.cs │ │ ├── AdbcException.cs │ │ ├── AdbcInfoCode.cs │ │ ├── AdbcOptions.cs │ │ ├── AdbcStatement.cs │ │ ├── AdbcStatement11.cs │ │ ├── AdbcStatistic.cs │ │ ├── AdbcStatusCode.cs │ │ ├── AdbcVersion.cs │ │ ├── Apache.Arrow.Adbc.csproj │ │ ├── BulkIngestMode.cs │ │ ├── C │ │ │ ├── CAdbcConnection.cs │ │ │ ├── CAdbcDatabase.cs │ │ │ ├── CAdbcDriver.cs │ │ │ ├── CAdbcDriverExporter.cs │ │ │ ├── CAdbcDriverImporter.Defaults.cs │ │ │ ├── CAdbcDriverImporter.cs │ │ │ ├── CAdbcError.cs │ │ │ ├── CAdbcErrorDetail.cs │ │ │ ├── CAdbcPartitions.cs │ │ │ ├── CAdbcStatement.cs │ │ │ ├── Delegates.cs │ │ │ ├── NativeDelegate.cs │ │ │ └── NativeLibrary.cs │ │ ├── Extensions │ │ │ ├── CollectionExtensions.cs │ │ │ ├── IArrowArrayExtensions.cs │ │ │ ├── ListArrayExtensions.cs │ │ │ ├── MarshalExtensions.cs │ │ │ └── StandardSchemaExtensions.cs │ │ ├── IsolationLevel.cs │ │ ├── PartitionDescriptor.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Results.cs │ │ ├── StandardSchemas.cs │ │ ├── Tracing │ │ │ ├── ActivityExtensions.cs │ │ │ ├── ActivityTrace.cs │ │ │ ├── IActivityTracer.cs │ │ │ ├── IActivityTracerExtensions.cs │ │ │ ├── ITracingStatement.cs │ │ │ ├── SemanticConventions.cs │ │ │ ├── TracingConnection.cs │ │ │ ├── TracingReader.cs │ │ │ └── TracingStatement.cs │ │ └── readme.md │ ├── Client │ │ ├── AdbcColumn.cs │ │ ├── AdbcCommand.cs │ │ ├── AdbcConnection.cs │ │ ├── AdbcDataReader.cs │ │ ├── AdbcParameter.cs │ │ ├── Apache.Arrow.Adbc.Client.csproj │ │ ├── ConnectionStringParser.cs │ │ ├── DecimalBehavior.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SchemaConverter.cs │ │ ├── StructBehavior.cs │ │ ├── docs │ │ │ ├── Arrow-to-DbDataReader.png │ │ │ └── DependencyInjection.png │ │ └── readme.md │ ├── Drivers │ │ ├── Apache │ │ │ ├── Apache.Arrow.Adbc.Drivers.Apache.csproj │ │ │ ├── ApacheParameters.cs │ │ │ ├── ApacheUtility.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Attributes.cs │ │ │ ├── Hive2 │ │ │ │ ├── DataTypeConversion.cs │ │ │ │ ├── DecimalUtility.cs │ │ │ │ ├── HiveServer2AuthType.cs │ │ │ │ ├── HiveServer2Connection.cs │ │ │ │ ├── HiveServer2ConnectionFactory.cs │ │ │ │ ├── HiveServer2Database.cs │ │ │ │ ├── HiveServer2Driver.cs │ │ │ │ ├── HiveServer2Exception.cs │ │ │ │ ├── HiveServer2ExtendedConnection.cs │ │ │ │ ├── HiveServer2HttpConnection.cs │ │ │ │ ├── HiveServer2Parameters.cs │ │ │ │ ├── HiveServer2ProxyConfigurator.cs │ │ │ │ ├── HiveServer2Reader.cs │ │ │ │ ├── HiveServer2SchemaParser.cs │ │ │ │ ├── HiveServer2StandardConnection.cs │ │ │ │ ├── HiveServer2Statement.cs │ │ │ │ ├── HiveServer2TlsImpl.cs │ │ │ │ ├── HiveServer2TransportType.cs │ │ │ │ ├── IHiveServer2Statement.cs │ │ │ │ ├── README.md │ │ │ │ ├── SqlTypeNameParser.cs │ │ │ │ └── ThreadSafeClient.cs │ │ │ ├── Impala │ │ │ │ ├── ImpalaAuthType.cs │ │ │ │ ├── ImpalaConnection.cs │ │ │ │ ├── ImpalaConnectionFactory.cs │ │ │ │ ├── ImpalaDatabase.cs │ │ │ │ ├── ImpalaDriver.cs │ │ │ │ ├── ImpalaHttpConnection.cs │ │ │ │ ├── ImpalaParameters.cs │ │ │ │ ├── ImpalaServerType.cs │ │ │ │ ├── ImpalaStandardConnection.cs │ │ │ │ ├── ImpalaStatement.cs │ │ │ │ └── README.md │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Spark │ │ │ │ ├── README.md │ │ │ │ ├── SparkAuthType.cs │ │ │ │ ├── SparkConnection.cs │ │ │ │ ├── SparkConnectionFactory.cs │ │ │ │ ├── SparkDatabase.cs │ │ │ │ ├── SparkDriver.cs │ │ │ │ ├── SparkHttpConnection.cs │ │ │ │ ├── SparkParameters.cs │ │ │ │ ├── SparkServerType.cs │ │ │ │ ├── SparkStandardConnection.cs │ │ │ │ └── SparkStatement.cs │ │ │ ├── Thrift │ │ │ │ ├── BitmapUtilities.cs │ │ │ │ ├── Sasl │ │ │ │ │ ├── ISaslMechanism.cs │ │ │ │ │ ├── NegotiationStatus.cs │ │ │ │ │ ├── PlainSaslMechanism.cs │ │ │ │ │ └── TSaslTransport.cs │ │ │ │ ├── SchemaParser.cs │ │ │ │ ├── Service │ │ │ │ │ └── Rpc │ │ │ │ │ │ └── Thrift │ │ │ │ │ │ ├── IRequest.cs │ │ │ │ │ │ ├── IResponse.cs │ │ │ │ │ │ ├── TArrayTypeEntry.cs │ │ │ │ │ │ ├── TBinaryColumn.cs │ │ │ │ │ │ ├── TBoolColumn.cs │ │ │ │ │ │ ├── TBoolValue.cs │ │ │ │ │ │ ├── TByteColumn.cs │ │ │ │ │ │ ├── TByteValue.cs │ │ │ │ │ │ ├── TCLIService.Constants.cs │ │ │ │ │ │ ├── TCLIService.Extensions.cs │ │ │ │ │ │ ├── TCLIService.cs │ │ │ │ │ │ ├── TCacheLookupResult.cs │ │ │ │ │ │ ├── TCancelDelegationTokenReq.cs │ │ │ │ │ │ ├── TCancelDelegationTokenResp.cs │ │ │ │ │ │ ├── TCancelOperationReq.cs │ │ │ │ │ │ ├── TCancelOperationResp.cs │ │ │ │ │ │ ├── TCloseOperationReq.cs │ │ │ │ │ │ ├── TCloseOperationResp.cs │ │ │ │ │ │ ├── TCloseSessionReq.cs │ │ │ │ │ │ ├── TCloseSessionResp.cs │ │ │ │ │ │ ├── TCloudFetchDisabledReason.cs │ │ │ │ │ │ ├── TColumn.cs │ │ │ │ │ │ ├── TColumnDesc.cs │ │ │ │ │ │ ├── TColumnValue.cs │ │ │ │ │ │ ├── TDBSqlArrowFormat.cs │ │ │ │ │ │ ├── TDBSqlArrowLayout.cs │ │ │ │ │ │ ├── TDBSqlCloseOperationReason.cs │ │ │ │ │ │ ├── TDBSqlCloudResultFile.cs │ │ │ │ │ │ ├── TDBSqlCompressionCodec.cs │ │ │ │ │ │ ├── TDBSqlConfValue.cs │ │ │ │ │ │ ├── TDBSqlCsvFormat.cs │ │ │ │ │ │ ├── TDBSqlFetchDisposition.cs │ │ │ │ │ │ ├── TDBSqlJsonArrayFormat.cs │ │ │ │ │ │ ├── TDBSqlManifestFileFormat.cs │ │ │ │ │ │ ├── TDBSqlResultFormat.cs │ │ │ │ │ │ ├── TDBSqlSessionCapabilities.cs │ │ │ │ │ │ ├── TDBSqlSessionConf.cs │ │ │ │ │ │ ├── TDBSqlStatement.cs │ │ │ │ │ │ ├── TDBSqlTempView.cs │ │ │ │ │ │ ├── TDoubleColumn.cs │ │ │ │ │ │ ├── TDoubleValue.cs │ │ │ │ │ │ ├── TDownloadDataReq.cs │ │ │ │ │ │ ├── TDownloadDataResp.cs │ │ │ │ │ │ ├── TExecuteStatementReq.cs │ │ │ │ │ │ ├── TExecuteStatementResp.cs │ │ │ │ │ │ ├── TExpressionInfo.cs │ │ │ │ │ │ ├── TFetchOrientation.cs │ │ │ │ │ │ ├── TFetchResultsReq.cs │ │ │ │ │ │ ├── TFetchResultsResp.cs │ │ │ │ │ │ ├── TGetCatalogsReq.cs │ │ │ │ │ │ ├── TGetCatalogsResp.cs │ │ │ │ │ │ ├── TGetColumnsReq.cs │ │ │ │ │ │ ├── TGetColumnsResp.cs │ │ │ │ │ │ ├── TGetCrossReferenceReq.cs │ │ │ │ │ │ ├── TGetCrossReferenceResp.cs │ │ │ │ │ │ ├── TGetDelegationTokenReq.cs │ │ │ │ │ │ ├── TGetDelegationTokenResp.cs │ │ │ │ │ │ ├── TGetFunctionsReq.cs │ │ │ │ │ │ ├── TGetFunctionsResp.cs │ │ │ │ │ │ ├── TGetInfoReq.cs │ │ │ │ │ │ ├── TGetInfoResp.cs │ │ │ │ │ │ ├── TGetInfoType.cs │ │ │ │ │ │ ├── TGetInfoValue.cs │ │ │ │ │ │ ├── TGetOperationStatusReq.cs │ │ │ │ │ │ ├── TGetOperationStatusResp.cs │ │ │ │ │ │ ├── TGetPrimaryKeysReq.cs │ │ │ │ │ │ ├── TGetPrimaryKeysResp.cs │ │ │ │ │ │ ├── TGetQueryIdReq.cs │ │ │ │ │ │ ├── TGetQueryIdResp.cs │ │ │ │ │ │ ├── TGetResultSetMetadataReq.cs │ │ │ │ │ │ ├── TGetResultSetMetadataResp.cs │ │ │ │ │ │ ├── TGetSchemasReq.cs │ │ │ │ │ │ ├── TGetSchemasResp.cs │ │ │ │ │ │ ├── TGetTableTypesReq.cs │ │ │ │ │ │ ├── TGetTableTypesResp.cs │ │ │ │ │ │ ├── TGetTablesReq.cs │ │ │ │ │ │ ├── TGetTablesResp.cs │ │ │ │ │ │ ├── TGetTypeInfoReq.cs │ │ │ │ │ │ ├── TGetTypeInfoResp.cs │ │ │ │ │ │ ├── THandleIdentifier.cs │ │ │ │ │ │ ├── TI16Column.cs │ │ │ │ │ │ ├── TI16Value.cs │ │ │ │ │ │ ├── TI32Column.cs │ │ │ │ │ │ ├── TI32Value.cs │ │ │ │ │ │ ├── TI64Column.cs │ │ │ │ │ │ ├── TI64Value.cs │ │ │ │ │ │ ├── TJobExecutionStatus.cs │ │ │ │ │ │ ├── TMapTypeEntry.cs │ │ │ │ │ │ ├── TNamespace.cs │ │ │ │ │ │ ├── TOpenSessionReq.cs │ │ │ │ │ │ ├── TOpenSessionResp.cs │ │ │ │ │ │ ├── TOperationHandle.cs │ │ │ │ │ │ ├── TOperationIdempotencyType.cs │ │ │ │ │ │ ├── TOperationState.cs │ │ │ │ │ │ ├── TOperationTimeoutLevel.cs │ │ │ │ │ │ ├── TOperationType.cs │ │ │ │ │ │ ├── TPrimitiveTypeEntry.cs │ │ │ │ │ │ ├── TProgressUpdateResp.cs │ │ │ │ │ │ ├── TProtocolVersion.cs │ │ │ │ │ │ ├── TRenewDelegationTokenReq.cs │ │ │ │ │ │ ├── TRenewDelegationTokenResp.cs │ │ │ │ │ │ ├── TResultPersistenceMode.cs │ │ │ │ │ │ ├── TRow.cs │ │ │ │ │ │ ├── TRowSet.cs │ │ │ │ │ │ ├── TSQLVariable.cs │ │ │ │ │ │ ├── TSessionHandle.cs │ │ │ │ │ │ ├── TSetClientInfoReq.cs │ │ │ │ │ │ ├── TSetClientInfoResp.cs │ │ │ │ │ │ ├── TSparkArrowBatch.cs │ │ │ │ │ │ ├── TSparkArrowResultLink.cs │ │ │ │ │ │ ├── TSparkArrowTypes.cs │ │ │ │ │ │ ├── TSparkDirectResults.cs │ │ │ │ │ │ ├── TSparkGetDirectResults.cs │ │ │ │ │ │ ├── TSparkParameter.cs │ │ │ │ │ │ ├── TSparkParameterValue.cs │ │ │ │ │ │ ├── TSparkParameterValueArg.cs │ │ │ │ │ │ ├── TSparkRowSetType.cs │ │ │ │ │ │ ├── TStatementConf.cs │ │ │ │ │ │ ├── TStatus.cs │ │ │ │ │ │ ├── TStatusCode.cs │ │ │ │ │ │ ├── TStringColumn.cs │ │ │ │ │ │ ├── TStringValue.cs │ │ │ │ │ │ ├── TStructTypeEntry.cs │ │ │ │ │ │ ├── TTableSchema.cs │ │ │ │ │ │ ├── TTypeDesc.cs │ │ │ │ │ │ ├── TTypeEntry.cs │ │ │ │ │ │ ├── TTypeId.cs │ │ │ │ │ │ ├── TTypeQualifierValue.cs │ │ │ │ │ │ ├── TTypeQualifiers.cs │ │ │ │ │ │ ├── TUnionTypeEntry.cs │ │ │ │ │ │ ├── TUploadDataReq.cs │ │ │ │ │ │ ├── TUploadDataResp.cs │ │ │ │ │ │ └── TUserDefinedTypeEntry.cs │ │ │ │ └── StreamExtensions.cs │ │ │ └── readme.md │ │ ├── BigQuery │ │ │ ├── ActivityExtensions.cs │ │ │ ├── Apache.Arrow.Adbc.Drivers.BigQuery.csproj │ │ │ ├── AssemblyInfo.cs │ │ │ ├── BigQueryConnection.cs │ │ │ ├── BigQueryDatabase.cs │ │ │ ├── BigQueryDriver.cs │ │ │ ├── BigQueryInfoArrowStream.cs │ │ │ ├── BigQueryParameters.cs │ │ │ ├── BigQueryStatement.cs │ │ │ ├── BigQueryStsTokenResponse.cs │ │ │ ├── BigQueryTableTypes.cs │ │ │ ├── BigQueryTokenResponse.cs │ │ │ ├── BigQueryUtils.cs │ │ │ ├── ITokenProtectedResource.cs │ │ │ ├── RetryManager.cs │ │ │ ├── TokenProtectedReadClient.cs │ │ │ └── readme.md │ │ ├── Databricks │ │ │ ├── Apache.Arrow.Adbc.Drivers.Databricks.csproj │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Auth │ │ │ │ ├── DatabricksOAuthGrantType.cs │ │ │ │ ├── JwtTokenDecoder.cs │ │ │ │ ├── MandatoryTokenExchangeDelegatingHandler.cs │ │ │ │ ├── OAuthClientCredentialsProvider.cs │ │ │ │ ├── OAuthDelegatingHandler.cs │ │ │ │ ├── TokenExchangeClient.cs │ │ │ │ └── TokenRefreshDelegatingHandler.cs │ │ │ ├── CustomLZ4DecoderStream.cs │ │ │ ├── CustomLZ4FrameReader.cs │ │ │ ├── DatabricksConfiguration.cs │ │ │ ├── DatabricksConnection.cs │ │ │ ├── DatabricksDatabase.cs │ │ │ ├── DatabricksDriver.cs │ │ │ ├── DatabricksException.cs │ │ │ ├── DatabricksParameters.cs │ │ │ ├── DatabricksSchemaParser.cs │ │ │ ├── DatabricksStatement.cs │ │ │ ├── FeatureVersionNegotiator.cs │ │ │ ├── Lz4Utilities.cs │ │ │ ├── Reader │ │ │ │ ├── BaseDatabricksReader.cs │ │ │ │ ├── CloudFetch │ │ │ │ │ ├── Clock.cs │ │ │ │ │ ├── CloudFetchDownloadManager.cs │ │ │ │ │ ├── CloudFetchDownloader.cs │ │ │ │ │ ├── CloudFetchMemoryBufferManager.cs │ │ │ │ │ ├── CloudFetchReader.cs │ │ │ │ │ ├── CloudFetchResultFetcher.cs │ │ │ │ │ ├── DownloadResult.cs │ │ │ │ │ ├── EndOfResultsGuard.cs │ │ │ │ │ ├── ICloudFetchInterfaces.cs │ │ │ │ │ └── cloudfetch-pipeline-design.md │ │ │ │ ├── DatabricksCompositeReader.cs │ │ │ │ ├── DatabricksOperationStatusPoller.cs │ │ │ │ ├── DatabricksReader.cs │ │ │ │ └── IOperationStatusPoller.cs │ │ │ ├── Result │ │ │ │ └── DescTableExtendedResult.cs │ │ │ ├── RetryHttpHandler.cs │ │ │ ├── ThriftErrorMessageHandler.cs │ │ │ ├── TracingDelegatingHandler.cs │ │ │ ├── readme.md │ │ │ └── statement-execution-api-design.md │ │ ├── FlightSql │ │ │ ├── Apache.Arrow.Adbc.Drivers.FlightSql.csproj │ │ │ ├── FlightSqlConnection.cs │ │ │ ├── FlightSqlDatabase.cs │ │ │ ├── FlightSqlDriver.cs │ │ │ ├── FlightSqlParameters.cs │ │ │ ├── FlightSqlResult.cs │ │ │ ├── FlightSqlStatement.cs │ │ │ └── README.md │ │ └── Interop │ │ │ ├── FlightSql │ │ │ ├── Apache.Arrow.Adbc.Drivers.Interop.FlightSql.csproj │ │ │ ├── Build-FlightSqlDriver.ps1 │ │ │ ├── FlightSqlDriverLoader.cs │ │ │ ├── copyFlightSqlDriver.sh │ │ │ └── readme.md │ │ │ └── Snowflake │ │ │ ├── Apache.Arrow.Adbc.Drivers.Interop.Snowflake.csproj │ │ │ ├── Build-SnowflakeDriver.ps1 │ │ │ ├── SnowflakeDriverLoader.cs │ │ │ ├── copySnowflakeDriver.sh │ │ │ └── readme.md │ └── Telemetry │ │ └── Traces │ │ ├── Exporters │ │ ├── Apache.Arrow.Adbc.Telemetry.Traces.Exporters.csproj │ │ ├── ExportersBuilder.cs │ │ ├── ExportersOptions.cs │ │ ├── FileExporter │ │ │ ├── FileExporter.cs │ │ │ ├── FileExporterExtensions.cs │ │ │ └── FileExporterOptions.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── readme.md │ │ └── Listeners │ │ ├── Apache.Arrow.Adbc.Telemetry.Traces.Listeners.csproj │ │ ├── FileListener │ │ ├── ActivityProcessor.cs │ │ ├── FileActivityListener.cs │ │ ├── SerializableActivity.cs │ │ └── TracingFile.cs │ │ ├── ListenersOptions.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── readme.md └── test │ ├── Apache.Arrow.Adbc.Tests │ ├── AdbcTests.cs │ ├── Apache.Arrow.Adbc.Testing.csproj │ ├── Client │ │ ├── ClientTests.cs │ │ └── DuckDbClientTests.cs │ ├── ClientTests.cs │ ├── ColumnNetTypeArrowTypeValue.cs │ ├── DriverTests.cs │ ├── DuckDbFixture.cs │ ├── IArrowArrayExtensionsTests.cs │ ├── ImportedDuckDbTests.cs │ ├── Metadata │ │ ├── AdbcCatalog.cs │ │ ├── AdbcColumn.cs │ │ ├── AdbcConstraint.cs │ │ ├── AdbcDbSchema.cs │ │ ├── AdbcTable.cs │ │ ├── AdbcUsageSchema.cs │ │ └── GetObjectsParser.cs │ ├── MultiEnvironmentTestConfiguration.cs │ ├── MultiEnvironmentTestUtils.cs │ ├── SampleDataBuilder.cs │ ├── StandardSchemasTests.cs │ ├── TestBase.cs │ ├── TestConfiguration.cs │ ├── TestEnvironment.cs │ ├── Tracing │ │ └── TracingTests.cs │ ├── Utils.cs │ └── Xunit │ │ ├── OrderAttribute.cs │ │ └── TestOrderer.cs │ ├── Drivers │ ├── Apache │ │ ├── Apache.Arrow.Adbc.Tests.Drivers.Apache.csproj │ │ ├── ApacheTestConfiguration.cs │ │ ├── AssemblyInfo.cs │ │ ├── Common │ │ │ ├── ApacheUtilsTests.cs │ │ │ ├── BinaryBooleanValueTests.cs │ │ │ ├── ClientTests.cs │ │ │ ├── CommonTestEnvironment.cs │ │ │ ├── ComplexTypesValueTests.cs │ │ │ ├── DateTimeValueTests.cs │ │ │ ├── DriverTests.cs │ │ │ ├── NumericValueTests.cs │ │ │ ├── StatementTests.cs │ │ │ ├── StringValueTests.cs │ │ │ └── TelemetryTests.cs │ │ ├── Hive2 │ │ │ ├── BinaryBooleanValueTests.cs │ │ │ ├── ClientTests.cs │ │ │ ├── DateTimeValueTests.cs │ │ │ ├── DecimalUtilityTests.cs │ │ │ ├── DriverTests.cs │ │ │ ├── HiveServer2ParametersTest.cs │ │ │ ├── HiveServer2ProxyConfiguratorTests.cs │ │ │ ├── HiveServer2ReaderTest.cs │ │ │ ├── HiveServer2TestEnvironment.cs │ │ │ ├── HiveServer2TlsImplTest.cs │ │ │ ├── NumericValueTests.cs │ │ │ ├── Resources │ │ │ │ ├── HiveData.sql │ │ │ │ └── hiveconfig-http.json │ │ │ ├── SqlTypeNameParserTests.cs │ │ │ ├── StatementTests.cs │ │ │ ├── StringValueTests.cs │ │ │ └── TelemetryTests.cs │ │ ├── Impala │ │ │ ├── BinaryBooleanValueTests.cs │ │ │ ├── ClientTests.cs │ │ │ ├── DateTimeValueTests.cs │ │ │ ├── DriverTests.cs │ │ │ ├── ImpalaTestEnvironment.cs │ │ │ ├── NumericValueTests.cs │ │ │ ├── Resources │ │ │ │ ├── ImpalaData.sql │ │ │ │ └── impalaconfig.json │ │ │ ├── StatementTests.cs │ │ │ ├── StringValueTests.cs │ │ │ └── TelemetryTests.cs │ │ └── Spark │ │ │ ├── BinaryBooleanValueTests.cs │ │ │ ├── ClientTests.cs │ │ │ ├── ComplexTypesValueTests.cs │ │ │ ├── DateTimeValueTests.cs │ │ │ ├── DriverTests.cs │ │ │ ├── NumericValueTests.cs │ │ │ ├── Resources │ │ │ ├── SparkData.sql │ │ │ └── sparkconfig-http.json │ │ │ ├── SparkConnectionTest.cs │ │ │ ├── SparkHttpConnectionUserAgentTest.cs │ │ │ ├── SparkTestConfiguration.cs │ │ │ ├── SparkTestEnvironment.cs │ │ │ ├── StatementTests.cs │ │ │ ├── StringValueTests.cs │ │ │ └── TelemetryTests.cs │ ├── BigQuery │ │ ├── Apache.Arrow.Adbc.Tests.Drivers.BigQuery.csproj │ │ ├── AuthenticationTests.cs │ │ ├── BigQueryData.cs │ │ ├── BigQueryStatementTests.cs │ │ ├── BigQueryTestConfiguration.cs │ │ ├── BigQueryTestingUtils.cs │ │ ├── BigQueryUtilsTests.cs │ │ ├── ClientTests.cs │ │ ├── DriverTests.cs │ │ ├── Resources │ │ │ ├── BigQueryData.sql │ │ │ └── bigqueryconfig.json │ │ ├── StatementTests.cs │ │ ├── TelemetryTests.cs │ │ └── readme.md │ ├── Databricks │ │ ├── Apache.Arrow.Adbc.Tests.Drivers.Databricks.csproj │ │ ├── E2E │ │ │ ├── Auth │ │ │ │ ├── OAuthClientCredentialsProviderTests.cs │ │ │ │ └── TokenExchangeTests.cs │ │ │ ├── ClientTests.cs │ │ │ ├── CloudFetch │ │ │ │ ├── CloudFetchDownloaderTest.cs │ │ │ │ └── CloudFetchResultFetcherTest.cs │ │ │ ├── CloudFetchE2ETest.cs │ │ │ ├── ComplexTypesValueTests.cs │ │ │ ├── DatabricksConnectionTest.cs │ │ │ ├── DatabricksTestConfiguration.cs │ │ │ ├── DatabricksTestEnvironment.cs │ │ │ ├── DateTimeValueTests.cs │ │ │ ├── DriverTests.cs │ │ │ ├── NumericValueTests.cs │ │ │ ├── ServerSidePropertyE2ETest.cs │ │ │ ├── StatementTests.cs │ │ │ ├── StringValueTests.cs │ │ │ └── TelemetryTests.cs │ │ ├── Resources │ │ │ ├── Databricks.sql │ │ │ ├── create_reference_table.sql │ │ │ ├── create_table_all_types.sql │ │ │ ├── databricks.json │ │ │ └── result_get_column_extended_all_types.json │ │ ├── TracingDelegatingHandlerTest.cs │ │ └── Unit │ │ │ ├── Auth │ │ │ ├── JwtTokenDecoderTests.cs │ │ │ ├── MandatoryTokenExchangeDelegatingHandlerTests.cs │ │ │ ├── TokenExchangeClientTests.cs │ │ │ └── TokenRefreshDelegatingHandlerTests.cs │ │ │ ├── DatabricksCompositeReaderUnitTests.cs │ │ │ ├── DatabricksConfigurationTest.cs │ │ │ ├── DatabricksOperationStatusPollerTests.cs │ │ │ ├── Result │ │ │ └── DescTableExtendedResultTest.cs │ │ │ ├── RetryHttpHandlerTest.cs │ │ │ └── ThriftErrorMessageHandlerTest.cs │ ├── FlightSql │ │ ├── Apache.Arrow.Adbc.Tests.Drivers.FlightSql.csproj │ │ ├── ClientTests.cs │ │ ├── DriverTests.cs │ │ ├── FlightSqlTestConfiguration.cs │ │ ├── FlightSqlTestingUtils.cs │ │ └── Resources │ │ │ └── flightsqlconfig.json │ └── Interop │ │ ├── FlightSql │ │ ├── Apache.Arrow.Adbc.Tests.Drivers.Interop.FlightSql.csproj │ │ ├── ClientTests.cs │ │ ├── DriverTests.cs │ │ ├── FlightSqlData.cs │ │ ├── FlightSqlParameters.cs │ │ ├── FlightSqlTestConfiguration.cs │ │ ├── FlightSqlTestingUtils.cs │ │ ├── Resources │ │ │ └── flightsqlconfig.json │ │ └── readme.md │ │ └── Snowflake │ │ ├── Apache.Arrow.Adbc.Tests.Drivers.Interop.Snowflake.csproj │ │ ├── CastTests.cs │ │ ├── ClientTests.cs │ │ ├── ConstraintTests.cs │ │ ├── DriverTests.cs │ │ ├── ErrorHandlingTests.cs │ │ ├── NumericOperatorTests.cs │ │ ├── Resources │ │ ├── SnowflakeConstraints.sql │ │ ├── SnowflakeData.sql │ │ └── snowflakeconfig.json │ │ ├── SnowflakeData.cs │ │ ├── SnowflakeTestConfiguration.cs │ │ ├── SnowflakeTestingUtils.cs │ │ ├── ValueTests.cs │ │ └── readme.md │ ├── SmokeTests │ ├── Apache.Arrow.Adbc.SmokeTests │ │ └── Apache.Arrow.Adbc.SmokeTests.csproj │ ├── BigQuery │ │ └── Apache.Arrow.Adbc.SmokeTests.Drivers.BigQuery.csproj │ ├── FlightSql │ │ └── Apache.Arrow.Adbc.SmokeTests.Drivers.FlightSql.csproj │ ├── Interop │ │ ├── FlightSql │ │ │ └── Apache.Arrow.Adbc.SmokeTests.Drivers.Interop.FlightSql.csproj │ │ └── Snowflake │ │ │ └── Apache.Arrow.Adbc.SmokeTests.Drivers.Interop.Snowflake.csproj │ ├── build.props │ └── readme.md │ └── Telemetry │ └── Traces │ ├── Exporters │ ├── Apache.Arrow.Adbc.Tests.Telemetry.Traces.Exporters.csproj │ ├── ExportersBuilderTests.cs │ └── FileExporter │ │ └── FileExporterTests.cs │ └── Listeners │ ├── Apache.Arrow.Adbc.Tests.Telemetry.Traces.Listeners.csproj │ ├── FileListener │ └── FileActivityListenerTests.cs │ └── TracingFileTests.cs ├── dev ├── adbc_dev │ ├── __init__.py │ ├── changelog.py │ ├── tests │ │ ├── __init__.py │ │ └── test_changelog.py │ └── title_check.py ├── bench │ ├── README.md │ ├── odbc │ │ ├── CMakeLists.txt │ │ └── main.cc │ └── run_bench.py └── release │ ├── .env.example │ ├── 01-prepare.sh │ ├── 02-sign.sh │ ├── 03-source.sh │ ├── 04-java-upload.sh │ ├── 05-linux-upload.sh │ ├── 06-binary-verify.sh │ ├── check-rat-report.py │ ├── post-01-upload.sh │ ├── post-02-binary.sh │ ├── post-03-python.sh │ ├── post-04-go.sh │ ├── post-05-linux.sh │ ├── post-06-ruby.sh │ ├── post-07-csharp.sh │ ├── post-08-rust.sh │ ├── post-09-announce.sh │ ├── post-10-remove-old-artifacts.sh │ ├── post-11-bump-versions.sh │ ├── post-12-website.sh │ ├── rat_exclude_files.txt │ ├── run-rat.sh │ ├── setup-gpg-agent.sh │ ├── utils-common.sh │ ├── utils-prepare.sh │ ├── verify-apt.sh │ ├── verify-release-candidate.ps1 │ ├── verify-release-candidate.sh │ ├── verify-yum.sh │ └── versions.env ├── docs ├── Makefile ├── make.bat ├── mermaid.makefile └── source │ ├── AdbcQuadrants.mmd │ ├── AdbcQuadrants.mmd.svg │ ├── _static │ ├── banner.png │ ├── css │ │ └── custom.css │ ├── logo-dark.png │ ├── logo-light.png │ └── version.js │ ├── _templates │ └── base.html │ ├── conf.py │ ├── cpp │ ├── api │ │ └── index.rst │ ├── concurrency.rst │ ├── driver_example.rst │ ├── driver_manager.rst │ ├── index.rst │ ├── quickstart.rst │ ├── recipe │ │ ├── CMakeLists.txt │ │ ├── quickstart.cc │ │ └── quickstart.cc.stdout.txt │ ├── recipe_driver │ │ ├── CMakeLists.txt │ │ ├── driver_example.cc │ │ ├── driver_example.h │ │ ├── driver_example.py │ │ ├── driver_example.py.stdout.txt │ │ ├── driver_example.toml.in │ │ ├── driver_example_manifest.py │ │ ├── driver_example_manifest.py.stdout.txt │ │ ├── driver_example_test.cc │ │ └── get_arch.cmake │ └── static_linking.rst │ ├── csharp │ └── index.rst │ ├── development │ ├── contributing.rst │ ├── nightly.rst │ ├── releasing.rst │ └── versioning.rst │ ├── driver │ ├── authoring.rst │ ├── bigquery.rst │ ├── duckdb.rst │ ├── flight_sql.rst │ ├── installation.rst │ ├── jdbc.rst │ ├── postgresql.rst │ ├── snowflake.rst │ ├── sqlite.rst │ └── status.rst │ ├── ext │ ├── adbc_java_domain.py │ ├── adbc_misc.py │ ├── doxygen_inventory.py │ ├── fake_inventory.py │ ├── javadoc_inventory.py │ └── sphinx_recipe │ │ ├── README.markdown │ │ ├── pyproject.toml │ │ └── sphinx_recipe │ │ ├── __init__.py │ │ ├── parser.py │ │ └── update_output.py │ ├── faq.rst │ ├── format │ ├── AdbcStatement.drawio │ ├── AdbcStatement.svg │ ├── AdbcStatementBasicUsage.mmd │ ├── AdbcStatementBasicUsage.mmd.svg │ ├── AdbcStatementBulkIngest.mmd │ ├── AdbcStatementBulkIngest.mmd.svg │ ├── AdbcStatementConsumeResultSet.mmd │ ├── AdbcStatementConsumeResultSet.mmd.svg │ ├── AdbcStatementPartitioned.mmd │ ├── AdbcStatementPartitioned.mmd.svg │ ├── AdbcStatementUpdate.mmd │ ├── AdbcStatementUpdate.mmd.svg │ ├── DriverAlias.mmd │ ├── DriverAlias.mmd.svg │ ├── DriverDirectLink.mmd │ ├── DriverDirectLink.mmd.svg │ ├── DriverManagerUse.mmd │ ├── DriverManagerUse.mmd.svg │ ├── DriverTableLoad.mmd │ ├── DriverTableLoad.mmd.svg │ ├── DriverTableUse.mmd │ ├── DriverTableUse.mmd.svg │ ├── comparison.rst │ ├── driver_manifests.rst │ ├── how_manager.rst │ ├── manifest_load.mmd │ ├── manifest_load.mmd.svg │ ├── related_work.rst │ ├── specification.rst │ └── versioning.rst │ ├── glossary.rst │ ├── index.rst │ ├── java │ ├── api │ │ └── index.rst │ ├── driver_manager.rst │ ├── index.rst │ └── quickstart.rst │ ├── python │ ├── api │ │ ├── adbc_driver_bigquery.rst │ │ ├── adbc_driver_flightsql.rst │ │ ├── adbc_driver_manager.rst │ │ ├── adbc_driver_postgresql.rst │ │ ├── adbc_driver_snowflake.rst │ │ ├── adbc_driver_sqlite.rst │ │ └── index.rst │ ├── driver_manager.rst │ ├── index.rst │ ├── quickstart.rst │ └── recipe │ │ ├── driver_manager.rst │ │ ├── driver_manager_lowlevel.py │ │ ├── driver_manager_prepare.py │ │ ├── flight_sql.rst │ │ ├── flightsql_dremio_connect.py │ │ ├── flightsql_sqlite_connect.py │ │ ├── flightsql_sqlite_max_msg_size.py │ │ ├── flightsql_sqlite_options.py │ │ ├── index.rst │ │ ├── postgresql.rst │ │ ├── postgresql_authenticate.py │ │ ├── postgresql_authenticate.py.stdout.txt │ │ ├── postgresql_autocommit.py │ │ ├── postgresql_create_append_table.py │ │ ├── postgresql_create_dataset_table.py │ │ ├── postgresql_create_temp_table.py │ │ ├── postgresql_execute_bind.py │ │ ├── postgresql_execute_nocopy.py │ │ ├── postgresql_execute_nocopy.py.stdout.txt │ │ ├── postgresql_get_query_schema.py │ │ ├── postgresql_get_table_schema.py │ │ ├── postgresql_list_catalogs.py │ │ ├── postgresql_pandas.py │ │ ├── postgresql_polars.py │ │ ├── postgresql_pool.py │ │ ├── sqlite.rst │ │ ├── sqlite_batch_rows.py │ │ └── sqlite_batch_rows.py.stdout.txt │ ├── r │ └── index.rst │ ├── rust │ ├── driver_manager.rst │ ├── index.rst │ └── quickstart.rst │ └── tests │ └── test_cookbook.py ├── glib ├── .gitignore ├── Gemfile ├── README.md ├── adbc-arrow-glib │ ├── adbc-arrow-glib.h │ ├── connection.c │ ├── connection.h │ ├── meson.build │ ├── statement.c │ ├── statement.h │ └── version.h.in ├── adbc-glib │ ├── adbc-glib-raw.h │ ├── adbc-glib.h │ ├── connection-raw.h │ ├── connection.c │ ├── connection.h │ ├── database-raw.h │ ├── database.c │ ├── database.h │ ├── error-raw.h │ ├── error.c │ ├── error.h │ ├── meson.build │ ├── statement-raw.h │ ├── statement.c │ ├── statement.h │ └── version.h.in ├── example │ ├── README.md │ ├── meson.build │ ├── sqlite.c │ └── vala │ │ ├── README.md │ │ ├── meson.build │ │ └── sqlite.vala ├── meson.build ├── meson_options.txt ├── test │ ├── helper.rb │ ├── helper │ │ └── sandbox.rb │ ├── run.rb │ ├── run.sh │ ├── test-arrow-connection.rb │ ├── test-arrow-statement.rb │ ├── test-connection.rb │ ├── test-database.rb │ ├── test-isolation-level.rb │ ├── test-statement.rb │ └── test-statistic-key.rb └── tool │ └── generate-version-header.py ├── go └── adbc │ ├── LICENSE.txt │ ├── README.md │ ├── adbc.go │ ├── driver │ ├── bigquery │ │ ├── bigquery_database.go │ │ ├── connection.go │ │ ├── connection_test.go │ │ ├── driver.go │ │ ├── driver_test.go │ │ ├── record_reader.go │ │ ├── record_reader_test.go │ │ └── statement.go │ ├── databricks │ │ ├── cloudfetch_e2e_test.go │ │ ├── connection.go │ │ ├── database.go │ │ ├── driver.go │ │ ├── driver_test.go │ │ ├── integration_e2e_test.go │ │ ├── ipc_reader_adapter.go │ │ ├── ipc_reader_test.go │ │ └── statement.go │ ├── flightsql │ │ ├── cmd │ │ │ └── testserver │ │ │ │ └── main.go │ │ ├── example_usage_test.go │ │ ├── flightsql_adbc_server_test.go │ │ ├── flightsql_adbc_test.go │ │ ├── flightsql_connection.go │ │ ├── flightsql_database.go │ │ ├── flightsql_driver.go │ │ ├── flightsql_oauth.go │ │ ├── flightsql_statement.go │ │ ├── logging.go │ │ ├── record_reader.go │ │ ├── record_reader_test.go │ │ ├── timeouts.go │ │ └── utils.go │ ├── internal │ │ ├── driverbase │ │ │ ├── connection.go │ │ │ ├── database.go │ │ │ ├── driver.go │ │ │ ├── driver_info.go │ │ │ ├── driver_info_test.go │ │ │ ├── driver_test.go │ │ │ ├── error.go │ │ │ ├── logging.go │ │ │ ├── rotating_file_writer.go │ │ │ ├── rotating_file_writer_test.go │ │ │ └── statement.go │ │ └── shared_utils.go │ ├── panicdummy │ │ └── panicdummy_adbc.go │ └── snowflake │ │ ├── binding.go │ │ ├── bulk_ingestion.go │ │ ├── bulk_ingestion_test.go │ │ ├── concat_reader.go │ │ ├── connection.go │ │ ├── driver.go │ │ ├── driver_test.go │ │ ├── queries │ │ ├── get_objects_all.sql │ │ ├── get_objects_dbschemas.sql │ │ ├── get_objects_tables.sql │ │ └── get_objects_terse_catalogs.sql │ │ ├── record_reader.go │ │ ├── snowflake_database.go │ │ └── statement.go │ ├── drivermgr │ ├── adbc_driver_manager.cc │ ├── arrow-adbc │ │ ├── adbc.h │ │ └── adbc_driver_manager.h │ ├── current_arch.h │ ├── doc.go │ ├── vendored │ │ └── toml++ │ │ │ └── toml.hpp │ ├── wrapper.go │ └── wrapper_sqlite_test.go │ ├── ext.go │ ├── go.mod │ ├── go.sum │ ├── infocode_string.go │ ├── pkg │ ├── Makefile │ ├── _tmpl │ │ ├── driver.go.tmpl │ │ ├── utils.c.tmpl │ │ └── utils.h.tmpl │ ├── bigquery │ │ ├── driver.go │ │ ├── extra.go │ │ ├── utils.c │ │ └── utils.h │ ├── databricks │ │ ├── driver.go │ │ ├── utils.c │ │ └── utils.h │ ├── doc.go │ ├── flightsql │ │ ├── driver.go │ │ ├── init.go │ │ ├── utils.c │ │ └── utils.h │ ├── gen │ │ └── main.go │ ├── panicdummy │ │ ├── driver.go │ │ ├── utils.c │ │ └── utils.h │ └── snowflake │ │ ├── driver.go │ │ ├── utils.c │ │ └── utils.h │ ├── sqldriver │ ├── doc.go │ ├── driver.go │ ├── driver_internals_test.go │ ├── driver_test.go │ └── flightsql │ │ ├── README.md │ │ ├── flightsql.go │ │ └── flightsql_test.go │ ├── standard_schemas.go │ ├── status_string.go │ ├── tools.go │ ├── utils │ └── utils.go │ └── validation │ └── validation.go ├── java ├── .checker-framework │ ├── org.apache.arrow.adapter.jdbc.JdbcToArrowUtils.astub │ ├── org.apache.arrow.util.AutoCloseables.astub │ ├── org.apache.arrow.vector.types.pojo.ArrowType.astub │ └── org.junit.jupiter.api.Assumptions.astub ├── CMakeLists.txt ├── core │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── arrow │ │ └── adbc │ │ └── core │ │ ├── AdbcConnection.java │ │ ├── AdbcDatabase.java │ │ ├── AdbcDriver.java │ │ ├── AdbcException.java │ │ ├── AdbcInfoCode.java │ │ ├── AdbcOptions.java │ │ ├── AdbcStatement.java │ │ ├── AdbcStatusCode.java │ │ ├── BulkIngestMode.java │ │ ├── ErrorDetail.java │ │ ├── IsolationLevel.java │ │ ├── PartitionDescriptor.java │ │ ├── StandardSchemas.java │ │ ├── StandardStatistics.java │ │ ├── TypedKey.java │ │ └── package-info.java ├── dev │ └── license │ │ └── asf-xml.license ├── driver-manager │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ └── drivermanager │ │ │ ├── AdbcDriverFactory.java │ │ │ └── AdbcDriverManager.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ ├── drivermanager │ │ │ └── AdbcDriverManagerTest.java │ │ │ └── test │ │ │ ├── TestDriver.java │ │ │ └── TestDriverFactory.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.apache.arrow.adbc.drivermanager.AdbcDriverFactory ├── driver │ ├── flight-sql-validation │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ └── driver │ │ │ └── flightsql │ │ │ ├── FlightSqlConnectionMetadataTest.java │ │ │ ├── FlightSqlConnectionTest.java │ │ │ ├── FlightSqlPartitionDescriptorTest.java │ │ │ ├── FlightSqlQuirks.java │ │ │ ├── FlightSqlStatementTest.java │ │ │ └── package-info.java │ ├── flight-sql │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── arrow │ │ │ │ │ └── adbc │ │ │ │ │ └── driver │ │ │ │ │ └── flightsql │ │ │ │ │ ├── BaseFlightReader.java │ │ │ │ │ ├── FlightInfoReader.java │ │ │ │ │ ├── FlightSqlClientWithCallOptions.java │ │ │ │ │ ├── FlightSqlConnection.java │ │ │ │ │ ├── FlightSqlConnectionProperties.java │ │ │ │ │ ├── FlightSqlDatabase.java │ │ │ │ │ ├── FlightSqlDriver.java │ │ │ │ │ ├── FlightSqlDriverFactory.java │ │ │ │ │ ├── FlightSqlDriverUtil.java │ │ │ │ │ ├── FlightSqlStatement.java │ │ │ │ │ ├── GetInfoMetadataReader.java │ │ │ │ │ └── GetObjectsMetadataReaders.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.apache.arrow.adbc.drivermanager.AdbcDriverFactory │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ └── driver │ │ │ └── flightsql │ │ │ ├── DetailsTest.java │ │ │ ├── GetObjectsTests.java │ │ │ ├── HeaderTest.java │ │ │ ├── HeaderValidator.java │ │ │ ├── MutualTlsTest.java │ │ │ └── TlsTest.java │ ├── jdbc-validation-derby │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ └── driver │ │ │ └── jdbc │ │ │ └── derby │ │ │ ├── DerbyConnectionMetadataTest.java │ │ │ ├── DerbyConnectionTest.java │ │ │ ├── DerbyQuirks.java │ │ │ ├── DerbyStatementTest.java │ │ │ └── DerbyTransactionTest.java │ ├── jdbc-validation-mssqlserver │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── arrow │ │ │ │ └── adbc │ │ │ │ └── driver │ │ │ │ └── jdbc │ │ │ │ └── mssqlserver │ │ │ │ ├── MsSqlServerQuirks.java │ │ │ │ └── MsSqlServerSqlTypeTest.java │ │ │ └── resources │ │ │ └── MsSqlServerSqlTypeTest.sql │ ├── jdbc-validation-postgresql │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── arrow │ │ │ │ └── adbc │ │ │ │ └── driver │ │ │ │ └── jdbc │ │ │ │ └── postgresql │ │ │ │ ├── JdbcPostgresqlConnectionMetadataTest.java │ │ │ │ ├── JdbcPostgresqlConnectionTest.java │ │ │ │ ├── JdbcPostgresqlStatementTest.java │ │ │ │ ├── JdbcPostgresqlTransactionTest.java │ │ │ │ ├── PostgreSqlTypeTest.java │ │ │ │ ├── PostgresqlQuirks.java │ │ │ │ └── StatisticsTest.java │ │ │ └── resources │ │ │ └── PostgreSqlTypeTest.sql │ ├── jdbc │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── arrow │ │ │ │ │ └── adbc │ │ │ │ │ └── driver │ │ │ │ │ └── jdbc │ │ │ │ │ ├── InfoMetadataBuilder.java │ │ │ │ │ ├── JdbcArrowReader.java │ │ │ │ │ ├── JdbcBindReader.java │ │ │ │ │ ├── JdbcConnection.java │ │ │ │ │ ├── JdbcDataSourceDatabase.java │ │ │ │ │ ├── JdbcDriver.java │ │ │ │ │ ├── JdbcDriverFactory.java │ │ │ │ │ ├── JdbcDriverUtil.java │ │ │ │ │ ├── JdbcQuirks.java │ │ │ │ │ ├── JdbcStatement.java │ │ │ │ │ ├── ObjectMetadataBuilder.java │ │ │ │ │ ├── RootArrowReader.java │ │ │ │ │ ├── StandardJdbcQuirks.java │ │ │ │ │ ├── UrlDataSource.java │ │ │ │ │ └── adapter │ │ │ │ │ ├── JdbcFieldInfoExtra.java │ │ │ │ │ ├── JdbcToArrowTypeConverter.java │ │ │ │ │ └── JdbcToArrowTypeConverters.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.apache.arrow.adbc.drivermanager.AdbcDriverFactory │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ └── driver │ │ │ └── jdbc │ │ │ ├── JdbcDatabaseTest.java │ │ │ └── JdbcDriverUtilTest.java │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── cpp │ │ │ │ └── jni_wrapper.cc │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── arrow │ │ │ │ │ └── adbc │ │ │ │ │ └── driver │ │ │ │ │ └── jni │ │ │ │ │ ├── JniConnection.java │ │ │ │ │ ├── JniDatabase.java │ │ │ │ │ ├── JniDriver.java │ │ │ │ │ ├── JniDriverFactory.java │ │ │ │ │ ├── JniStatement.java │ │ │ │ │ ├── impl │ │ │ │ │ ├── JniLoader.java │ │ │ │ │ ├── NativeAdbc.java │ │ │ │ │ ├── NativeConnectionHandle.java │ │ │ │ │ ├── NativeDatabaseHandle.java │ │ │ │ │ ├── NativeHandle.java │ │ │ │ │ ├── NativeQueryResult.java │ │ │ │ │ └── NativeStatementHandle.java │ │ │ │ │ └── package-info.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── services │ │ │ │ └── org.apache.arrow.adbc.drivermanager.AdbcDriverFactory │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── arrow │ │ │ └── adbc │ │ │ └── driver │ │ │ └── jni │ │ │ └── JniDriverTest.java │ └── validation │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── arrow │ │ └── adbc │ │ └── driver │ │ └── testsuite │ │ ├── AbstractConnectionMetadataTest.java │ │ ├── AbstractConnectionTest.java │ │ ├── AbstractPartitionDescriptorTest.java │ │ ├── AbstractSqlTypeTest.java │ │ ├── AbstractStatementTest.java │ │ ├── AbstractTransactionTest.java │ │ ├── ArrowAssertions.java │ │ ├── SqlTestUtil.java │ │ └── SqlValidationQuirks.java ├── pom.xml └── sql │ ├── pom.xml │ └── src │ └── main │ └── java │ └── org │ └── apache │ └── arrow │ └── adbc │ └── sql │ ├── SqlQuirks.java │ └── package-info.java ├── license.tpl ├── pyrightconfig.json ├── python ├── adbc_driver_bigquery │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NOTICE.txt │ ├── README.md │ ├── adbc_driver_bigquery │ │ ├── __init__.py │ │ ├── _static_version.py │ │ ├── _version.py │ │ ├── dbapi.py │ │ └── py.typed │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_dbapi.py │ │ └── test_lowlevel.py ├── adbc_driver_flightsql │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NOTICE.txt │ ├── README.md │ ├── adbc_driver_flightsql │ │ ├── __init__.py │ │ ├── _static_version.py │ │ ├── _version.py │ │ ├── dbapi.py │ │ └── py.typed │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_dbapi.py │ │ ├── test_errors.py │ │ ├── test_incremental.py │ │ └── test_lowlevel.py ├── adbc_driver_manager │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NOTICE.txt │ ├── README.md │ ├── adbc_driver_manager │ │ ├── __init__.py │ │ ├── _backward.pyx │ │ ├── _blocking_impl.cc │ │ ├── _blocking_impl.h │ │ ├── _dbapi_backend.py │ │ ├── _lib.pxd │ │ ├── _lib.pyi │ │ ├── _lib.pyx │ │ ├── _reader.pyi │ │ ├── _reader.pyx │ │ ├── _static_version.py │ │ ├── _version.py │ │ ├── dbapi.py │ │ └── py.typed │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── conftest.py │ │ ├── panictest.py │ │ ├── test_blocking.py │ │ ├── test_dbapi.py │ │ ├── test_dbapi_polars_nopyarrow.py │ │ ├── test_lowlevel.py │ │ ├── test_manifest.py │ │ ├── test_panic.py │ │ ├── test_polars.py │ │ └── test_reader.py ├── adbc_driver_postgresql │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NOTICE.txt │ ├── README.md │ ├── adbc_driver_postgresql │ │ ├── __init__.py │ │ ├── _static_version.py │ │ ├── _version.py │ │ └── dbapi.py │ ├── asv.conf.json │ ├── benchmarks │ │ ├── __init__.py │ │ └── benchmarks.py │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_dbapi.py │ │ ├── test_lowlevel.py │ │ └── test_polars.py ├── adbc_driver_snowflake │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NOTICE.txt │ ├── README.md │ ├── adbc_driver_snowflake │ │ ├── __init__.py │ │ ├── _static_version.py │ │ ├── _version.py │ │ ├── dbapi.py │ │ └── py.typed │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_dbapi.py │ │ └── test_lowlevel.py └── adbc_driver_sqlite │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── NOTICE.txt │ ├── README.md │ ├── adbc_driver_sqlite │ ├── __init__.py │ ├── _static_version.py │ ├── _version.py │ ├── dbapi.py │ └── py.typed │ ├── pyproject.toml │ ├── setup.py │ └── tests │ ├── __init__.py │ ├── test_dbapi.py │ └── test_lowlevel.py ├── r ├── adbcbigquery │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ │ └── adbcbigquery-package.R │ ├── README.Rmd │ ├── README.md │ ├── _pkgdown.yml │ ├── adbcbigquery.Rproj │ ├── bootstrap.R │ ├── cleanup │ ├── cleanup.win │ ├── configure │ ├── configure.win │ ├── cran-comments.md │ ├── man │ │ ├── adbcbigquery-package.Rd │ │ └── adbcbigquery.Rd │ ├── src │ │ ├── .gitignore │ │ ├── Makevars.in │ │ ├── go │ │ │ ├── .gitignore │ │ │ └── symbols.map │ │ └── init.c │ ├── tests │ │ ├── testthat.R │ │ └── testthat │ │ │ └── test-adbcbigquery-package.R │ └── tools │ │ └── download-go.R ├── adbcdrivermanager │ ├── .Rbuildignore │ ├── .covrignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ │ ├── adbc.R │ │ ├── adbcdrivermanager-package.R │ │ ├── driver_log.R │ │ ├── driver_monkey.R │ │ ├── driver_void.R │ │ ├── error.R │ │ ├── helpers.R │ │ ├── options.R │ │ └── utils.R │ ├── README.Rmd │ ├── README.md │ ├── _pkgdown.yml │ ├── adbcdrivermanager.Rproj │ ├── bootstrap.R │ ├── configure │ ├── configure.win │ ├── cran-comments.md │ ├── man │ │ ├── adbc_connection_get_info.Rd │ │ ├── adbc_connection_init.Rd │ │ ├── adbc_connection_join.Rd │ │ ├── adbc_database_init.Rd │ │ ├── adbc_driver_load.Rd │ │ ├── adbc_driver_log.Rd │ │ ├── adbc_driver_monkey.Rd │ │ ├── adbc_driver_void.Rd │ │ ├── adbc_error_from_array_stream.Rd │ │ ├── adbc_load_flags.Rd │ │ ├── adbc_statement_init.Rd │ │ ├── adbc_statement_set_sql_query.Rd │ │ ├── adbc_xptr_move.Rd │ │ ├── adbcdrivermanager-package.Rd │ │ ├── read_adbc.Rd │ │ └── with_adbc.Rd │ ├── src │ │ ├── .gitignore │ │ ├── Makevars │ │ ├── Makevars.win │ │ ├── driver_test.cc │ │ ├── error.cc │ │ ├── init.c │ │ ├── options.cc │ │ ├── radbc.cc │ │ ├── radbc.h │ │ └── utils.c │ ├── tests │ │ ├── testthat.R │ │ └── testthat │ │ │ ├── _snaps │ │ │ ├── driver_log.md │ │ │ └── helpers.md │ │ │ ├── test-driver_log.R │ │ │ ├── test-driver_monkey.R │ │ │ ├── test-driver_void.R │ │ │ ├── test-error.R │ │ │ ├── test-helpers.R │ │ │ ├── test-options.R │ │ │ ├── test-radbc.R │ │ │ └── test-utils.R │ └── tools │ │ └── make-callentries.R ├── adbcflightsql │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ │ └── adbcflightsql-package.R │ ├── README.Rmd │ ├── README.md │ ├── _pkgdown.yml │ ├── adbcflightsql.Rproj │ ├── bootstrap.R │ ├── cleanup │ ├── cleanup.win │ ├── configure │ ├── configure.win │ ├── cran-comments.md │ ├── man │ │ ├── adbcflightsql-package.Rd │ │ └── adbcflightsql.Rd │ ├── src │ │ ├── .gitignore │ │ ├── Makevars.in │ │ ├── go │ │ │ ├── .gitignore │ │ │ └── symbols.map │ │ └── init.c │ ├── tests │ │ ├── testthat.R │ │ └── testthat │ │ │ └── test-adbcflightsql-package.R │ └── tools │ │ └── download-go.R ├── adbcpostgresql │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ │ └── adbcpostgresql-package.R │ ├── README.Rmd │ ├── README.md │ ├── _pkgdown.yml │ ├── adbcpostgresql.Rproj │ ├── bootstrap.R │ ├── cleanup │ ├── cleanup.win │ ├── configure │ ├── configure.win │ ├── cran-comments.md │ ├── man │ │ ├── adbcpostgresql-package.Rd │ │ └── adbcpostgresql.Rd │ ├── src │ │ ├── .gitignore │ │ ├── Makevars.in │ │ ├── Makevars.ucrt │ │ ├── Makevars.win │ │ └── init.cc │ ├── tests │ │ ├── testthat.R │ │ └── testthat │ │ │ └── test-adbcpostgres-package.R │ └── tools │ │ ├── test.c │ │ └── winlibs.R ├── adbcsnowflake │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ │ └── adbcsnowflake-package.R │ ├── README.Rmd │ ├── README.md │ ├── _pkgdown.yml │ ├── adbcsnowflake.Rproj │ ├── bootstrap.R │ ├── cleanup │ ├── cleanup.win │ ├── configure │ ├── configure.win │ ├── man │ │ ├── adbcsnowflake-package.Rd │ │ └── adbcsnowflake.Rd │ ├── src │ │ ├── .gitignore │ │ ├── Makevars.in │ │ ├── go │ │ │ ├── .gitignore │ │ │ └── symbols.map │ │ └── init.c │ ├── tests │ │ ├── testthat.R │ │ └── testthat │ │ │ └── test-adbcsnowflake-package.R │ └── tools │ │ ├── .gitignore │ │ ├── create-go-vendor-archive.R │ │ ├── download-go-vendor-archive.R │ │ ├── download-go.R │ │ ├── extract-go-vendor-archive.R │ │ └── verify-go-vendor-archive.R ├── adbcsqlite │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ │ └── adbcsqlite-package.R │ ├── README.Rmd │ ├── README.md │ ├── _pkgdown.yml │ ├── adbcsqlite.Rproj │ ├── bootstrap.R │ ├── cleanup │ ├── cleanup.win │ ├── configure │ ├── configure.win │ ├── cran-comments.md │ ├── man │ │ ├── adbcsqlite-package.Rd │ │ └── adbcsqlite.Rd │ ├── src │ │ ├── .gitignore │ │ ├── Makevars.in │ │ ├── common │ │ │ └── .gitignore │ │ └── init.cc │ ├── tests │ │ ├── testthat.R │ │ └── testthat │ │ │ └── test-adbcsqlite-package.R │ └── tools │ │ ├── test.c │ │ └── test_extension.c ├── tools │ ├── bootstrap-c.R │ └── bootstrap-go.R └── valgrind.supp ├── ruby ├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── lib │ ├── adbc.rb │ └── adbc │ │ ├── connection-operations.rb │ │ ├── connection.rb │ │ ├── database.rb │ │ ├── loader.rb │ │ ├── statement-openable.rb │ │ ├── statement-operations.rb │ │ ├── statement.rb │ │ └── version.rb ├── red-adbc.gemspec └── test │ ├── helper.rb │ ├── run.rb │ ├── test-connection.rb │ ├── test-isolation-level.rb │ ├── test-load-flags.rb │ └── test-statement.rb └── rust ├── Cargo.lock ├── Cargo.toml ├── README.md ├── core ├── Cargo.toml └── src │ ├── constants.rs │ ├── error.rs │ ├── lib.rs │ ├── options.rs │ └── schemas.rs ├── driver ├── datafusion │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ └── lib.rs │ └── tests │ │ └── test_datafusion.rs ├── dummy │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── tests │ │ └── driver_exporter_dummy.rs └── snowflake │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── src │ ├── builder.rs │ ├── connection.rs │ ├── connection │ │ └── builder.rs │ ├── database.rs │ ├── database │ │ └── builder.rs │ ├── driver.rs │ ├── driver │ │ └── builder.rs │ ├── duration.rs │ ├── lib.rs │ └── statement.rs │ └── tests │ └── driver.rs ├── driver_manager ├── Cargo.toml ├── build.rs ├── src │ ├── error.rs │ └── lib.rs └── tests │ ├── common │ └── mod.rs │ └── driver_manager_sqlite.rs └── ffi ├── Cargo.toml └── src ├── driver_exporter.rs ├── lib.rs ├── methods.rs ├── types.rs └── utils.rs /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.cmake-format -------------------------------------------------------------------------------- /.codespell-dictionary: -------------------------------------------------------------------------------- 1 | arrpw->arrow 2 | -------------------------------------------------------------------------------- /.codespell-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.codespell-ignore -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.codespellrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.env -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/comment_bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/comment_bot.yml -------------------------------------------------------------------------------- /.github/workflows/csharp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/csharp.yml -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/dev_adbc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/dev_adbc.yml -------------------------------------------------------------------------------- /.github/workflows/dev_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/dev_pr.yml -------------------------------------------------------------------------------- /.github/workflows/dev_pr/body_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/dev_pr/body_check.py -------------------------------------------------------------------------------- /.github/workflows/dev_pr/milestone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/dev_pr/milestone.sh -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/java.yml -------------------------------------------------------------------------------- /.github/workflows/native-unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/native-unix.yml -------------------------------------------------------------------------------- /.github/workflows/native-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/native-windows.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/nightly-verify.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/nightly-website.yml -------------------------------------------------------------------------------- /.github/workflows/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/packaging.yml -------------------------------------------------------------------------------- /.github/workflows/r-basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/r-basic.yml -------------------------------------------------------------------------------- /.github/workflows/r-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/r-check.yml -------------------------------------------------------------------------------- /.github/workflows/r-extended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/r-extended.yml -------------------------------------------------------------------------------- /.github/workflows/r-standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/r-standard.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/README.md -------------------------------------------------------------------------------- /c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/CMakeLists.txt -------------------------------------------------------------------------------- /c/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/CMakePresets.json -------------------------------------------------------------------------------- /c/apidoc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/apidoc/Doxyfile -------------------------------------------------------------------------------- /c/cmake_modules/AdbcDefines.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/AdbcDefines.cmake -------------------------------------------------------------------------------- /c/cmake_modules/AdbcVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/AdbcVersion.cmake -------------------------------------------------------------------------------- /c/cmake_modules/BuildUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/BuildUtils.cmake -------------------------------------------------------------------------------- /c/cmake_modules/DefineOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/DefineOptions.cmake -------------------------------------------------------------------------------- /c/cmake_modules/GoUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/GoUtils.cmake -------------------------------------------------------------------------------- /c/cmake_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/README.md -------------------------------------------------------------------------------- /c/cmake_modules/san-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/cmake_modules/san-config.cmake -------------------------------------------------------------------------------- /c/driver/bigquery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/bigquery/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/bigquery/README.md -------------------------------------------------------------------------------- /c/driver/bigquery/adbc-driver-bigquery.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/bigquery/adbc-driver-bigquery.pc.in -------------------------------------------------------------------------------- /c/driver/bigquery/bigquery_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/bigquery/bigquery_test.cc -------------------------------------------------------------------------------- /c/driver/bigquery/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/bigquery/meson.build -------------------------------------------------------------------------------- /c/driver/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/common/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/common/meson.build -------------------------------------------------------------------------------- /c/driver/common/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/common/options.h -------------------------------------------------------------------------------- /c/driver/common/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/common/utils.c -------------------------------------------------------------------------------- /c/driver/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/common/utils.h -------------------------------------------------------------------------------- /c/driver/common/utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/common/utils_test.cc -------------------------------------------------------------------------------- /c/driver/flightsql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/flightsql/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/flightsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/flightsql/README.md -------------------------------------------------------------------------------- /c/driver/flightsql/dremio_flightsql_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/flightsql/dremio_flightsql_test.cc -------------------------------------------------------------------------------- /c/driver/flightsql/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/flightsql/meson.build -------------------------------------------------------------------------------- /c/driver/flightsql/sqlite_flightsql_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/flightsql/sqlite_flightsql_test.cc -------------------------------------------------------------------------------- /c/driver/framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/framework/base_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/base_driver.h -------------------------------------------------------------------------------- /c/driver/framework/base_driver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/base_driver_test.cc -------------------------------------------------------------------------------- /c/driver/framework/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/connection.h -------------------------------------------------------------------------------- /c/driver/framework/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/database.h -------------------------------------------------------------------------------- /c/driver/framework/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/meson.build -------------------------------------------------------------------------------- /c/driver/framework/objects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/objects.cc -------------------------------------------------------------------------------- /c/driver/framework/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/objects.h -------------------------------------------------------------------------------- /c/driver/framework/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/statement.h -------------------------------------------------------------------------------- /c/driver/framework/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/status.h -------------------------------------------------------------------------------- /c/driver/framework/type_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/type_fwd.h -------------------------------------------------------------------------------- /c/driver/framework/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/utility.cc -------------------------------------------------------------------------------- /c/driver/framework/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/framework/utility.h -------------------------------------------------------------------------------- /c/driver/postgresql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/README.md -------------------------------------------------------------------------------- /c/driver/postgresql/bind_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/bind_stream.h -------------------------------------------------------------------------------- /c/driver/postgresql/connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/connection.cc -------------------------------------------------------------------------------- /c/driver/postgresql/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/connection.h -------------------------------------------------------------------------------- /c/driver/postgresql/copy/copy_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/copy/copy_common.h -------------------------------------------------------------------------------- /c/driver/postgresql/copy/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/copy/reader.h -------------------------------------------------------------------------------- /c/driver/postgresql/copy/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/copy/writer.h -------------------------------------------------------------------------------- /c/driver/postgresql/database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/database.cc -------------------------------------------------------------------------------- /c/driver/postgresql/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/database.h -------------------------------------------------------------------------------- /c/driver/postgresql/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/error.cc -------------------------------------------------------------------------------- /c/driver/postgresql/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/error.h -------------------------------------------------------------------------------- /c/driver/postgresql/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/meson.build -------------------------------------------------------------------------------- /c/driver/postgresql/postgres_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/postgres_type.h -------------------------------------------------------------------------------- /c/driver/postgresql/postgres_type_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/postgres_type_test.cc -------------------------------------------------------------------------------- /c/driver/postgresql/postgres_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/postgres_util.h -------------------------------------------------------------------------------- /c/driver/postgresql/postgresql.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/postgresql.cc -------------------------------------------------------------------------------- /c/driver/postgresql/postgresql_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/postgresql_benchmark.cc -------------------------------------------------------------------------------- /c/driver/postgresql/postgresql_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/postgresql_test.cc -------------------------------------------------------------------------------- /c/driver/postgresql/result_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/result_helper.cc -------------------------------------------------------------------------------- /c/driver/postgresql/result_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/result_helper.h -------------------------------------------------------------------------------- /c/driver/postgresql/result_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/result_reader.cc -------------------------------------------------------------------------------- /c/driver/postgresql/result_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/result_reader.h -------------------------------------------------------------------------------- /c/driver/postgresql/statement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/statement.cc -------------------------------------------------------------------------------- /c/driver/postgresql/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/statement.h -------------------------------------------------------------------------------- /c/driver/postgresql/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/postgresql/vcpkg.json -------------------------------------------------------------------------------- /c/driver/snowflake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/snowflake/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/snowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/snowflake/README.md -------------------------------------------------------------------------------- /c/driver/snowflake/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/snowflake/meson.build -------------------------------------------------------------------------------- /c/driver/snowflake/snowflake_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/snowflake/snowflake_test.cc -------------------------------------------------------------------------------- /c/driver/sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/README.md -------------------------------------------------------------------------------- /c/driver/sqlite/adbc-driver-sqlite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/adbc-driver-sqlite.pc.in -------------------------------------------------------------------------------- /c/driver/sqlite/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/meson.build -------------------------------------------------------------------------------- /c/driver/sqlite/sqlite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/sqlite.cc -------------------------------------------------------------------------------- /c/driver/sqlite/sqlite_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/sqlite_test.cc -------------------------------------------------------------------------------- /c/driver/sqlite/statement_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/statement_reader.c -------------------------------------------------------------------------------- /c/driver/sqlite/statement_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver/sqlite/statement_reader.h -------------------------------------------------------------------------------- /c/driver_manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/CMakeLists.txt -------------------------------------------------------------------------------- /c/driver_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/README.md -------------------------------------------------------------------------------- /c/driver_manager/adbc-driver-manager.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/adbc-driver-manager.pc.in -------------------------------------------------------------------------------- /c/driver_manager/adbc_driver_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/adbc_driver_manager.cc -------------------------------------------------------------------------------- /c/driver_manager/adbc_driver_manager_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/adbc_driver_manager_test.cc -------------------------------------------------------------------------------- /c/driver_manager/adbc_version_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/adbc_version_100.c -------------------------------------------------------------------------------- /c/driver_manager/adbc_version_100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/adbc_version_100.h -------------------------------------------------------------------------------- /c/driver_manager/current_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/current_arch.h -------------------------------------------------------------------------------- /c/driver_manager/entrypoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/entrypoint.c -------------------------------------------------------------------------------- /c/driver_manager/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/meson.build -------------------------------------------------------------------------------- /c/driver_manager/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/driver_manager/vcpkg.json -------------------------------------------------------------------------------- /c/include/adbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/adbc.h -------------------------------------------------------------------------------- /c/include/adbc_driver_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/adbc_driver_manager.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/adbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/adbc.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/adbc_driver_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/adbc_driver_manager.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/driver/bigquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/driver/bigquery.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/driver/flightsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/driver/flightsql.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/driver/postgresql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/driver/postgresql.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/driver/snowflake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/driver/snowflake.h -------------------------------------------------------------------------------- /c/include/arrow-adbc/driver/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/include/arrow-adbc/driver/sqlite.h -------------------------------------------------------------------------------- /c/integration/duckdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/duckdb/CMakeLists.txt -------------------------------------------------------------------------------- /c/integration/duckdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/duckdb/README.md -------------------------------------------------------------------------------- /c/integration/duckdb/duckdb_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/duckdb/duckdb_test.cc -------------------------------------------------------------------------------- /c/integration/shared_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/shared_test/CMakeLists.txt -------------------------------------------------------------------------------- /c/integration/shared_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/shared_test/main.c -------------------------------------------------------------------------------- /c/integration/static_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/static_test/CMakeLists.txt -------------------------------------------------------------------------------- /c/integration/static_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/static_test/README.md -------------------------------------------------------------------------------- /c/integration/static_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/integration/static_test/main.c -------------------------------------------------------------------------------- /c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/meson.build -------------------------------------------------------------------------------- /c/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/meson.options -------------------------------------------------------------------------------- /c/subprojects/fmt.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/subprojects/fmt.wrap -------------------------------------------------------------------------------- /c/subprojects/gtest.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/subprojects/gtest.wrap -------------------------------------------------------------------------------- /c/subprojects/nanoarrow.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/subprojects/nanoarrow.wrap -------------------------------------------------------------------------------- /c/subprojects/sqlite3.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/subprojects/sqlite3.wrap -------------------------------------------------------------------------------- /c/symbols.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/symbols.map -------------------------------------------------------------------------------- /c/validation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/CMakeLists.txt -------------------------------------------------------------------------------- /c/validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/README.md -------------------------------------------------------------------------------- /c/validation/adbc_validation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation.cc -------------------------------------------------------------------------------- /c/validation/adbc_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation.h -------------------------------------------------------------------------------- /c/validation/adbc_validation_connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation_connection.cc -------------------------------------------------------------------------------- /c/validation/adbc_validation_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation_database.cc -------------------------------------------------------------------------------- /c/validation/adbc_validation_statement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation_statement.cc -------------------------------------------------------------------------------- /c/validation/adbc_validation_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation_util.cc -------------------------------------------------------------------------------- /c/validation/adbc_validation_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/adbc_validation_util.h -------------------------------------------------------------------------------- /c/validation/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/validation/meson.build -------------------------------------------------------------------------------- /c/vendor/backward/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/backward/LICENSE.txt -------------------------------------------------------------------------------- /c/vendor/backward/backward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/backward/backward.cpp -------------------------------------------------------------------------------- /c/vendor/backward/backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/backward/backward.hpp -------------------------------------------------------------------------------- /c/vendor/fmt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/.clang-format -------------------------------------------------------------------------------- /c/vendor/fmt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/.gitignore -------------------------------------------------------------------------------- /c/vendor/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /c/vendor/fmt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/CONTRIBUTING.md -------------------------------------------------------------------------------- /c/vendor/fmt/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/ChangeLog.md -------------------------------------------------------------------------------- /c/vendor/fmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/LICENSE -------------------------------------------------------------------------------- /c/vendor/fmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/README.md -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/args.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/base.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/compile.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/format-inl.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/std.h -------------------------------------------------------------------------------- /c/vendor/fmt/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/include/fmt/xchar.h -------------------------------------------------------------------------------- /c/vendor/fmt/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/src/fmt.cc -------------------------------------------------------------------------------- /c/vendor/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/src/format.cc -------------------------------------------------------------------------------- /c/vendor/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/src/os.cc -------------------------------------------------------------------------------- /c/vendor/fmt/support/cmake/FindSetEnv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/support/cmake/FindSetEnv.cmake -------------------------------------------------------------------------------- /c/vendor/fmt/support/cmake/JoinPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/support/cmake/JoinPaths.cmake -------------------------------------------------------------------------------- /c/vendor/fmt/support/cmake/fmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/fmt/support/cmake/fmt.pc.in -------------------------------------------------------------------------------- /c/vendor/nanoarrow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/nanoarrow/CMakeLists.txt -------------------------------------------------------------------------------- /c/vendor/nanoarrow/nanoarrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/nanoarrow/nanoarrow.c -------------------------------------------------------------------------------- /c/vendor/nanoarrow/nanoarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/nanoarrow/nanoarrow.h -------------------------------------------------------------------------------- /c/vendor/nanoarrow/nanoarrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/nanoarrow/nanoarrow.hpp -------------------------------------------------------------------------------- /c/vendor/sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /c/vendor/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /c/vendor/toml++/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/toml++/toml.hpp -------------------------------------------------------------------------------- /c/vendor/vendor_backward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/vendor_backward.sh -------------------------------------------------------------------------------- /c/vendor/vendor_fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/vendor_fmt.sh -------------------------------------------------------------------------------- /c/vendor/vendor_nanoarrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/vendor_nanoarrow.sh -------------------------------------------------------------------------------- /c/vendor/vendor_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/vendor_sqlite3.sh -------------------------------------------------------------------------------- /c/vendor/vendor_tomlplusplus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/c/vendor/vendor_tomlplusplus.sh -------------------------------------------------------------------------------- /ci/build_support/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/build_support/run-test.sh -------------------------------------------------------------------------------- /ci/conda/.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/README -------------------------------------------------------------------------------- /ci/conda/.ci_support/linux_64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/linux_64_.yaml -------------------------------------------------------------------------------- /ci/conda/.ci_support/linux_aarch64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/linux_aarch64_.yaml -------------------------------------------------------------------------------- /ci/conda/.ci_support/linux_ppc64le_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/linux_ppc64le_.yaml -------------------------------------------------------------------------------- /ci/conda/.ci_support/osx_64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/osx_64_.yaml -------------------------------------------------------------------------------- /ci/conda/.ci_support/osx_arm64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/osx_arm64_.yaml -------------------------------------------------------------------------------- /ci/conda/.ci_support/win_64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.ci_support/win_64_.yaml -------------------------------------------------------------------------------- /ci/conda/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/.gitattributes -------------------------------------------------------------------------------- /ci/conda/build-cpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/build-cpp.bat -------------------------------------------------------------------------------- /ci/conda/build-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/build-cpp.sh -------------------------------------------------------------------------------- /ci/conda/build-python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/build-python.bat -------------------------------------------------------------------------------- /ci/conda/build-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/build-python.sh -------------------------------------------------------------------------------- /ci/conda/conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/conda-forge.yml -------------------------------------------------------------------------------- /ci/conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda/meta.yaml -------------------------------------------------------------------------------- /ci/conda_env_benchmarking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_benchmarking.txt -------------------------------------------------------------------------------- /ci/conda_env_cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_cpp.txt -------------------------------------------------------------------------------- /ci/conda_env_cpp_lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_cpp_lint.txt -------------------------------------------------------------------------------- /ci/conda_env_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_dev.txt -------------------------------------------------------------------------------- /ci/conda_env_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_docs.txt -------------------------------------------------------------------------------- /ci/conda_env_glib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_glib.txt -------------------------------------------------------------------------------- /ci/conda_env_java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_java.txt -------------------------------------------------------------------------------- /ci/conda_env_python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_python.txt -------------------------------------------------------------------------------- /ci/conda_env_r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/conda_env_r.txt -------------------------------------------------------------------------------- /ci/docker/cpp-clang-latest.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/cpp-clang-latest.dockerfile -------------------------------------------------------------------------------- /ci/docker/cpp-gcc-latest.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/cpp-gcc-latest.dockerfile -------------------------------------------------------------------------------- /ci/docker/dremio-init.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/dremio-init.dockerfile -------------------------------------------------------------------------------- /ci/docker/flightsql-test.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/flightsql-test.dockerfile -------------------------------------------------------------------------------- /ci/docker/golang-flightsql-sqlite.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/golang-flightsql-sqlite.dockerfile -------------------------------------------------------------------------------- /ci/docker/python-debug.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/python-debug.dockerfile -------------------------------------------------------------------------------- /ci/docker/python-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/python-debug.sh -------------------------------------------------------------------------------- /ci/docker/python-wheel-manylinux.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/python-wheel-manylinux.dockerfile -------------------------------------------------------------------------------- /ci/docker/spiceai-init.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/docker/spiceai-init.dockerfile -------------------------------------------------------------------------------- /ci/linux-packages/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/Rakefile -------------------------------------------------------------------------------- /ci/linux-packages/apt/ubuntu-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/apt/ubuntu-jammy/Dockerfile -------------------------------------------------------------------------------- /ci/linux-packages/apt/ubuntu-noble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/apt/ubuntu-noble/Dockerfile -------------------------------------------------------------------------------- /ci/linux-packages/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/debian/changelog -------------------------------------------------------------------------------- /ci/linux-packages/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/debian/control -------------------------------------------------------------------------------- /ci/linux-packages/debian/gir1.2-adbc-1.0.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/girepository-1.0/ADBC-*.typelib 2 | -------------------------------------------------------------------------------- /ci/linux-packages/debian/gir1.2-adbc-arrow-1.0.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/girepository-1.0/ADBCArrow-*.typelib 2 | -------------------------------------------------------------------------------- /ci/linux-packages/debian/libadbc-arrow-glib-doc.install: -------------------------------------------------------------------------------- 1 | usr/share/doc/adbc-arrow-glib/ 2 | -------------------------------------------------------------------------------- /ci/linux-packages/debian/libadbc-glib-doc.install: -------------------------------------------------------------------------------- 1 | usr/share/doc/adbc-glib/ 2 | -------------------------------------------------------------------------------- /ci/linux-packages/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/debian/rules -------------------------------------------------------------------------------- /ci/linux-packages/yum/almalinux-10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/yum/almalinux-10/Dockerfile -------------------------------------------------------------------------------- /ci/linux-packages/yum/almalinux-8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/yum/almalinux-8/Dockerfile -------------------------------------------------------------------------------- /ci/linux-packages/yum/almalinux-9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/linux-packages/yum/almalinux-9/Dockerfile -------------------------------------------------------------------------------- /ci/scripts/cpp_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_build.ps1 -------------------------------------------------------------------------------- /ci/scripts/cpp_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_build.sh -------------------------------------------------------------------------------- /ci/scripts/cpp_clang_tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_clang_tidy.sh -------------------------------------------------------------------------------- /ci/scripts/cpp_recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_recipe.sh -------------------------------------------------------------------------------- /ci/scripts/cpp_static_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_static_test.sh -------------------------------------------------------------------------------- /ci/scripts/cpp_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_test.ps1 -------------------------------------------------------------------------------- /ci/scripts/cpp_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/cpp_test.sh -------------------------------------------------------------------------------- /ci/scripts/csharp_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/csharp_build.ps1 -------------------------------------------------------------------------------- /ci/scripts/csharp_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/csharp_build.sh -------------------------------------------------------------------------------- /ci/scripts/csharp_pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/csharp_pack.ps1 -------------------------------------------------------------------------------- /ci/scripts/csharp_pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/csharp_pack.sh -------------------------------------------------------------------------------- /ci/scripts/csharp_smoketest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/csharp_smoketest.ps1 -------------------------------------------------------------------------------- /ci/scripts/csharp_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/csharp_test.sh -------------------------------------------------------------------------------- /ci/scripts/docs_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/docs_build.sh -------------------------------------------------------------------------------- /ci/scripts/gemfury_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/gemfury_clean.py -------------------------------------------------------------------------------- /ci/scripts/glib_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/glib_build.sh -------------------------------------------------------------------------------- /ci/scripts/glib_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/glib_test.sh -------------------------------------------------------------------------------- /ci/scripts/go_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/go_build.ps1 -------------------------------------------------------------------------------- /ci/scripts/go_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/go_build.sh -------------------------------------------------------------------------------- /ci/scripts/go_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/go_license.sh -------------------------------------------------------------------------------- /ci/scripts/go_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/go_test.ps1 -------------------------------------------------------------------------------- /ci/scripts/go_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/go_test.sh -------------------------------------------------------------------------------- /ci/scripts/install_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/install_python.sh -------------------------------------------------------------------------------- /ci/scripts/install_vcpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/install_vcpkg.sh -------------------------------------------------------------------------------- /ci/scripts/integration/dremio/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/integration/dremio/bootstrap.sh -------------------------------------------------------------------------------- /ci/scripts/java_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/java_build.sh -------------------------------------------------------------------------------- /ci/scripts/java_jar_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/java_jar_upload.sh -------------------------------------------------------------------------------- /ci/scripts/java_jni_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/java_jni_build.sh -------------------------------------------------------------------------------- /ci/scripts/java_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/java_test.sh -------------------------------------------------------------------------------- /ci/scripts/python_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_build.ps1 -------------------------------------------------------------------------------- /ci/scripts/python_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_build.sh -------------------------------------------------------------------------------- /ci/scripts/python_conda_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_conda_build.sh -------------------------------------------------------------------------------- /ci/scripts/python_conda_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_conda_clean.sh -------------------------------------------------------------------------------- /ci/scripts/python_conda_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_conda_test.sh -------------------------------------------------------------------------------- /ci/scripts/python_conda_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_conda_upload.sh -------------------------------------------------------------------------------- /ci/scripts/python_sdist_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_sdist_build.sh -------------------------------------------------------------------------------- /ci/scripts/python_sdist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_sdist_test.sh -------------------------------------------------------------------------------- /ci/scripts/python_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_test.ps1 -------------------------------------------------------------------------------- /ci/scripts/python_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_test.sh -------------------------------------------------------------------------------- /ci/scripts/python_typecheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_typecheck.sh -------------------------------------------------------------------------------- /ci/scripts/python_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_util.sh -------------------------------------------------------------------------------- /ci/scripts/python_venv_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_venv_test.sh -------------------------------------------------------------------------------- /ci/scripts/python_wheel_fix_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_fix_tag.py -------------------------------------------------------------------------------- /ci/scripts/python_wheel_unix_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_unix_build.sh -------------------------------------------------------------------------------- /ci/scripts/python_wheel_unix_relocate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_unix_relocate.sh -------------------------------------------------------------------------------- /ci/scripts/python_wheel_unix_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_unix_test.sh -------------------------------------------------------------------------------- /ci/scripts/python_wheel_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_upload.sh -------------------------------------------------------------------------------- /ci/scripts/python_wheel_windows_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_windows_build.bat -------------------------------------------------------------------------------- /ci/scripts/python_wheel_windows_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/python_wheel_windows_test.bat -------------------------------------------------------------------------------- /ci/scripts/r_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/r_build.sh -------------------------------------------------------------------------------- /ci/scripts/remamba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/remamba.sh -------------------------------------------------------------------------------- /ci/scripts/run_cgo_drivermgr_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/run_cgo_drivermgr_check.sh -------------------------------------------------------------------------------- /ci/scripts/run_pre_commit_pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/run_pre_commit_pin.py -------------------------------------------------------------------------------- /ci/scripts/run_rat_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/run_rat_local.sh -------------------------------------------------------------------------------- /ci/scripts/rust_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/rust_build.sh -------------------------------------------------------------------------------- /ci/scripts/rust_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/rust_test.sh -------------------------------------------------------------------------------- /ci/scripts/source_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/source_build.sh -------------------------------------------------------------------------------- /ci/scripts/verify_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/verify_ubuntu.sh -------------------------------------------------------------------------------- /ci/scripts/website_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ci/scripts/website_build.sh -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/compose.yaml -------------------------------------------------------------------------------- /csharp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/.editorconfig -------------------------------------------------------------------------------- /csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/.gitignore -------------------------------------------------------------------------------- /csharp/Apache.Arrow.Adbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Apache.Arrow.Adbc.sln -------------------------------------------------------------------------------- /csharp/ApacheArrow.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/ApacheArrow.snk -------------------------------------------------------------------------------- /csharp/Benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /csharp/Benchmarks/Databricks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Benchmarks/Databricks/README.md -------------------------------------------------------------------------------- /csharp/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Benchmarks/Program.cs -------------------------------------------------------------------------------- /csharp/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Directory.Build.props -------------------------------------------------------------------------------- /csharp/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Directory.Build.targets -------------------------------------------------------------------------------- /csharp/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/Directory.Packages.props -------------------------------------------------------------------------------- /csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/README.md -------------------------------------------------------------------------------- /csharp/configs/flightsql-spiceai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/configs/flightsql-spiceai.json -------------------------------------------------------------------------------- /csharp/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/feather.png -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/AdbcDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/AdbcDatabase.cs -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/AdbcDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/AdbcDriver.cs -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/AdbcDriver11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/AdbcDriver11.cs -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/AdbcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/AdbcException.cs -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/AdbcInfoCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/AdbcInfoCode.cs -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/Results.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/Results.cs -------------------------------------------------------------------------------- /csharp/src/Apache.Arrow.Adbc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Apache.Arrow.Adbc/readme.md -------------------------------------------------------------------------------- /csharp/src/Client/AdbcColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/AdbcColumn.cs -------------------------------------------------------------------------------- /csharp/src/Client/AdbcCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/AdbcCommand.cs -------------------------------------------------------------------------------- /csharp/src/Client/AdbcConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/AdbcConnection.cs -------------------------------------------------------------------------------- /csharp/src/Client/AdbcDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/AdbcDataReader.cs -------------------------------------------------------------------------------- /csharp/src/Client/AdbcParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/AdbcParameter.cs -------------------------------------------------------------------------------- /csharp/src/Client/DecimalBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/DecimalBehavior.cs -------------------------------------------------------------------------------- /csharp/src/Client/SchemaConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/SchemaConverter.cs -------------------------------------------------------------------------------- /csharp/src/Client/StructBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/StructBehavior.cs -------------------------------------------------------------------------------- /csharp/src/Client/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Client/readme.md -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/ApacheUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/ApacheUtility.cs -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/Attributes.cs -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/Hive2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/Hive2/README.md -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/Impala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/Impala/README.md -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/Spark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/Spark/README.md -------------------------------------------------------------------------------- /csharp/src/Drivers/Apache/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Apache/readme.md -------------------------------------------------------------------------------- /csharp/src/Drivers/BigQuery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/BigQuery/readme.md -------------------------------------------------------------------------------- /csharp/src/Drivers/Databricks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/Databricks/readme.md -------------------------------------------------------------------------------- /csharp/src/Drivers/FlightSql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/src/Drivers/FlightSql/README.md -------------------------------------------------------------------------------- /csharp/test/Drivers/Apache/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/test/Drivers/Apache/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/test/Drivers/BigQuery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/test/Drivers/BigQuery/readme.md -------------------------------------------------------------------------------- /csharp/test/SmokeTests/build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/test/SmokeTests/build.props -------------------------------------------------------------------------------- /csharp/test/SmokeTests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/csharp/test/SmokeTests/readme.md -------------------------------------------------------------------------------- /dev/adbc_dev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/adbc_dev/__init__.py -------------------------------------------------------------------------------- /dev/adbc_dev/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/adbc_dev/changelog.py -------------------------------------------------------------------------------- /dev/adbc_dev/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/adbc_dev/tests/__init__.py -------------------------------------------------------------------------------- /dev/adbc_dev/tests/test_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/adbc_dev/tests/test_changelog.py -------------------------------------------------------------------------------- /dev/adbc_dev/title_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/adbc_dev/title_check.py -------------------------------------------------------------------------------- /dev/bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/bench/README.md -------------------------------------------------------------------------------- /dev/bench/odbc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/bench/odbc/CMakeLists.txt -------------------------------------------------------------------------------- /dev/bench/odbc/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/bench/odbc/main.cc -------------------------------------------------------------------------------- /dev/bench/run_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/bench/run_bench.py -------------------------------------------------------------------------------- /dev/release/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/.env.example -------------------------------------------------------------------------------- /dev/release/01-prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/01-prepare.sh -------------------------------------------------------------------------------- /dev/release/02-sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/02-sign.sh -------------------------------------------------------------------------------- /dev/release/03-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/03-source.sh -------------------------------------------------------------------------------- /dev/release/04-java-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/04-java-upload.sh -------------------------------------------------------------------------------- /dev/release/05-linux-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/05-linux-upload.sh -------------------------------------------------------------------------------- /dev/release/06-binary-verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/06-binary-verify.sh -------------------------------------------------------------------------------- /dev/release/check-rat-report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/check-rat-report.py -------------------------------------------------------------------------------- /dev/release/post-01-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-01-upload.sh -------------------------------------------------------------------------------- /dev/release/post-02-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-02-binary.sh -------------------------------------------------------------------------------- /dev/release/post-03-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-03-python.sh -------------------------------------------------------------------------------- /dev/release/post-04-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-04-go.sh -------------------------------------------------------------------------------- /dev/release/post-05-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-05-linux.sh -------------------------------------------------------------------------------- /dev/release/post-06-ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-06-ruby.sh -------------------------------------------------------------------------------- /dev/release/post-07-csharp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-07-csharp.sh -------------------------------------------------------------------------------- /dev/release/post-08-rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-08-rust.sh -------------------------------------------------------------------------------- /dev/release/post-09-announce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-09-announce.sh -------------------------------------------------------------------------------- /dev/release/post-11-bump-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-11-bump-versions.sh -------------------------------------------------------------------------------- /dev/release/post-12-website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/post-12-website.sh -------------------------------------------------------------------------------- /dev/release/rat_exclude_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/rat_exclude_files.txt -------------------------------------------------------------------------------- /dev/release/run-rat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/run-rat.sh -------------------------------------------------------------------------------- /dev/release/setup-gpg-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/setup-gpg-agent.sh -------------------------------------------------------------------------------- /dev/release/utils-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/utils-common.sh -------------------------------------------------------------------------------- /dev/release/utils-prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/utils-prepare.sh -------------------------------------------------------------------------------- /dev/release/verify-apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/verify-apt.sh -------------------------------------------------------------------------------- /dev/release/verify-release-candidate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/verify-release-candidate.ps1 -------------------------------------------------------------------------------- /dev/release/verify-release-candidate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/verify-release-candidate.sh -------------------------------------------------------------------------------- /dev/release/verify-yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/verify-yum.sh -------------------------------------------------------------------------------- /dev/release/versions.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/dev/release/versions.env -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mermaid.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/mermaid.makefile -------------------------------------------------------------------------------- /docs/source/AdbcQuadrants.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/AdbcQuadrants.mmd -------------------------------------------------------------------------------- /docs/source/AdbcQuadrants.mmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/AdbcQuadrants.mmd.svg -------------------------------------------------------------------------------- /docs/source/_static/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/_static/banner.png -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/_static/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/_static/logo-dark.png -------------------------------------------------------------------------------- /docs/source/_static/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/_static/logo-light.png -------------------------------------------------------------------------------- /docs/source/_static/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/_static/version.js -------------------------------------------------------------------------------- /docs/source/_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/_templates/base.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/cpp/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/api/index.rst -------------------------------------------------------------------------------- /docs/source/cpp/concurrency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/concurrency.rst -------------------------------------------------------------------------------- /docs/source/cpp/driver_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/driver_example.rst -------------------------------------------------------------------------------- /docs/source/cpp/driver_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/driver_manager.rst -------------------------------------------------------------------------------- /docs/source/cpp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/index.rst -------------------------------------------------------------------------------- /docs/source/cpp/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/quickstart.rst -------------------------------------------------------------------------------- /docs/source/cpp/recipe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/recipe/CMakeLists.txt -------------------------------------------------------------------------------- /docs/source/cpp/recipe/quickstart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/recipe/quickstart.cc -------------------------------------------------------------------------------- /docs/source/cpp/static_linking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/cpp/static_linking.rst -------------------------------------------------------------------------------- /docs/source/csharp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/csharp/index.rst -------------------------------------------------------------------------------- /docs/source/development/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/development/contributing.rst -------------------------------------------------------------------------------- /docs/source/development/nightly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/development/nightly.rst -------------------------------------------------------------------------------- /docs/source/development/releasing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/development/releasing.rst -------------------------------------------------------------------------------- /docs/source/development/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/development/versioning.rst -------------------------------------------------------------------------------- /docs/source/driver/authoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/authoring.rst -------------------------------------------------------------------------------- /docs/source/driver/bigquery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/bigquery.rst -------------------------------------------------------------------------------- /docs/source/driver/duckdb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/duckdb.rst -------------------------------------------------------------------------------- /docs/source/driver/flight_sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/flight_sql.rst -------------------------------------------------------------------------------- /docs/source/driver/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/installation.rst -------------------------------------------------------------------------------- /docs/source/driver/jdbc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/jdbc.rst -------------------------------------------------------------------------------- /docs/source/driver/postgresql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/postgresql.rst -------------------------------------------------------------------------------- /docs/source/driver/snowflake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/snowflake.rst -------------------------------------------------------------------------------- /docs/source/driver/sqlite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/sqlite.rst -------------------------------------------------------------------------------- /docs/source/driver/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/driver/status.rst -------------------------------------------------------------------------------- /docs/source/ext/adbc_java_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/ext/adbc_java_domain.py -------------------------------------------------------------------------------- /docs/source/ext/adbc_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/ext/adbc_misc.py -------------------------------------------------------------------------------- /docs/source/ext/doxygen_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/ext/doxygen_inventory.py -------------------------------------------------------------------------------- /docs/source/ext/fake_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/ext/fake_inventory.py -------------------------------------------------------------------------------- /docs/source/ext/javadoc_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/ext/javadoc_inventory.py -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/format/AdbcStatement.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/AdbcStatement.drawio -------------------------------------------------------------------------------- /docs/source/format/AdbcStatement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/AdbcStatement.svg -------------------------------------------------------------------------------- /docs/source/format/AdbcStatementUpdate.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/AdbcStatementUpdate.mmd -------------------------------------------------------------------------------- /docs/source/format/DriverAlias.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverAlias.mmd -------------------------------------------------------------------------------- /docs/source/format/DriverAlias.mmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverAlias.mmd.svg -------------------------------------------------------------------------------- /docs/source/format/DriverDirectLink.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverDirectLink.mmd -------------------------------------------------------------------------------- /docs/source/format/DriverManagerUse.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverManagerUse.mmd -------------------------------------------------------------------------------- /docs/source/format/DriverTableLoad.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverTableLoad.mmd -------------------------------------------------------------------------------- /docs/source/format/DriverTableLoad.mmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverTableLoad.mmd.svg -------------------------------------------------------------------------------- /docs/source/format/DriverTableUse.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverTableUse.mmd -------------------------------------------------------------------------------- /docs/source/format/DriverTableUse.mmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/DriverTableUse.mmd.svg -------------------------------------------------------------------------------- /docs/source/format/comparison.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/comparison.rst -------------------------------------------------------------------------------- /docs/source/format/driver_manifests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/driver_manifests.rst -------------------------------------------------------------------------------- /docs/source/format/how_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/how_manager.rst -------------------------------------------------------------------------------- /docs/source/format/manifest_load.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/manifest_load.mmd -------------------------------------------------------------------------------- /docs/source/format/manifest_load.mmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/manifest_load.mmd.svg -------------------------------------------------------------------------------- /docs/source/format/related_work.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/related_work.rst -------------------------------------------------------------------------------- /docs/source/format/specification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/specification.rst -------------------------------------------------------------------------------- /docs/source/format/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/format/versioning.rst -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/java/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/java/api/index.rst -------------------------------------------------------------------------------- /docs/source/java/driver_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/java/driver_manager.rst -------------------------------------------------------------------------------- /docs/source/java/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/java/index.rst -------------------------------------------------------------------------------- /docs/source/java/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/java/quickstart.rst -------------------------------------------------------------------------------- /docs/source/python/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/api/index.rst -------------------------------------------------------------------------------- /docs/source/python/driver_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/driver_manager.rst -------------------------------------------------------------------------------- /docs/source/python/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/index.rst -------------------------------------------------------------------------------- /docs/source/python/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/quickstart.rst -------------------------------------------------------------------------------- /docs/source/python/recipe/flight_sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/recipe/flight_sql.rst -------------------------------------------------------------------------------- /docs/source/python/recipe/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/recipe/index.rst -------------------------------------------------------------------------------- /docs/source/python/recipe/postgresql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/recipe/postgresql.rst -------------------------------------------------------------------------------- /docs/source/python/recipe/postgresql_authenticate.py.stdout.txt: -------------------------------------------------------------------------------- 1 | (1,) 2 | -------------------------------------------------------------------------------- /docs/source/python/recipe/sqlite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/python/recipe/sqlite.rst -------------------------------------------------------------------------------- /docs/source/r/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/r/index.rst -------------------------------------------------------------------------------- /docs/source/rust/driver_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/rust/driver_manager.rst -------------------------------------------------------------------------------- /docs/source/rust/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/rust/index.rst -------------------------------------------------------------------------------- /docs/source/rust/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/rust/quickstart.rst -------------------------------------------------------------------------------- /docs/source/tests/test_cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/docs/source/tests/test_cookbook.py -------------------------------------------------------------------------------- /glib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/.gitignore -------------------------------------------------------------------------------- /glib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/Gemfile -------------------------------------------------------------------------------- /glib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/README.md -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/adbc-arrow-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/adbc-arrow-glib.h -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/connection.c -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/connection.h -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/meson.build -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/statement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/statement.c -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/statement.h -------------------------------------------------------------------------------- /glib/adbc-arrow-glib/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-arrow-glib/version.h.in -------------------------------------------------------------------------------- /glib/adbc-glib/adbc-glib-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/adbc-glib-raw.h -------------------------------------------------------------------------------- /glib/adbc-glib/adbc-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/adbc-glib.h -------------------------------------------------------------------------------- /glib/adbc-glib/connection-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/connection-raw.h -------------------------------------------------------------------------------- /glib/adbc-glib/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/connection.c -------------------------------------------------------------------------------- /glib/adbc-glib/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/connection.h -------------------------------------------------------------------------------- /glib/adbc-glib/database-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/database-raw.h -------------------------------------------------------------------------------- /glib/adbc-glib/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/database.c -------------------------------------------------------------------------------- /glib/adbc-glib/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/database.h -------------------------------------------------------------------------------- /glib/adbc-glib/error-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/error-raw.h -------------------------------------------------------------------------------- /glib/adbc-glib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/error.c -------------------------------------------------------------------------------- /glib/adbc-glib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/error.h -------------------------------------------------------------------------------- /glib/adbc-glib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/meson.build -------------------------------------------------------------------------------- /glib/adbc-glib/statement-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/statement-raw.h -------------------------------------------------------------------------------- /glib/adbc-glib/statement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/statement.c -------------------------------------------------------------------------------- /glib/adbc-glib/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/statement.h -------------------------------------------------------------------------------- /glib/adbc-glib/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/adbc-glib/version.h.in -------------------------------------------------------------------------------- /glib/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/example/README.md -------------------------------------------------------------------------------- /glib/example/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/example/meson.build -------------------------------------------------------------------------------- /glib/example/sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/example/sqlite.c -------------------------------------------------------------------------------- /glib/example/vala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/example/vala/README.md -------------------------------------------------------------------------------- /glib/example/vala/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/example/vala/meson.build -------------------------------------------------------------------------------- /glib/example/vala/sqlite.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/example/vala/sqlite.vala -------------------------------------------------------------------------------- /glib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/meson.build -------------------------------------------------------------------------------- /glib/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/meson_options.txt -------------------------------------------------------------------------------- /glib/test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/helper.rb -------------------------------------------------------------------------------- /glib/test/helper/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/helper/sandbox.rb -------------------------------------------------------------------------------- /glib/test/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/run.rb -------------------------------------------------------------------------------- /glib/test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/run.sh -------------------------------------------------------------------------------- /glib/test/test-arrow-connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-arrow-connection.rb -------------------------------------------------------------------------------- /glib/test/test-arrow-statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-arrow-statement.rb -------------------------------------------------------------------------------- /glib/test/test-connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-connection.rb -------------------------------------------------------------------------------- /glib/test/test-database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-database.rb -------------------------------------------------------------------------------- /glib/test/test-isolation-level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-isolation-level.rb -------------------------------------------------------------------------------- /glib/test/test-statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-statement.rb -------------------------------------------------------------------------------- /glib/test/test-statistic-key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/test/test-statistic-key.rb -------------------------------------------------------------------------------- /glib/tool/generate-version-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/glib/tool/generate-version-header.py -------------------------------------------------------------------------------- /go/adbc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/LICENSE.txt -------------------------------------------------------------------------------- /go/adbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/README.md -------------------------------------------------------------------------------- /go/adbc/adbc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/adbc.go -------------------------------------------------------------------------------- /go/adbc/driver/bigquery/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/bigquery/connection.go -------------------------------------------------------------------------------- /go/adbc/driver/bigquery/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/bigquery/connection_test.go -------------------------------------------------------------------------------- /go/adbc/driver/bigquery/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/bigquery/driver.go -------------------------------------------------------------------------------- /go/adbc/driver/bigquery/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/bigquery/driver_test.go -------------------------------------------------------------------------------- /go/adbc/driver/bigquery/record_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/bigquery/record_reader.go -------------------------------------------------------------------------------- /go/adbc/driver/bigquery/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/bigquery/statement.go -------------------------------------------------------------------------------- /go/adbc/driver/databricks/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/databricks/connection.go -------------------------------------------------------------------------------- /go/adbc/driver/databricks/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/databricks/database.go -------------------------------------------------------------------------------- /go/adbc/driver/databricks/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/databricks/driver.go -------------------------------------------------------------------------------- /go/adbc/driver/databricks/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/databricks/driver_test.go -------------------------------------------------------------------------------- /go/adbc/driver/databricks/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/databricks/statement.go -------------------------------------------------------------------------------- /go/adbc/driver/flightsql/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/flightsql/logging.go -------------------------------------------------------------------------------- /go/adbc/driver/flightsql/record_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/flightsql/record_reader.go -------------------------------------------------------------------------------- /go/adbc/driver/flightsql/timeouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/flightsql/timeouts.go -------------------------------------------------------------------------------- /go/adbc/driver/flightsql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/flightsql/utils.go -------------------------------------------------------------------------------- /go/adbc/driver/internal/shared_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/internal/shared_utils.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/binding.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/bulk_ingestion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/bulk_ingestion.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/concat_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/concat_reader.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/connection.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/driver.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/driver_test.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/record_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/record_reader.go -------------------------------------------------------------------------------- /go/adbc/driver/snowflake/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/driver/snowflake/statement.go -------------------------------------------------------------------------------- /go/adbc/drivermgr/adbc_driver_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/adbc_driver_manager.cc -------------------------------------------------------------------------------- /go/adbc/drivermgr/arrow-adbc/adbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/arrow-adbc/adbc.h -------------------------------------------------------------------------------- /go/adbc/drivermgr/current_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/current_arch.h -------------------------------------------------------------------------------- /go/adbc/drivermgr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/doc.go -------------------------------------------------------------------------------- /go/adbc/drivermgr/vendored/toml++/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/vendored/toml++/toml.hpp -------------------------------------------------------------------------------- /go/adbc/drivermgr/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/wrapper.go -------------------------------------------------------------------------------- /go/adbc/drivermgr/wrapper_sqlite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/drivermgr/wrapper_sqlite_test.go -------------------------------------------------------------------------------- /go/adbc/ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/ext.go -------------------------------------------------------------------------------- /go/adbc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/go.mod -------------------------------------------------------------------------------- /go/adbc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/go.sum -------------------------------------------------------------------------------- /go/adbc/infocode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/infocode_string.go -------------------------------------------------------------------------------- /go/adbc/pkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/Makefile -------------------------------------------------------------------------------- /go/adbc/pkg/_tmpl/driver.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/_tmpl/driver.go.tmpl -------------------------------------------------------------------------------- /go/adbc/pkg/_tmpl/utils.c.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/_tmpl/utils.c.tmpl -------------------------------------------------------------------------------- /go/adbc/pkg/_tmpl/utils.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/_tmpl/utils.h.tmpl -------------------------------------------------------------------------------- /go/adbc/pkg/bigquery/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/bigquery/driver.go -------------------------------------------------------------------------------- /go/adbc/pkg/bigquery/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/bigquery/extra.go -------------------------------------------------------------------------------- /go/adbc/pkg/bigquery/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/bigquery/utils.c -------------------------------------------------------------------------------- /go/adbc/pkg/bigquery/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/bigquery/utils.h -------------------------------------------------------------------------------- /go/adbc/pkg/databricks/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/databricks/driver.go -------------------------------------------------------------------------------- /go/adbc/pkg/databricks/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/databricks/utils.c -------------------------------------------------------------------------------- /go/adbc/pkg/databricks/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/databricks/utils.h -------------------------------------------------------------------------------- /go/adbc/pkg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/doc.go -------------------------------------------------------------------------------- /go/adbc/pkg/flightsql/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/flightsql/driver.go -------------------------------------------------------------------------------- /go/adbc/pkg/flightsql/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/flightsql/init.go -------------------------------------------------------------------------------- /go/adbc/pkg/flightsql/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/flightsql/utils.c -------------------------------------------------------------------------------- /go/adbc/pkg/flightsql/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/flightsql/utils.h -------------------------------------------------------------------------------- /go/adbc/pkg/gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/gen/main.go -------------------------------------------------------------------------------- /go/adbc/pkg/panicdummy/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/panicdummy/driver.go -------------------------------------------------------------------------------- /go/adbc/pkg/panicdummy/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/panicdummy/utils.c -------------------------------------------------------------------------------- /go/adbc/pkg/panicdummy/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/panicdummy/utils.h -------------------------------------------------------------------------------- /go/adbc/pkg/snowflake/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/snowflake/driver.go -------------------------------------------------------------------------------- /go/adbc/pkg/snowflake/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/snowflake/utils.c -------------------------------------------------------------------------------- /go/adbc/pkg/snowflake/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/pkg/snowflake/utils.h -------------------------------------------------------------------------------- /go/adbc/sqldriver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/sqldriver/doc.go -------------------------------------------------------------------------------- /go/adbc/sqldriver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/sqldriver/driver.go -------------------------------------------------------------------------------- /go/adbc/sqldriver/driver_internals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/sqldriver/driver_internals_test.go -------------------------------------------------------------------------------- /go/adbc/sqldriver/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/sqldriver/driver_test.go -------------------------------------------------------------------------------- /go/adbc/sqldriver/flightsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/sqldriver/flightsql/README.md -------------------------------------------------------------------------------- /go/adbc/sqldriver/flightsql/flightsql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/sqldriver/flightsql/flightsql.go -------------------------------------------------------------------------------- /go/adbc/standard_schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/standard_schemas.go -------------------------------------------------------------------------------- /go/adbc/status_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/status_string.go -------------------------------------------------------------------------------- /go/adbc/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/tools.go -------------------------------------------------------------------------------- /go/adbc/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/utils/utils.go -------------------------------------------------------------------------------- /go/adbc/validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/go/adbc/validation/validation.go -------------------------------------------------------------------------------- /java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/CMakeLists.txt -------------------------------------------------------------------------------- /java/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/core/pom.xml -------------------------------------------------------------------------------- /java/dev/license/asf-xml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/dev/license/asf-xml.license -------------------------------------------------------------------------------- /java/driver-manager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver-manager/pom.xml -------------------------------------------------------------------------------- /java/driver/flight-sql-validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/flight-sql-validation/pom.xml -------------------------------------------------------------------------------- /java/driver/flight-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/flight-sql/README.md -------------------------------------------------------------------------------- /java/driver/flight-sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/flight-sql/pom.xml -------------------------------------------------------------------------------- /java/driver/jdbc-validation-derby/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/jdbc-validation-derby/pom.xml -------------------------------------------------------------------------------- /java/driver/jdbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/jdbc/README.md -------------------------------------------------------------------------------- /java/driver/jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/jdbc/pom.xml -------------------------------------------------------------------------------- /java/driver/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/jni/CMakeLists.txt -------------------------------------------------------------------------------- /java/driver/jni/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/jni/pom.xml -------------------------------------------------------------------------------- /java/driver/validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/driver/validation/pom.xml -------------------------------------------------------------------------------- /java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/pom.xml -------------------------------------------------------------------------------- /java/sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/java/sql/pom.xml -------------------------------------------------------------------------------- /license.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/license.tpl -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/.gitignore -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/LICENSE.txt -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/MANIFEST.in -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/NOTICE.txt -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/README.md -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/adbc_driver_bigquery/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/pyproject.toml -------------------------------------------------------------------------------- /python/adbc_driver_bigquery/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_bigquery/setup.py -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_flightsql/.gitignore -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../../LICENSE.txt -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_flightsql/MANIFEST.in -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/NOTICE.txt: -------------------------------------------------------------------------------- 1 | ../../NOTICE.txt -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_flightsql/README.md -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/adbc_driver_flightsql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/adbc_driver_flightsql/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_flightsql/setup.py -------------------------------------------------------------------------------- /python/adbc_driver_manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_manager/.gitignore -------------------------------------------------------------------------------- /python/adbc_driver_manager/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../../LICENSE.txt -------------------------------------------------------------------------------- /python/adbc_driver_manager/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_manager/MANIFEST.in -------------------------------------------------------------------------------- /python/adbc_driver_manager/NOTICE.txt: -------------------------------------------------------------------------------- 1 | ../../NOTICE.txt -------------------------------------------------------------------------------- /python/adbc_driver_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_manager/README.md -------------------------------------------------------------------------------- /python/adbc_driver_manager/adbc_driver_manager/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/adbc_driver_manager/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_manager/pyproject.toml -------------------------------------------------------------------------------- /python/adbc_driver_manager/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_manager/setup.py -------------------------------------------------------------------------------- /python/adbc_driver_postgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_postgresql/.gitignore -------------------------------------------------------------------------------- /python/adbc_driver_postgresql/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../../LICENSE.txt -------------------------------------------------------------------------------- /python/adbc_driver_postgresql/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_postgresql/MANIFEST.in -------------------------------------------------------------------------------- /python/adbc_driver_postgresql/NOTICE.txt: -------------------------------------------------------------------------------- 1 | ../../NOTICE.txt -------------------------------------------------------------------------------- /python/adbc_driver_postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_postgresql/README.md -------------------------------------------------------------------------------- /python/adbc_driver_postgresql/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_postgresql/setup.py -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_snowflake/.gitignore -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../../LICENSE.txt -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_snowflake/MANIFEST.in -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/NOTICE.txt: -------------------------------------------------------------------------------- 1 | ../../NOTICE.txt -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_snowflake/README.md -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/adbc_driver_snowflake/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/adbc_driver_snowflake/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_snowflake/setup.py -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_sqlite/.gitignore -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../../LICENSE.txt -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_sqlite/MANIFEST.in -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/NOTICE.txt: -------------------------------------------------------------------------------- 1 | ../../NOTICE.txt -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_sqlite/README.md -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/adbc_driver_sqlite/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_sqlite/pyproject.toml -------------------------------------------------------------------------------- /python/adbc_driver_sqlite/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/python/adbc_driver_sqlite/setup.py -------------------------------------------------------------------------------- /r/adbcbigquery/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/.Rbuildignore -------------------------------------------------------------------------------- /r/adbcbigquery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/.gitignore -------------------------------------------------------------------------------- /r/adbcbigquery/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/DESCRIPTION -------------------------------------------------------------------------------- /r/adbcbigquery/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/LICENSE.md -------------------------------------------------------------------------------- /r/adbcbigquery/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/NAMESPACE -------------------------------------------------------------------------------- /r/adbcbigquery/R/adbcbigquery-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/R/adbcbigquery-package.R -------------------------------------------------------------------------------- /r/adbcbigquery/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/README.Rmd -------------------------------------------------------------------------------- /r/adbcbigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/README.md -------------------------------------------------------------------------------- /r/adbcbigquery/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/_pkgdown.yml -------------------------------------------------------------------------------- /r/adbcbigquery/adbcbigquery.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/adbcbigquery.Rproj -------------------------------------------------------------------------------- /r/adbcbigquery/bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/bootstrap.R -------------------------------------------------------------------------------- /r/adbcbigquery/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/cleanup -------------------------------------------------------------------------------- /r/adbcbigquery/cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/cleanup.win -------------------------------------------------------------------------------- /r/adbcbigquery/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/configure -------------------------------------------------------------------------------- /r/adbcbigquery/configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/configure.win -------------------------------------------------------------------------------- /r/adbcbigquery/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/cran-comments.md -------------------------------------------------------------------------------- /r/adbcbigquery/man/adbcbigquery-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/man/adbcbigquery-package.Rd -------------------------------------------------------------------------------- /r/adbcbigquery/man/adbcbigquery.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/man/adbcbigquery.Rd -------------------------------------------------------------------------------- /r/adbcbigquery/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/src/.gitignore -------------------------------------------------------------------------------- /r/adbcbigquery/src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/src/Makevars.in -------------------------------------------------------------------------------- /r/adbcbigquery/src/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/src/go/.gitignore -------------------------------------------------------------------------------- /r/adbcbigquery/src/go/symbols.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/src/go/symbols.map -------------------------------------------------------------------------------- /r/adbcbigquery/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/src/init.c -------------------------------------------------------------------------------- /r/adbcbigquery/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/tests/testthat.R -------------------------------------------------------------------------------- /r/adbcbigquery/tools/download-go.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcbigquery/tools/download-go.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/.Rbuildignore -------------------------------------------------------------------------------- /r/adbcdrivermanager/.covrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/.covrignore -------------------------------------------------------------------------------- /r/adbcdrivermanager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/.gitignore -------------------------------------------------------------------------------- /r/adbcdrivermanager/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/DESCRIPTION -------------------------------------------------------------------------------- /r/adbcdrivermanager/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/LICENSE.md -------------------------------------------------------------------------------- /r/adbcdrivermanager/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/NAMESPACE -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/adbc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/adbc.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/driver_log.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/driver_log.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/driver_monkey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/driver_monkey.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/driver_void.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/driver_void.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/error.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/error.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/helpers.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/options.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/R/utils.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/README.Rmd -------------------------------------------------------------------------------- /r/adbcdrivermanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/README.md -------------------------------------------------------------------------------- /r/adbcdrivermanager/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/_pkgdown.yml -------------------------------------------------------------------------------- /r/adbcdrivermanager/bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/bootstrap.R -------------------------------------------------------------------------------- /r/adbcdrivermanager/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/configure -------------------------------------------------------------------------------- /r/adbcdrivermanager/configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/configure.win -------------------------------------------------------------------------------- /r/adbcdrivermanager/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/cran-comments.md -------------------------------------------------------------------------------- /r/adbcdrivermanager/man/adbc_driver_log.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/man/adbc_driver_log.Rd -------------------------------------------------------------------------------- /r/adbcdrivermanager/man/adbc_load_flags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/man/adbc_load_flags.Rd -------------------------------------------------------------------------------- /r/adbcdrivermanager/man/adbc_xptr_move.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/man/adbc_xptr_move.Rd -------------------------------------------------------------------------------- /r/adbcdrivermanager/man/read_adbc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/man/read_adbc.Rd -------------------------------------------------------------------------------- /r/adbcdrivermanager/man/with_adbc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/man/with_adbc.Rd -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/.gitignore -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/Makevars -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/Makevars.win -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/driver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/driver_test.cc -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/error.cc -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/init.c -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/options.cc -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/radbc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/radbc.cc -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/radbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/radbc.h -------------------------------------------------------------------------------- /r/adbcdrivermanager/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/src/utils.c -------------------------------------------------------------------------------- /r/adbcdrivermanager/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcdrivermanager/tests/testthat.R -------------------------------------------------------------------------------- /r/adbcflightsql/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/.Rbuildignore -------------------------------------------------------------------------------- /r/adbcflightsql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/.gitignore -------------------------------------------------------------------------------- /r/adbcflightsql/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/DESCRIPTION -------------------------------------------------------------------------------- /r/adbcflightsql/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/LICENSE.md -------------------------------------------------------------------------------- /r/adbcflightsql/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/NAMESPACE -------------------------------------------------------------------------------- /r/adbcflightsql/R/adbcflightsql-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/R/adbcflightsql-package.R -------------------------------------------------------------------------------- /r/adbcflightsql/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/README.Rmd -------------------------------------------------------------------------------- /r/adbcflightsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/README.md -------------------------------------------------------------------------------- /r/adbcflightsql/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/_pkgdown.yml -------------------------------------------------------------------------------- /r/adbcflightsql/adbcflightsql.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/adbcflightsql.Rproj -------------------------------------------------------------------------------- /r/adbcflightsql/bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/bootstrap.R -------------------------------------------------------------------------------- /r/adbcflightsql/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/cleanup -------------------------------------------------------------------------------- /r/adbcflightsql/cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/cleanup.win -------------------------------------------------------------------------------- /r/adbcflightsql/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/configure -------------------------------------------------------------------------------- /r/adbcflightsql/configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/configure.win -------------------------------------------------------------------------------- /r/adbcflightsql/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/cran-comments.md -------------------------------------------------------------------------------- /r/adbcflightsql/man/adbcflightsql.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/man/adbcflightsql.Rd -------------------------------------------------------------------------------- /r/adbcflightsql/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/src/.gitignore -------------------------------------------------------------------------------- /r/adbcflightsql/src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/src/Makevars.in -------------------------------------------------------------------------------- /r/adbcflightsql/src/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/src/go/.gitignore -------------------------------------------------------------------------------- /r/adbcflightsql/src/go/symbols.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/src/go/symbols.map -------------------------------------------------------------------------------- /r/adbcflightsql/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/src/init.c -------------------------------------------------------------------------------- /r/adbcflightsql/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/tests/testthat.R -------------------------------------------------------------------------------- /r/adbcflightsql/tools/download-go.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcflightsql/tools/download-go.R -------------------------------------------------------------------------------- /r/adbcpostgresql/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/.Rbuildignore -------------------------------------------------------------------------------- /r/adbcpostgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/.gitignore -------------------------------------------------------------------------------- /r/adbcpostgresql/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/DESCRIPTION -------------------------------------------------------------------------------- /r/adbcpostgresql/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/LICENSE.md -------------------------------------------------------------------------------- /r/adbcpostgresql/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/NAMESPACE -------------------------------------------------------------------------------- /r/adbcpostgresql/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/README.Rmd -------------------------------------------------------------------------------- /r/adbcpostgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/README.md -------------------------------------------------------------------------------- /r/adbcpostgresql/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/_pkgdown.yml -------------------------------------------------------------------------------- /r/adbcpostgresql/adbcpostgresql.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/adbcpostgresql.Rproj -------------------------------------------------------------------------------- /r/adbcpostgresql/bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/bootstrap.R -------------------------------------------------------------------------------- /r/adbcpostgresql/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/cleanup -------------------------------------------------------------------------------- /r/adbcpostgresql/cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/cleanup.win -------------------------------------------------------------------------------- /r/adbcpostgresql/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/configure -------------------------------------------------------------------------------- /r/adbcpostgresql/configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/configure.win -------------------------------------------------------------------------------- /r/adbcpostgresql/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/cran-comments.md -------------------------------------------------------------------------------- /r/adbcpostgresql/man/adbcpostgresql.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/man/adbcpostgresql.Rd -------------------------------------------------------------------------------- /r/adbcpostgresql/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/src/.gitignore -------------------------------------------------------------------------------- /r/adbcpostgresql/src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/src/Makevars.in -------------------------------------------------------------------------------- /r/adbcpostgresql/src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/src/Makevars.ucrt -------------------------------------------------------------------------------- /r/adbcpostgresql/src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/src/Makevars.win -------------------------------------------------------------------------------- /r/adbcpostgresql/src/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/src/init.cc -------------------------------------------------------------------------------- /r/adbcpostgresql/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/tests/testthat.R -------------------------------------------------------------------------------- /r/adbcpostgresql/tools/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/tools/test.c -------------------------------------------------------------------------------- /r/adbcpostgresql/tools/winlibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcpostgresql/tools/winlibs.R -------------------------------------------------------------------------------- /r/adbcsnowflake/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/.Rbuildignore -------------------------------------------------------------------------------- /r/adbcsnowflake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/.gitignore -------------------------------------------------------------------------------- /r/adbcsnowflake/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/DESCRIPTION -------------------------------------------------------------------------------- /r/adbcsnowflake/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/LICENSE.md -------------------------------------------------------------------------------- /r/adbcsnowflake/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/NAMESPACE -------------------------------------------------------------------------------- /r/adbcsnowflake/R/adbcsnowflake-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/R/adbcsnowflake-package.R -------------------------------------------------------------------------------- /r/adbcsnowflake/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/README.Rmd -------------------------------------------------------------------------------- /r/adbcsnowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/README.md -------------------------------------------------------------------------------- /r/adbcsnowflake/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/_pkgdown.yml -------------------------------------------------------------------------------- /r/adbcsnowflake/adbcsnowflake.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/adbcsnowflake.Rproj -------------------------------------------------------------------------------- /r/adbcsnowflake/bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/bootstrap.R -------------------------------------------------------------------------------- /r/adbcsnowflake/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/cleanup -------------------------------------------------------------------------------- /r/adbcsnowflake/cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/cleanup.win -------------------------------------------------------------------------------- /r/adbcsnowflake/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/configure -------------------------------------------------------------------------------- /r/adbcsnowflake/configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/configure.win -------------------------------------------------------------------------------- /r/adbcsnowflake/man/adbcsnowflake.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/man/adbcsnowflake.Rd -------------------------------------------------------------------------------- /r/adbcsnowflake/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/src/.gitignore -------------------------------------------------------------------------------- /r/adbcsnowflake/src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/src/Makevars.in -------------------------------------------------------------------------------- /r/adbcsnowflake/src/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/src/go/.gitignore -------------------------------------------------------------------------------- /r/adbcsnowflake/src/go/symbols.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/src/go/symbols.map -------------------------------------------------------------------------------- /r/adbcsnowflake/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/src/init.c -------------------------------------------------------------------------------- /r/adbcsnowflake/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/tests/testthat.R -------------------------------------------------------------------------------- /r/adbcsnowflake/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/tools/.gitignore -------------------------------------------------------------------------------- /r/adbcsnowflake/tools/download-go.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsnowflake/tools/download-go.R -------------------------------------------------------------------------------- /r/adbcsqlite/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/.Rbuildignore -------------------------------------------------------------------------------- /r/adbcsqlite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/.gitignore -------------------------------------------------------------------------------- /r/adbcsqlite/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/DESCRIPTION -------------------------------------------------------------------------------- /r/adbcsqlite/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/LICENSE.md -------------------------------------------------------------------------------- /r/adbcsqlite/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/NAMESPACE -------------------------------------------------------------------------------- /r/adbcsqlite/R/adbcsqlite-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/R/adbcsqlite-package.R -------------------------------------------------------------------------------- /r/adbcsqlite/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/README.Rmd -------------------------------------------------------------------------------- /r/adbcsqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/README.md -------------------------------------------------------------------------------- /r/adbcsqlite/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/_pkgdown.yml -------------------------------------------------------------------------------- /r/adbcsqlite/adbcsqlite.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/adbcsqlite.Rproj -------------------------------------------------------------------------------- /r/adbcsqlite/bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/bootstrap.R -------------------------------------------------------------------------------- /r/adbcsqlite/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/cleanup -------------------------------------------------------------------------------- /r/adbcsqlite/cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/cleanup.win -------------------------------------------------------------------------------- /r/adbcsqlite/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/configure -------------------------------------------------------------------------------- /r/adbcsqlite/configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/configure.win -------------------------------------------------------------------------------- /r/adbcsqlite/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/cran-comments.md -------------------------------------------------------------------------------- /r/adbcsqlite/man/adbcsqlite-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/man/adbcsqlite-package.Rd -------------------------------------------------------------------------------- /r/adbcsqlite/man/adbcsqlite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/man/adbcsqlite.Rd -------------------------------------------------------------------------------- /r/adbcsqlite/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/src/.gitignore -------------------------------------------------------------------------------- /r/adbcsqlite/src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/src/Makevars.in -------------------------------------------------------------------------------- /r/adbcsqlite/src/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/src/common/.gitignore -------------------------------------------------------------------------------- /r/adbcsqlite/src/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/src/init.cc -------------------------------------------------------------------------------- /r/adbcsqlite/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/tests/testthat.R -------------------------------------------------------------------------------- /r/adbcsqlite/tools/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/tools/test.c -------------------------------------------------------------------------------- /r/adbcsqlite/tools/test_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/adbcsqlite/tools/test_extension.c -------------------------------------------------------------------------------- /r/tools/bootstrap-c.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/tools/bootstrap-c.R -------------------------------------------------------------------------------- /r/tools/bootstrap-go.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/tools/bootstrap-go.R -------------------------------------------------------------------------------- /r/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/r/valgrind.supp -------------------------------------------------------------------------------- /ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/.gitignore -------------------------------------------------------------------------------- /ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/Gemfile -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/Rakefile -------------------------------------------------------------------------------- /ruby/lib/adbc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/connection-operations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/connection-operations.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/connection.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/database.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/loader.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/statement-openable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/statement-openable.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/statement-operations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/statement-operations.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/statement.rb -------------------------------------------------------------------------------- /ruby/lib/adbc/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/lib/adbc/version.rb -------------------------------------------------------------------------------- /ruby/red-adbc.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/red-adbc.gemspec -------------------------------------------------------------------------------- /ruby/test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/test/helper.rb -------------------------------------------------------------------------------- /ruby/test/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/test/run.rb -------------------------------------------------------------------------------- /ruby/test/test-connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/test/test-connection.rb -------------------------------------------------------------------------------- /ruby/test/test-isolation-level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/test/test-isolation-level.rb -------------------------------------------------------------------------------- /ruby/test/test-load-flags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/test/test-load-flags.rb -------------------------------------------------------------------------------- /ruby/test/test-statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/ruby/test/test-statement.rb -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/core/Cargo.toml -------------------------------------------------------------------------------- /rust/core/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/core/src/constants.rs -------------------------------------------------------------------------------- /rust/core/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/core/src/error.rs -------------------------------------------------------------------------------- /rust/core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/core/src/lib.rs -------------------------------------------------------------------------------- /rust/core/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/core/src/options.rs -------------------------------------------------------------------------------- /rust/core/src/schemas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/core/src/schemas.rs -------------------------------------------------------------------------------- /rust/driver/datafusion/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/datafusion/Cargo.toml -------------------------------------------------------------------------------- /rust/driver/datafusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/datafusion/README.md -------------------------------------------------------------------------------- /rust/driver/datafusion/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/datafusion/src/lib.rs -------------------------------------------------------------------------------- /rust/driver/dummy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/dummy/Cargo.toml -------------------------------------------------------------------------------- /rust/driver/dummy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/dummy/src/lib.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/.gitignore -------------------------------------------------------------------------------- /rust/driver/snowflake/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/Cargo.toml -------------------------------------------------------------------------------- /rust/driver/snowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/README.md -------------------------------------------------------------------------------- /rust/driver/snowflake/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/build.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/builder.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/connection.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/database.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/driver.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/duration.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/lib.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/src/statement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/src/statement.rs -------------------------------------------------------------------------------- /rust/driver/snowflake/tests/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver/snowflake/tests/driver.rs -------------------------------------------------------------------------------- /rust/driver_manager/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver_manager/Cargo.toml -------------------------------------------------------------------------------- /rust/driver_manager/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver_manager/build.rs -------------------------------------------------------------------------------- /rust/driver_manager/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver_manager/src/error.rs -------------------------------------------------------------------------------- /rust/driver_manager/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver_manager/src/lib.rs -------------------------------------------------------------------------------- /rust/driver_manager/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/driver_manager/tests/common/mod.rs -------------------------------------------------------------------------------- /rust/ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/ffi/Cargo.toml -------------------------------------------------------------------------------- /rust/ffi/src/driver_exporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/ffi/src/driver_exporter.rs -------------------------------------------------------------------------------- /rust/ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/ffi/src/lib.rs -------------------------------------------------------------------------------- /rust/ffi/src/methods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/ffi/src/methods.rs -------------------------------------------------------------------------------- /rust/ffi/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/ffi/src/types.rs -------------------------------------------------------------------------------- /rust/ffi/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/arrow-adbc/HEAD/rust/ffi/src/utils.rs --------------------------------------------------------------------------------