[python] Fix a few minor bugs (#304)

This commit is contained in:
Chang She
2023-07-15 03:47:42 +08:00
committed by GitHub
parent ad18826579
commit 2fdcb307eb
5 changed files with 20 additions and 15 deletions

View File

@@ -13,6 +13,7 @@
import numpy as np
import pandas as pd
import pyarrow as pa
import pytest
import lancedb
@@ -131,6 +132,9 @@ def test_empty_or_nonexistent_table(tmp_path):
with pytest.raises(Exception):
db.open_table("does_not_exist")
schema = pa.schema([pa.field("a", pa.int32())])
db.create_table("test", schema=schema)
def test_replace_index(tmp_path):
db = lancedb.connect(uri=tmp_path)