Skip to content

Commit 0da4357

Browse files
committed
refactor: exprimental parquet reader
1 parent 00a0693 commit 0da4357

File tree

25 files changed

+2629
-58
lines changed

25 files changed

+2629
-58
lines changed

Cargo.lock

Lines changed: 112 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ databend-common-meta-types = { path = "src/meta/types" }
161161
databend-common-metrics = { path = "src/common/metrics" }
162162
databend-common-native = { path = "src/common/native" }
163163
databend-common-openai = { path = "src/common/openai" }
164+
databend-common-parquet-reader-experimental = { path = "src/common/experimental_parquet_reader" }
164165
databend-common-pipeline-core = { path = "src/query/pipeline/core" }
165166
databend-common-pipeline-sinks = { path = "src/query/pipeline/sinks" }
166167
databend-common-pipeline-sources = { path = "src/query/pipeline/sources" }
@@ -232,16 +233,16 @@ anyerror = { version = "=0.1.13" }
232233
anyhow = { version = "1.0.65" }
233234
apache-avro = { version = "0.17.0", features = ["snappy", "zstandard", "xz", "snappy", "bzip"] }
234235
approx = "0.5.1"
235-
arrow = { version = "55" }
236-
arrow-array = { version = "55" }
237-
arrow-buffer = { version = "55" }
238-
arrow-cast = { version = "55", features = ["prettyprint"] }
239-
arrow-data = { version = "55" }
240-
arrow-flight = { version = "55", features = ["flight-sql-experimental", "tls"] }
241-
arrow-ipc = { version = "55" }
242-
arrow-ord = { version = "55" }
243-
arrow-schema = { version = "55", features = ["serde"] }
244-
arrow-select = { version = "55" }
236+
arrow = { version = "55.2" }
237+
arrow-array = { version = "55.2" }
238+
arrow-buffer = { version = "55.2" }
239+
arrow-cast = { version = "55.2", features = ["prettyprint"] }
240+
arrow-data = { version = "55.2" }
241+
arrow-flight = { version = "55.2", features = ["flight-sql-experimental", "tls"] }
242+
arrow-ipc = { version = "55.2" }
243+
arrow-ord = { version = "55.2" }
244+
arrow-schema = { version = "55.2", features = ["serde"] }
245+
arrow-select = { version = "55.2" }
245246
arrow-udf-runtime = { version = "0.8.0", default-features = false }
246247
async-backtrace = "0.2"
247248
async-channel = "1.7.1"

0 commit comments

Comments
 (0)