Skip to content
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

Fix: Resolve issues in Postgres name normalization when names are >63 characters #359

Merged
merged 14 commits into from
Sep 9, 2024
3 changes: 2 additions & 1 deletion tests/integration_tests/test_source_test_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def expected_test_stream_data() -> dict[str, list[dict[str, str | int]]]:
},
],
"always-empty-stream": [],
"primary-key-with-dot": [],
aaronsteers marked this conversation as resolved.
Show resolved Hide resolved
}


Expand Down Expand Up @@ -325,7 +326,7 @@ def test_file_write_and_cleanup() -> None:

# There are three streams, but only two of them have data:
assert (
len(list(Path(temp_dir_2).glob("*.jsonl.gz"))) == 2
len(list(Path(temp_dir_2).glob("*.jsonl.gz"))) == 3
), "Expected files to exist"

with suppress(Exception):
Expand Down
Loading