Skip to content

Commit

Permalink
Refine
Browse files Browse the repository at this point in the history
  • Loading branch information
qinxuye committed Sep 24, 2023
1 parent 5779464 commit 5f71b59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xorbits_sql/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,9 @@ def aggregate(
for p in post_processes:
p(result)
locs = [
i for i, n in enumerate(result.dtypes.index) if not n.startswith("__")
i
for i, n in enumerate(result.dtypes.index)
if not n.startswith("__op_") and not n.startswith("__agg_")
]
result = result.iloc[:, locs]

Expand Down

0 comments on commit 5f71b59

Please sign in to comment.