We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc7db7f commit 458ffc3Copy full SHA for 458ffc3
tests/fast/threading/test_module_state.py
@@ -26,17 +26,6 @@ def test_concurrent_instance_cache_access(tmp_path):
26
assert result[0] >= 1
27
28
29
-def test_concurrent_import_cache_access():
30
- for _i in range(20):
31
- with duckdb.connect(f":memory:{get_ident()}") as conn:
32
- conn.execute("CREATE TABLE test AS SELECT range as x FROM range(5)")
33
- df = conn.fetchdf()
34
- assert len(df) == 5
35
-
36
- result = conn.execute("SELECT range as x FROM range(3)").fetchnumpy()
37
- assert "x" in result
38
39
40
def test_environment_detection():
41
version = duckdb.__formatted_python_version__
42
interactive = duckdb.__interactive__
0 commit comments