We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f841e5 commit 4074ca4Copy full SHA for 4074ca4
bigframes/operations/output_schemas.py
@@ -49,8 +49,7 @@ def parse_sql_type(sql: str) -> pa.DataType:
49
50
if sql.startswith("STRUCT<") and sql.endswith(">"):
51
inner_fields = parse_sql_fields(sql[len("STRUCT<") : -1])
52
-
53
- return pa.struct(sorted(inner_fields, key=lambda f:f.name))
+ return pa.struct(sorted(inner_fields, key=lambda f: f.name))
54
55
raise ValueError(f"Unsupported SQL type: {sql}")
56
0 commit comments