Skip to content

Commit

Permalink
Remove the ';' in SQL statement
Browse files Browse the repository at this point in the history
This will make ck server execute multiple SQLs in a single http request
and cause error.
Refs:
- ClickHouse/clickhouse-java#51
- apla/node-clickhouse#28
- https://blog.csdn.net/xiaomin13234038121/article/details/124367641
  • Loading branch information
crystaldust committed Jun 7, 2023
1 parent 0274119 commit 33386cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/GeoDistribution/DataSQLs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1208,7 +1208,7 @@ group by search_key__owner, search_key__repo,
dir_level2,email_domain,author_email)
group by search_key__owner, search_key__repo,
dir_level2,email_domain
order by contributor_count desc ;`;
order by contributor_count desc`;
}

// 给定(owner,repo,二级目录),给出该二级目录中,开发者email,提交量,个人提交时区数量
Expand Down

0 comments on commit 33386cd

Please sign in to comment.