Compare commits

..

1 Commits

Author SHA1 Message Date
Lance Release
f5405ce3a4 Bump version: 0.23.1-beta.0 → 0.23.1-beta.1 2025-12-17 06:59:14 +00:00
4 changed files with 7 additions and 23 deletions

6
Cargo.lock generated
View File

@@ -4970,7 +4970,7 @@ dependencies = [
[[package]]
name = "lancedb"
version = "0.23.1-beta.1"
version = "0.23.1-beta.0"
dependencies = [
"ahash",
"anyhow",
@@ -5049,7 +5049,7 @@ dependencies = [
[[package]]
name = "lancedb-nodejs"
version = "0.23.1-beta.1"
version = "0.23.1-beta.0"
dependencies = [
"arrow-array",
"arrow-ipc",
@@ -5069,7 +5069,7 @@ dependencies = [
[[package]]
name = "lancedb-python"
version = "0.26.1-beta.1"
version = "0.26.1-beta.0"
dependencies = [
"arrow",
"async-trait",

View File

@@ -1,12 +1,12 @@
{
"name": "@lancedb/lancedb",
"version": "0.23.1-beta.1",
"version": "0.23.1-beta.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@lancedb/lancedb",
"version": "0.23.1-beta.1",
"version": "0.23.1-beta.0",
"cpu": [
"x64",
"arm64"

View File

@@ -210,8 +210,10 @@ class DBConnection(EnforceOverrides):
page_token: str, optional
The token to use for pagination. If not present, start from the beginning.
Typically, this token is last table name from the previous page.
Only supported by LanceDb Cloud.
limit: int, default 10
The size of the page to return.
Only supported by LanceDb Cloud.
Returns
-------

View File

@@ -684,24 +684,6 @@ class Table(ABC):
"""
raise NotImplementedError
def to_lance(self, **kwargs) -> lance.LanceDataset:
"""Return the table as a lance.LanceDataset.
Returns
-------
lance.LanceDataset
"""
raise NotImplementedError
def to_polars(self, **kwargs) -> "pl.DataFrame":
"""Return the table as a polars.DataFrame.
Returns
-------
polars.DataFrame
"""
raise NotImplementedError
def create_index(
self,
metric="l2",