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

@@ -31,7 +31,8 @@ from tests.unit_tests.fixtures.common import dttm # noqa: F401
@pytest.mark.parametrize(
"column_name,expected_result",
[
("a" * 129, "b325dc1c6f5e7a2b7cf465b9feab7948"),
# SHA-256 hash of 129 'a' characters with default HASH_ALGORITHM
("a" * 129, "c12cb024a2e5551cca0e08fce8f1c5e314555cc3fef6329ee994a3db752166ae"),
("snake_label", "snake_label"),
("camelLabel", "camelLabel"),
],