-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Markus Cozowicz
committed
Jun 10, 2024
1 parent
5289488
commit 01f708b
Showing
11 changed files
with
163 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,45 @@ | ||
from sempy_labs.directlake._directlake_schema_compare import ( | ||
direct_lake_schema_compare | ||
) | ||
from sempy_labs.directlake._directlake_schema_sync import ( | ||
direct_lake_schema_sync | ||
) | ||
from sempy_labs.directlake._directlake_schema_compare import direct_lake_schema_compare | ||
from sempy_labs.directlake._directlake_schema_sync import direct_lake_schema_sync | ||
from sempy_labs.directlake._fallback import ( | ||
check_fallback_reason, | ||
) | ||
from sempy_labs.directlake._get_directlake_lakehouse import ( | ||
get_direct_lake_lakehouse | ||
) | ||
from sempy_labs.directlake._get_shared_expression import ( | ||
get_shared_expression | ||
) | ||
from sempy_labs.directlake._get_directlake_lakehouse import get_direct_lake_lakehouse | ||
from sempy_labs.directlake._get_shared_expression import get_shared_expression | ||
from sempy_labs.directlake._guardrails import ( | ||
get_direct_lake_guardrails, | ||
get_sku_size, | ||
get_directlake_guardrails_for_sku | ||
get_directlake_guardrails_for_sku, | ||
) | ||
from sempy_labs.directlake._list_directlake_model_calc_tables import ( | ||
list_direct_lake_model_calc_tables | ||
list_direct_lake_model_calc_tables, | ||
) | ||
from sempy_labs.directlake._show_unsupported_directlake_objects import ( | ||
show_unsupported_direct_lake_objects | ||
show_unsupported_direct_lake_objects, | ||
) | ||
from sempy_labs.directlake._update_directlake_model_lakehouse_connection import ( | ||
update_direct_lake_model_lakehouse_connection | ||
update_direct_lake_model_lakehouse_connection, | ||
) | ||
from sempy_labs.directlake._update_directlake_partition_entity import ( | ||
update_direct_lake_partition_entity | ||
update_direct_lake_partition_entity, | ||
) | ||
from sempy_labs.directlake._warm_cache import ( | ||
warm_direct_lake_cache_isresident, | ||
warm_direct_lake_cache_perspective | ||
warm_direct_lake_cache_perspective, | ||
) | ||
|
||
__all__ = [ | ||
direct_lake_schema_compare, | ||
direct_lake_schema_sync, | ||
check_fallback_reason, | ||
get_direct_lake_lakehouse, | ||
get_shared_expression, | ||
get_direct_lake_guardrails, | ||
get_sku_size, | ||
get_directlake_guardrails_for_sku, | ||
list_direct_lake_model_calc_tables, | ||
show_unsupported_direct_lake_objects, | ||
update_direct_lake_model_lakehouse_connection, | ||
update_direct_lake_partition_entity, | ||
warm_direct_lake_cache_isresident, | ||
warm_direct_lake_cache_perspective | ||
] | ||
"direct_lake_schema_compare", | ||
"direct_lake_schema_sync", | ||
"check_fallback_reason", | ||
"get_direct_lake_lakehouse", | ||
"get_shared_expression", | ||
"get_direct_lake_guardrails", | ||
"get_sku_size", | ||
"get_directlake_guardrails_for_sku", | ||
"list_direct_lake_model_calc_tables", | ||
"show_unsupported_direct_lake_objects", | ||
"update_direct_lake_model_lakehouse_connection", | ||
"update_direct_lake_partition_entity", | ||
"warm_direct_lake_cache_isresident", | ||
"warm_direct_lake_cache_perspective", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
from sempy_labs.lakehouse._get_lakehouse_columns import ( | ||
get_lakehouse_columns | ||
) | ||
from sempy_labs.lakehouse._get_lakehouse_tables import ( | ||
get_lakehouse_tables | ||
) | ||
from sempy_labs.lakehouse._get_lakehouse_columns import get_lakehouse_columns | ||
from sempy_labs.lakehouse._get_lakehouse_tables import get_lakehouse_tables | ||
from sempy_labs.lakehouse._lakehouse import ( | ||
lakehouse_attached, | ||
optimize_lakehouse_tables | ||
optimize_lakehouse_tables, | ||
) | ||
|
||
from sempy_labs.lakehouse._shortcuts import ( | ||
list_shortcuts, | ||
#create_shortcut, | ||
# create_shortcut, | ||
create_shortcut_onelake, | ||
delete_shortcut | ||
delete_shortcut, | ||
) | ||
|
||
__all__ = [ | ||
get_lakehouse_columns, | ||
get_lakehouse_tables, | ||
lakehouse_attached, | ||
optimize_lakehouse_tables, | ||
list_shortcuts, | ||
#create_shortcut, | ||
create_shortcut_onelake, | ||
delete_shortcut | ||
] | ||
"get_lakehouse_columns", | ||
"get_lakehouse_tables", | ||
"lakehouse_attached", | ||
"optimize_lakehouse_tables", | ||
"list_shortcuts", | ||
# create_shortcut, | ||
"create_shortcut_onelake", | ||
"delete_shortcut", | ||
] |
Oops, something went wrong.