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 b9a86a9 commit a99bb8dCopy full SHA for a99bb8d
airbyte-lib/airbyte_lib/caches/duckdb.py
@@ -4,6 +4,7 @@
4
5
from __future__ import annotations
6
7
+import warnings
8
from pathlib import Path
9
from textwrap import dedent, indent
10
from typing import cast
@@ -15,6 +16,14 @@
15
16
from airbyte_lib.telemetry import CacheTelemetryInfo
17
18
19
+# Suppress warnings from DuckDB about reflection on indices.
20
+# https://github.com/Mause/duckdb_engine/issues/905
21
+warnings.filterwarnings(
22
+ "ignore",
23
+ message="duckdb-engine doesn't yet support reflection on indices",
24
+)
25
+
26
27
class DuckDBCacheConfig(SQLCacheConfigBase, ParquetWriterConfig):
28
"""Configuration for the DuckDB cache.
29
0 commit comments