This is an automated email from the ASF dual-hosted git repository.

asf-ci-deploy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-site.git


The following commit(s) were added to refs/heads/main by this push:
     new e54790a1e Website deployed from 
calcite@343132ecc98779e55fbaf5c75d3d9e349dd6a8c7
e54790a1e is described below

commit e54790a1e24a2c19358d22ca51f3208698df1e63
Author: asfgit <[email protected]>
AuthorDate: Tue Nov 21 00:23:00 2023 +0000

    Website deployed from calcite@343132ecc98779e55fbaf5c75d3d9e349dd6a8c7
---
 docs/howto.html | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/docs/howto.html b/docs/howto.html
index 897f848a2..019b13ae9 100644
--- a/docs/howto.html
+++ b/docs/howto.html
@@ -898,14 +898,15 @@ a fix version assigned (most likely the version we are
 just about to release)</li>
 </ul>
 
-<p>Generate a list of contributors by running the following (changing the
-date literal to the date of the previous release):</p>
-<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code># distinct authors
-./sqlsh "select distinct author from git_commits where author_timestamp &gt; 
DATE '2021-06-03' order by 1"
+<p>Generate a list of contributors:</p>
+<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code># Commits since 1.35
+range=calcite-1.35.0..HEAD
+# distinct authors
+git log --abbrev-commit --pretty=format:'%aN,' $range | sort -u
 # most prolific authors
-./sqlsh "select author, count(*) from git_commits where commit_timestamp &gt; 
DATE '2021-06-03' group by author order by 2"
-# number of commits, distinct authors, and JIRA cases
-./sqlsh "select count(*) as c, count(distinct author) as a, count(*) filter 
(where message like '%CALCITE-%') as j from git_commits where commit_timestamp 
&gt; DATE '2021-06-03' order by 1"
+git log --abbrev-commit --pretty=format:'%aN' $range | sort | uniq -c | sort 
-nr
+# number of JIRA cases
+git log --abbrev-commit --pretty=format:'%f' $range | awk -F- '$1 == "CALCITE" 
{print $2}' | sort -u | wc
 </code></pre></div></div>
 
 <p>Smoke-test <code class="language-plaintext 
highlighter-rouge">sqlline</code> with Spatial and Oracle function tables:</p>

Reply via email to