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 3a3d1b2 commit 7f9b201Copy full SHA for 7f9b201
src/amp/__init__.py
@@ -1,5 +1,12 @@
1
"""Amp - Flight SQL client with comprehensive data loading capabilities."""
2
3
+import os
4
+
5
+# Suppress PyArrow acero alignment warnings before any imports
6
+# These warnings are informational and cannot be controlled via logging
7
+# Valid values: ignore, warn, reallocate, error
8
+os.environ.setdefault('ACERO_ALIGNMENT_HANDLING', 'ignore')
9
10
from amp.client import Client, QueryBuilder
11
from amp.registry import RegistryClient
12
0 commit comments