duckrun 0.1.5.3__tar.gz → 0.1.5.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/PKG-INFO +1 -1
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun/core.py +3 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun.egg-info/PKG-INFO +1 -1
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/pyproject.toml +1 -1
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/LICENSE +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/README.md +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun/__init__.py +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun.egg-info/SOURCES.txt +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun.egg-info/dependency_links.txt +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun.egg-info/requires.txt +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/duckrun.egg-info/top_level.txt +0 -0
- {duckrun-0.1.5.3 → duckrun-0.1.5.4}/setup.cfg +0 -0
@@ -162,6 +162,9 @@ class Duckrun:
|
|
162
162
|
# Format: "ws/lh.lakehouse" (schema will use default)
|
163
163
|
workspace, lakehouse_name = parts
|
164
164
|
# schema already has default value "dbo"
|
165
|
+
print(f"ℹ️ No schema specified. Using default schema 'dbo'.")
|
166
|
+
print(f" To specify a schema, use: {workspace}/{lakehouse_name}.lakehouse/schema")
|
167
|
+
print(f" Note: Scanning all schemas will be added in a future update.\n")
|
165
168
|
elif len(parts) == 3:
|
166
169
|
# Format: "ws/lh.lakehouse/schema"
|
167
170
|
workspace, lakehouse_name, schema = parts
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|