From b8ba3d254ca6be40678bca436840d11672731b08 Mon Sep 17 00:00:00 2001
From: Zeljko Mihaljcic <7150613+zehiko@users.noreply.github.com>
Date: Mon, 14 Oct 2024 10:55:26 +0200
Subject: [PATCH] re-export all the types needed to build QueryExpression
 (#7709)

### What

Export types used to create a QueryExpression to avoid needing to use 'external' types.

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)
* [x] I've included a screenshot or gif (if applicable)
* [x] I have tested the web demo (if applicable):
* Using examples from latest `main` build:
[rerun.io/viewer](https://rerun.io/viewer/pr/7709?manifest_url=https://app.rerun.io/version/main/examples_manifest.json)
* Using full set of examples from `nightly` build:
[rerun.io/viewer](https://rerun.io/viewer/pr/7709?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json)
* [x] The PR title and labels are set such as to maximize their
usefulness for the next release's CHANGELOG
* [x] If applicable, add a new check to the [release
checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)!
* [x] If have noted any breaking changes to the log API in
`CHANGELOG.md` and the migration guide

- [PR Build Summary](https://build.rerun.io/pr/7709)
- [Recent benchmark results](https://build.rerun.io/graphs/crates.html)
- [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)

To run all checks from `main`, comment on the PR with `@rerun-bot
full-check`.
---
 crates/store/re_dataframe/src/lib.rs | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/crates/store/re_dataframe/src/lib.rs b/crates/store/re_dataframe/src/lib.rs
index 3d387c295419..034b09b2d418 100644
--- a/crates/store/re_dataframe/src/lib.rs
+++ b/crates/store/re_dataframe/src/lib.rs
@@ -9,11 +9,19 @@ pub use self::query::QueryHandle;
 #[doc(no_inline)]
 pub use self::external::arrow2::chunk::Chunk as ArrowChunk;
 #[doc(no_inline)]
+pub use self::external::re_chunk_store::{
+    ColumnSelector, ComponentColumnSelector, Index, IndexRange, IndexValue, JoinEncoding,
+    QueryExpression, SparseFillStrategy, TimeColumnSelector, ViewContentsSelector,
+};
+#[doc(no_inline)]
+pub use self::external::re_log_types::{TimeInt, Timeline};
+#[doc(no_inline)]
 pub use self::external::re_query::Caches as QueryCache;
 
 pub mod external {
     pub use re_chunk;
     pub use re_chunk_store;
+    pub use re_log_types;
     pub use re_query;
 
     pub use arrow2;