Skip to content
Snippets Groups Projects
Commit 557e4f7c authored by vlorentz's avatar vlorentz
Browse files

generate_subdataset: Fix crash on excessively large release.message values

parent 30c5c133
No related branches found
No related tags found
No related merge requests found
......@@ -273,7 +273,7 @@ def generate_subdataset(
# Temporary fix: Athena no longer supports >32MB rows, but some of
# the objects were added to the dataset before this restriction was
# in place.
if table == "revision":
if table in ("revision", "release"):
ctas_query += " AND length(message) < 100000"
query(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment