Skip to content

Commit d5e6a5f

Browse files
committed
style: build_fly_table
1 parent bb53f89 commit d5e6a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastapi_esql/utils/sqlizer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def build_fly_table(
274274
f"SELECT {', '.join(f'{cls.sqlize_value(d.get(f))} {f}' for f in fields)}"
275275
for d in dicts
276276
]
277-
values = " " + "\n UNION ".join(rows)
277+
values = "\n UNION\n ".join(rows)
278278
table = "fly_table"
279279

280280
sql = f"""

0 commit comments

Comments
 (0)