mkleinbort-wl

Results 7 issues of mkleinbort-wl

### Description It is ocasionaly true that the filename of a data file is fairly critical information Illustratively ``` Users/ Alice.csv Bob.csv Charlie.csv ``` When using glob patterns to read...

good first issue
enhancement

When following the guide on [adding SSO to Streamlit](https://www.descope.com/blog/post/authentication-sso-streamlit) I noticed it does not address granting access to more than one organization. Suppose that users from both BigCo and TechSupportCo...

### SDK Python ### Description When running an upsert operation on a large-ish LanceDB table, I keep hitting this error: ``` RuntimeError: lance error: LanceError(IO): Not enough memory to continue...

enhancement

### LanceDB version _0.25.0_ ### What happened? Currently, none of these works: ```python # tb is LanceTable with column 'entityId' of type Int64. tb.create_scalar_index('entityId') # tb.create_scalar_index('`entityId`') # tb.create_scalar_index(r'entityId') # tb.create_scalar_index('"entityId"')...

bug

### LanceDB version _0.25.0_ ### What happened? Running: ```python tb.search(f'"{q}"', fts_columns='_entityname', query_type='fts') .select(['_entitiid', '_score']) .limit(100) ``` Works well. It returns up to 100 results that match the query string `q`...

bug

### SDK Python ### Description It's a common pattern to "pipe" tables through functions (see. polars' `pl.DataFrame.pipe(...)`, pandas' `pd.DataFrame.pipe(...)` and pyspark's .transform(...)) The proposal would be to enable this pattern:...

enhancement

### LanceDB version _No response_ ### What happened? This code works: ```python import lancedb import polars df = pl.DataFrame({'x':[1]}) client = lancedb.connect('./test_lancedb_local') client.create_table('test_table', df) tb = client.open_table('test_table') df2 = tb.to_polars()...

bug