feat: add option for hash algorithms (#35621)

Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com>
This commit is contained in:
Daniel Vaz Gaspar
2025-12-09 16:59:07 +00:00
committed by GitHub
parent 8d7c83419c
commit bb22eb1ca8
36 changed files with 1032 additions and 166 deletions

View File

@@ -162,8 +162,9 @@ def test_get_schema_from_engine_params() -> None:
@pytest.mark.parametrize(
"column_name,expected_result",
[
("time", "time_07cc69"),
("count", "count_e2942a"),
# SHA-256 hash suffix (first 6 chars) with default HASH_ALGORITHM
("time", "time_336074"),
("count", "count_6c3549"),
],
)
def test_connect_make_label_compatible(column_name: str, expected_result: str) -> None: