-
Notifications
You must be signed in to change notification settings - Fork 55
fix: tables schema command replace manual _delta_log JSON parsing with DeltaTable.schema() from the deltalake library #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
c22f70e
c0dd71b
f0327bc
746e8f6
ca07e17
0d18818
baaba5d
8221723
1012572
3963efa
34c7141
bce23dc
a4c4ba7
55c3515
f206e12
4cda700
c954a2a
0ba9da9
ed43c39
c015864
b6da0e7
7996c2e
6d4ac61
ed998af
18df707
ceba9fc
ee79ee5
d0a7e23
82c732b
b7d0831
3761717
df0360b
eebb6f2
12bfa45
0fca49f
93b4bef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| kind: fixed | ||
| body: Refactor `fab tables schema` to use the `deltalake` Python library for schema extraction via ABFSS URI instead of manually parsing Delta log commit files | ||
| time: 2026-04-30T13:05:58.364670843Z | ||
| custom: | ||
| Author: pkontek | ||
| AuthorLink: https://github.com/pkontek |
|
pkontek marked this conversation as resolved.
pkontek marked this conversation as resolved.
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,8 +19,7 @@ | |
| ) | ||
|
|
||
| API_ENDPOINT_POWER_BI = ( | ||
| validate_and_get_env_variable( | ||
| "FAB_API_ENDPOINT_POWER_BI", "api.powerbi.com") | ||
| validate_and_get_env_variable("FAB_API_ENDPOINT_POWER_BI", "api.powerbi.com") | ||
| + "/v1.0/myorg" | ||
| ) | ||
|
|
||
|
|
@@ -264,7 +263,7 @@ | |
| ERROR_INVALID_OPERATION = "InvalidOperation" | ||
| ERROR_INVALID_PATH = "InvalidPath" | ||
| ERROR_INVALID_PROPERTY = "InvalidProperty" | ||
| ERROR_INVALID_DETLA_TABLE = "InvalidDeltaTable" | ||
| ERROR_INVALID_DELTA_TABLE = "InvalidDeltaTable" | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is fab_constant considered a stable/public interface that external tooling imports directly? If so, a deprecated alias makes sense. If it's internal-only, the sweep was clean and no alias is needed.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ayeshurun, what do you think about that?
pkontek marked this conversation as resolved.
|
||
| ERROR_INVALID_QUERY_FIELDS = "InvalidQueryFields" | ||
| ERROR_INVALID_WORKSPACE_TYPE = "InvalidWorkspaceType" | ||
| ERROR_INVALID_QUERY = "InvalidQuery" | ||
|
|
@@ -351,4 +350,3 @@ | |
|
|
||
| # Invalid query parameters for set command across all fabric resources | ||
| SET_COMMAND_INVALID_QUERIES = ["id", "type", "workspaceId", "folderId"] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.