Skip to content

Commit 6a05a41

Browse files
authored
minor: update lance-format links (#11926)
This is a minor change to the github links for lance-format now that their repository has transitioned.
1 parent 22d46fa commit 6a05a41

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ crossbeam = "0.8.0"
223223
datafusion = { version = "50.1.0", default-features = false, features = [
224224
# NOTE: we enable the same features everywhere
225225
# because otherwise we will recompile datafusion all the time based on our current compile target.
226-
# The features here are the same as in https://github.com/lancedb/lance/blob/v0.38.0/Cargo.toml#L99-L107
226+
# The features here are the same as in https://github.com/lance-format/lance/blob/v0.38.0/Cargo.toml#L99-L107
227227
# This is very hacky, and I don't like it.
228228
"crypto_expressions",
229229
"datetime_expressions",

crates/store/re_chunk_store/src/properties.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl ChunkStore {
102102
let mut new_field =
103103
Field::new(name.clone(), list_array.data_type().clone(), nullable);
104104

105-
// TODO(rerun-io/dataplatform#567) it seems we're hitting https://github.com/lancedb/lance/issues/2304. So what happens is that
105+
// TODO(rerun-io/dataplatform#567) it seems we're hitting https://github.com/lance-format/lance/issues/2304. So what happens is that
106106
// we store a properties with a FixedSizeList and Lance stores it as nullable = true, regardless of the input
107107
// field. If we then try to register another partition with the same property, but with nullable = false, we'll
108108
// get a "Cannot change field type for field" error. Hence, we have to make field nullable in case of FixedSizeList

crates/top/rerun-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ native_viewer = ["rerun/native_viewer"]
9191
oss_server = ["rerun/oss_server"]
9292

9393
## Add support for Lance tables in the in-memory OSS Rerun Server (`oss_server` feature flag).
94-
## This is opt-in because of <https://github.com/lancedb/lance/issues/3073>.
94+
## This is opt-in because of <https://github.com/lance-format/lance/issues/3073>.
9595
# TODO(lancedb/lance#3073): remove feature flag
9696
lance = ["re_server/lance"]
9797

deny.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ skip = [
6363
{ name = "core-foundation" }, # Currently, e.g. `webbrowser` and `winit` use different versions.
6464
{ name = "core-graphics-types" }, # wgpu requires 0.2 while winit is still on 0.1
6565
{ name = "downcast-rs" }, # eco-system is transitioning from 1 to 2
66-
{ name = "event-listener" }, # remove after https://github.com/lancedb/lance/pull/4834 closes
66+
{ name = "event-listener" }, # remove after https://github.com/lance-format/lance/pull/4834 closes
6767
{ name = "gimli" }, # wasm-bindgen
6868
{ name = "hashbrown" }, # Old version used by polar-rs
6969
{ name = "itertools" }, # Too popular

rerun_py/tests/e2e_redap_tests/test_table_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_create_table_from_dataset(prefilled_catalog: PrefilledCatalog, tmp_path
3636
)
3737
df = table_entry.df()
3838

39-
# Due to https://github.com/lancedb/lance/issues/2304 we cannot
39+
# Due to https://github.com/lance-format/lance/issues/2304 we cannot
4040
# directly compare the returned schema. Verify we at least
4141
# get back the same columns and metadata
4242

0 commit comments

Comments
 (0)