Skip to content

Commit

Permalink
chore: update contributors (#545)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <[email protected]>
  • Loading branch information
skyzh committed Mar 3, 2022
1 parent 9da398f commit 53ccdf9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/executor/internal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ impl InternalTableExecutor {
}

// TODO: find a better way to maintain the contributors list instead of hard-coding.
// update this funciton with `curl https://api.github.com/repos/risinglightdb/risinglight/contributors | jq ".[].login"`
fn contributors() -> DataChunk {
let contributors = vec![
"skyzh",
Expand All @@ -34,15 +35,16 @@ fn contributors() -> DataChunk {
"pleiadesian",
"TennyZhuang",
"st1page",
"likg227",
"xxchan",
"arkbriar",
"Fedomn",
"likg227",
"zzl200012",
"Sunt-ing",
"alissa-tung",
"ludics",
"alissa-tung",
"Sunt-ing",
"tabVersion",
"WindowsXp-Beta",
"yingjunwu",
"xiaoyong-z",
"PsiACE",
Expand All @@ -52,7 +54,7 @@ fn contributors() -> DataChunk {
"nanderstabel",
];
[ArrayImpl::Utf8(Utf8Array::from_iter(
contributors.iter().map(|s| Some(*s)),
contributors.iter().map(|s| Some(*s)).sorted(),
))]
.into_iter()
.collect()
Expand Down

0 comments on commit 53ccdf9

Please sign in to comment.