You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jc...@apache.org on 2016/09/22 12:07:04 UTC

svn commit: r1761918 - in /calcite/site: docs/ downloads/ news/ news/2014/06/27/release-0.8.0-incubating/ news/2014/08/19/release-0.9.0-incubating/ news/2014/10/02/release-0.9.1-incubating/ news/2014/11/05/release-0.9.2-incubating/ news/2015/01/31/rele...

Author: jcamacho
Date: Thu Sep 22 12:07:04 2016
New Revision: 1761918

URL: http://svn.apache.org/viewvc?rev=1761918&view=rev
Log:
Regenerate website after 1.9.0 release

Added:
    calcite/site/news/2016/09/
    calcite/site/news/2016/09/22/
    calcite/site/news/2016/09/22/release-1.9.0/
    calcite/site/news/2016/09/22/release-1.9.0/index.html
Modified:
    calcite/site/docs/history.html
    calcite/site/docs/howto.html
    calcite/site/downloads/index.html
    calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html
    calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html
    calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html
    calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html
    calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html
    calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html
    calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html
    calcite/site/news/2015/04/24/new-committers/index.html
    calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html
    calcite/site/news/2015/06/05/algebra-builder/index.html
    calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html
    calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html
    calcite/site/news/2015/10/22/calcite-graduates/index.html
    calcite/site/news/2015/11/08/new-committers/index.html
    calcite/site/news/2015/11/10/release-1.5.0/index.html
    calcite/site/news/2016/01/22/release-1.6.0/index.html
    calcite/site/news/2016/02/17/elser-pmc/index.html
    calcite/site/news/2016/02/17/streaming-sql-talk/index.html
    calcite/site/news/2016/03/22/cassandra-adapter/index.html
    calcite/site/news/2016/03/22/release-1.7.0/index.html
    calcite/site/news/2016/06/13/release-1.8.0/index.html
    calcite/site/news/index.html
    calcite/site/news/releases/index.html

Modified: calcite/site/docs/history.html
URL: http://svn.apache.org/viewvc/calcite/site/docs/history.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/docs/history.html (original)
+++ calcite/site/docs/history.html Thu Sep 22 12:07:04 2016
@@ -882,7 +882,7 @@
 Downloads are available on the
 <a href="/downloads/">downloads page</a>.</p>
 
-<h2 id="v1-9-0"><a href="https://github.com/apache/calcite/releases/tag/calcite-1.9.0">1.9.0</a> / under development</h2>
+<h2 id="v1-9-0"><a href="https://github.com/apache/calcite/releases/tag/calcite-1.9.0">1.9.0</a> / 2016-09-22</h2>
 
 <p>This release includes extensions and fixes for the Druid adapter. New features were
 added, such as the capability to
@@ -892,7 +892,7 @@ adapter. It is worth mentioning that mos
 which demonstrates the good reception of the adapter by that community.</p>
 
 <p>We have added new SQL features too, e.g.,
-<a href="https://issues.apache.org/jira/browse/CALCITE-1309">support for LATERAL TABLE</a>.
+<a href="https://issues.apache.org/jira/browse/CALCITE-1309">support for <code class="highlighter-rouge">LATERAL TABLE</code></a>.
 There are multiple interesting extensions to the planner rules that should contribute to
 obtain better plans, such as
 <a href="https://issues.apache.org/jira/browse/CALCITE-1288">avoiding doing the same join twice</a>

Modified: calcite/site/docs/howto.html
URL: http://svn.apache.org/viewvc/calcite/site/docs/howto.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/docs/howto.html (original)
+++ calcite/site/docs/howto.html Thu Sep 22 12:07:04 2016
@@ -928,8 +928,8 @@ and Java (JDK 1.7 or later, 1.8 preferre
 <code class="highlighter-rouge">cd</code> to the root directory of the unpacked source,
 then build using maven:</p>
 
-<figure class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="gp">$ </span>tar xvfz calcite-1.8.0-source.tar.gz
-<span class="gp">$ </span><span class="nb">cd </span>calcite-1.8.0
+<figure class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="gp">$ </span>tar xvfz calcite-1.9.0-source.tar.gz
+<span class="gp">$ </span><span class="nb">cd </span>calcite-1.9.0
 <span class="gp">$ </span>mvn install</code></pre></figure>
 
 <p><a href="#running-tests">Running tests</a> describes how to run more or fewer
@@ -1454,8 +1454,8 @@ svn ci</code></pre></figure>
 git tag
 
 <span class="c"># If the tag exists, delete it locally and remotely</span>
-git tag -d apache-calcite-X.Y.Z
-git push origin :refs/tags/apache-calcite-X.Y.Z
+git tag -d calcite-X.Y.Z
+git push origin :refs/tags/calcite-X.Y.Z
 
 <span class="c"># Remove modified files</span>
 mvn release:clean

Modified: calcite/site/downloads/index.html
URL: http://svn.apache.org/viewvc/calcite/site/downloads/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/downloads/index.html (original)
+++ calcite/site/downloads/index.html Thu Sep 22 12:07:04 2016
@@ -101,10 +101,16 @@
   </thead>
   <tbody>
     <tr>
+      <td style="text-align: left"><a href="/docs/history.html#v1-9-0">1.9.0</a></td>
+      <td style="text-align: left">22 Sep 2016</td>
+      <td style="text-align: left"><a href="https://github.com/apache/calcite/commit/08c56b1">08c56b1</a></td>
+      <td style="text-align: left"><a href="http://www.apache.org/dyn/closer.lua?filename=calcite/apache-calcite-1.9.0/apache-calcite-1.9.0-src.tar.gz&amp;action=download">tar</a> (<a href="https://www.apache.org/dist/calcite/apache-calcite-1.9.0/apache-calcite-1.9.0-src.tar.gz.mds">digest</a> <a href="https://www.apache.org/dist/calcite/apache-calcite-1.9.0/apache-calcite-1.9.0-src.tar.gz.asc">pgp</a>) <br /> <a href="http://www.apache.org/dyn/closer.lua?filename=calcite/apache-calcite-1.9.0/apache-calcite-1.9.0-src.zip&amp;action=download">zip</a> (<a href="https://www.apache.org/dist/calcite/apache-calcite-1.9.0/apache-calcite-1.9.0-src.zip.mds">digest</a> <a href="https://www.apache.org/dist/calcite/apache-calcite-1.9.0/apache-calcite-1.9.0-src.zip.asc">pgp</a>)</td>
+    </tr>
+    <tr>
       <td style="text-align: left"><a href="/docs/history.html#v1-8-0">1.8.0</a></td>
       <td style="text-align: left">13 Jun 2016</td>
       <td style="text-align: left"><a href="https://github.com/apache/calcite/commit/aeb6bf1">aeb6bf1</a></td>
-      <td style="text-align: left"><a href="http://www.apache.org/dyn/closer.lua?filename=calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.tar.gz&amp;action=download">tar</a> (<a href="https://www.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.tar.gz.md5">digest</a> <a href="https://www.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.tar.gz.asc">pgp</a>) <br /> <a href="http://www.apache.org/dyn/closer.lua?filename=calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.zip&amp;action=download">zip</a> (<a href="https://www.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.zip.md5">digest</a> <a href="https://www.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.zip.asc">pgp</a>)</td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.tar.gz">tar</a> (<a href="https://archive.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.tar.gz.md5">digest</a> <a href="https://archive.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.tar.gz.asc">pgp</a>) <br /> <a href="http://archive.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.zip">zip</a> (<a href="https://archive.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.zip.md5">digest</a> <a href="https://archive.apache.org/dist/calcite/apache-calcite-1.8.0/apache-calcite-1.8.0-src.zip.asc">pgp</a>)</td>
     </tr>
     <tr>
       <td style="text-align: left"><a href="/docs/history.html#v1-7-0">1.7.0</a></td>
@@ -206,7 +212,7 @@ succeed.</p>
   <span class="nt">&lt;dependency&gt;</span>
     <span class="nt">&lt;groupId&gt;</span>org.apache.calcite<span class="nt">&lt;/groupId&gt;</span>
     <span class="nt">&lt;artifactId&gt;</span>calcite-core<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.8.0<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.9.0<span class="nt">&lt;/version&gt;</span>
   <span class="nt">&lt;/dependency&gt;</span>
 <span class="nt">&lt;/dependencies&gt;</span></code></pre></figure>
 

Modified: calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html (original)
+++ calcite/site/news/2014/06/27/release-0.8.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -189,6 +191,10 @@ new utility, <code class="highlighter-ro
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -204,10 +210,6 @@ new utility, <code class="highlighter-ro
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html (original)
+++ calcite/site/news/2014/08/19/release-0.9.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -187,6 +189,10 @@
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -202,10 +208,6 @@
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html (original)
+++ calcite/site/news/2014/10/02/release-0.9.1-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -187,6 +189,10 @@
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -202,10 +208,6 @@
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html (original)
+++ calcite/site/news/2014/11/05/release-0.9.2-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -190,6 +192,10 @@ before you move on to 1.0.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -205,10 +211,6 @@ before you move on to 1.0.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html (original)
+++ calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -200,6 +202,10 @@ and fixes about 30 bugs.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -215,10 +221,6 @@ and fixes about 30 bugs.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html (original)
+++ calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -199,6 +201,10 @@ calling constructors directly.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -214,10 +220,6 @@ calling constructors directly.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html (original)
+++ calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -199,6 +201,10 @@ improve implicit and explicit conversion
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -214,10 +220,6 @@ improve implicit and explicit conversion
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/04/24/new-committers/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/04/24/new-committers/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/04/24/new-committers/index.html (original)
+++ calcite/site/news/2015/04/24/new-committers/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -193,6 +195,10 @@ committers for their work on Calcite. We
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -208,10 +214,6 @@ committers for their work on Calcite. We
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html (original)
+++ calcite/site/news/2015/05/30/release-1.3.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -191,6 +193,10 @@ and various improvements to Avatica.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -206,10 +212,6 @@ and various improvements to Avatica.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/06/05/algebra-builder/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/06/05/algebra-builder/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/06/05/algebra-builder/index.html (original)
+++ calcite/site/news/2015/06/05/algebra-builder/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -238,6 +240,10 @@ extensive set of query-optimization rule
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -253,10 +259,6 @@ extensive set of query-optimization rule
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html (original)
+++ calcite/site/news/2015/07/31/xldb-best-lightning-talk/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -198,6 +200,10 @@ and <a href="https://www.youtube.com/wat
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -213,10 +219,6 @@ and <a href="https://www.youtube.com/wat
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html (original)
+++ calcite/site/news/2015/09/02/release-1.4.0-incubating/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -197,6 +199,10 @@ so that you can easily create relational
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -212,10 +218,6 @@ so that you can easily create relational
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="current">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/10/22/calcite-graduates/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/10/22/calcite-graduates/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/10/22/calcite-graduates/index.html (original)
+++ calcite/site/news/2015/10/22/calcite-graduates/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -219,6 +221,10 @@ celebrated with a graduation cake.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -234,10 +240,6 @@ celebrated with a graduation cake.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/11/08/new-committers/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/11/08/new-committers/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/11/08/new-committers/index.html (original)
+++ calcite/site/news/2015/11/08/new-committers/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -190,6 +192,10 @@ committers for their work on Calcite. We
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -205,10 +211,6 @@ committers for their work on Calcite. We
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2015/11/10/release-1.5.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2015/11/10/release-1.5.0/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2015/11/10/release-1.5.0/index.html (original)
+++ calcite/site/news/2015/11/10/release-1.5.0/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -191,6 +193,10 @@
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -206,10 +212,6 @@
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2016/01/22/release-1.6.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/01/22/release-1.6.0/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2016/01/22/release-1.6.0/index.html (original)
+++ calcite/site/news/2016/01/22/release-1.6.0/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -217,6 +219,10 @@ further tune the metadata layer.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -232,10 +238,6 @@ further tune the metadata layer.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2016/02/17/elser-pmc/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/02/17/elser-pmc/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2016/02/17/elser-pmc/index.html (original)
+++ calcite/site/news/2016/02/17/elser-pmc/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -190,6 +192,10 @@ not least in discussing <a href="https:/
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -205,10 +211,6 @@ not least in discussing <a href="https:/
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2016/02/17/streaming-sql-talk/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/02/17/streaming-sql-talk/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2016/02/17/streaming-sql-talk/index.html (original)
+++ calcite/site/news/2016/02/17/streaming-sql-talk/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -199,6 +201,10 @@ and
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -214,10 +220,6 @@ and
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2016/03/22/cassandra-adapter/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/03/22/cassandra-adapter/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2016/03/22/cassandra-adapter/index.html (original)
+++ calcite/site/news/2016/03/22/cassandra-adapter/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -200,6 +202,10 @@ for CSV and JSON files, and JDBC data so
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -215,10 +221,6 @@ for CSV and JSON files, and JDBC data so
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2016/03/22/release-1.7.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/03/22/release-1.7.0/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2016/03/22/release-1.7.0/index.html (original)
+++ calcite/site/news/2016/03/22/release-1.7.0/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -222,6 +224,10 @@ to SLF4J’s <code class="highlighter
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -237,10 +243,6 @@ to SLF4J’s <code class="highlighter
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/2016/06/13/release-1.8.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/06/13/release-1.8.0/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/2016/06/13/release-1.8.0/index.html (original)
+++ calcite/site/news/2016/06/13/release-1.8.0/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -212,6 +214,10 @@ planner rules and APIs.</p>
     <h4>Recent Releases</h4>
     <ul>
       
+      <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
       <li class="current">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
@@ -228,10 +234,6 @@ planner rules and APIs.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Added: calcite/site/news/2016/09/22/release-1.9.0/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/2016/09/22/release-1.9.0/index.html?rev=1761918&view=auto
==============================================================================
--- calcite/site/news/2016/09/22/release-1.9.0/index.html (added)
+++ calcite/site/news/2016/09/22/release-1.9.0/index.html Thu Sep 22 12:07:04 2016
@@ -0,0 +1,334 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+<head>
+  <meta charset="UTF-8">
+  <title>Release 1.9.0</title>
+  <meta name="viewport" content="width=device-width,initial-scale=1">
+  <meta name="generator" content="Jekyll v3.0.3">
+  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
+  <link rel="stylesheet" href="/css/screen.css">
+  <link rel="icon" type="image/x-icon" href="/favicon.ico">
+  <!--[if lt IE 9]>
+  <script src="/js/html5shiv.min.js"></script>
+  <script src="/js/respond.min.js"></script>
+  <![endif]-->
+</head>
+
+
+<body class="wrap">
+  <header role="banner">
+  <nav class="mobile-nav show-on-mobiles">
+    <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/downloads/">Download</a>
+  </li>
+  <li class="">
+    <a href="/community/">Community</a>
+  </li>
+  <li class="">
+    <a href="/develop/">Develop</a>
+  </li>
+  <li class="current">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/docs/">Docs</a>
+  </li>
+</ul>
+
+  </nav>
+  <div class="grid">
+    <div class="unit one-third center-on-mobiles">
+      <h1>
+        <a href="/">
+          <span class="sr-only">Apache Calcite</span>
+          <img src="/img/logo.png" width="226" height="140" alt="Calcite Logo">
+        </a>
+      </h1>
+    </div>
+    <nav class="main-nav unit two-thirds hide-on-mobiles">
+      <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/downloads/">Download</a>
+  </li>
+  <li class="">
+    <a href="/community/">Community</a>
+  </li>
+  <li class="">
+    <a href="/develop/">Develop</a>
+  </li>
+  <li class="current">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/docs/">Docs</a>
+  </li>
+</ul>
+
+    </nav>
+  </div>
+</header>
+
+
+    <section class="news">
+    <div class="grid">
+
+      <div class="docs-nav-mobile unit whole show-on-mobiles">
+  <select onchange="if (this.value) window.location.href=this.value">
+    <option value="">Navigate the blog…</option>
+    <option value="/news/">Home</option>
+    <optgroup label="v1.x">
+      
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
+      <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
+      
+      <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
+      
+      <option value="/news/2016/03/22/release-1.7.0/">Release 1.7.0</option>
+      
+      <option value="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</option>
+      
+      <option value="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</option>
+      
+      <option value="/news/2016/01/22/release-1.6.0/">Release 1.6.0</option>
+      
+      <option value="/news/2015/11/10/release-1.5.0/">Release 1.5.0</option>
+      
+      <option value="/news/2015/11/08/new-committers/">Calcite adds 2 committers</option>
+      
+      <option value="/news/2015/10/22/calcite-graduates/">Calcite Graduates</option>
+      
+      <option value="/news/2015/09/02/release-1.4.0-incubating/">Release 1.4.0 Incubating</option>
+      
+      <option value="/news/2015/07/31/xldb-best-lightning-talk/">XLDB 2015 best lightning talk</option>
+      
+      <option value="/news/2015/06/05/algebra-builder/">Algebra builder</option>
+      
+      <option value="/news/2015/05/30/release-1.3.0-incubating/">Release 1.3.0 Incubating</option>
+      
+      <option value="/news/2015/04/24/new-committers/">Calcite adds 5 committers</option>
+      
+      <option value="/news/2015/04/07/release-1.2.0-incubating/">Release 1.2.0 Incubating</option>
+      
+      <option value="/news/2015/03/13/release-1.1.0-incubating/">Release 1.1.0 Incubating</option>
+      
+      <option value="/news/2015/01/31/release-1.0.0-incubating/">Release 1.0.0 Incubating</option>
+      
+      <option value="/news/2014/11/05/release-0.9.2-incubating/">Release 0.9.2 Incubating</option>
+      
+      <option value="/news/2014/10/02/release-0.9.1-incubating/">Release 0.9.1 Incubating</option>
+      
+      <option value="/news/2014/08/19/release-0.9.0-incubating/">Release 0.9.0 Incubating</option>
+      
+      <option value="/news/2014/06/27/release-0.8.0-incubating/">Release 0.8.0 Incubating</option>
+      
+    </optgroup>
+  </select>
+</div>
+
+
+      <div class="unit four-fifths">
+        <article>
+  <h2>
+    Release 1.9.0
+    <a href="/news/2016/09/22/release-1.9.0/" class="permalink" title="Permalink">∞</a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      22 Sep 2016
+    </span>
+    
+    
+    
+    <a href="http://github.com/jcamachor" class="post-author">
+      <img src="http://github.com/jcamachor.png"
+           class="avatar" alt="jcamacho avatar"
+           width="24" height="24">
+      jcamacho
+    </a>
+  </div>
+  <div class="post-content">
+    <!--
+
+-->
+
+<p>The <a href="">Apache Calcite PMC</a>
+is pleased to announce
+<a href="/docs/history.html#v-1-9-0">Apache Calcite release 1.9.0</a>.</p>
+
+<p>This release includes extensions and fixes for the Druid adapter. New features were
+added, such as the capability to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1357">recognize and translate Timeseries and TopN Druid queries</a>.
+Moreover, this release contains multiple bug fixes over the initial implementation of the
+adapter. It is worth mentioning that most of these fixes were contributed by Druid developers,
+which demonstrates the good reception of the adapter by that community.</p>
+
+<p>We have added new SQL features too, e.g.,
+<a href="https://issues.apache.org/jira/browse/CALCITE-1309">support for <code class="highlighter-rouge">LATERAL TABLE</code></a>.
+There are multiple interesting extensions to the planner rules that should contribute to
+obtain better plans, such as
+<a href="https://issues.apache.org/jira/browse/CALCITE-1288">avoiding doing the same join twice</a>
+in the presence of <code class="highlighter-rouge">COUNT DISTINCT</code>, or being able to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1220">simplify the expressions</a>
+in the plan further. In addition, we implemented a rule to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1334">convert predicates on <code class="highlighter-rouge">EXTRACT</code> function calls into date ranges</a>.
+The rule is not specific to Druid; however, in principle, it will be useful to identify
+filter conditions on the time dimension of Druid data sources.</p>
+
+<p>Finally, the release includes more than thirty bug-fixes, minor enhancements and internal
+changes to planner rules and APIs.</p>
+
+    
+    <p>See the <a href="/docs/history.html#v1-9-0">release notes</a>;
+      <a href="/downloads#source-releases">download</a> the release.</p>
+    
+  </div>
+</article>
+
+      </div>
+
+      <div class="unit one-fifth hide-on-mobiles">
+  <aside>
+    <ul>
+      <li class="">
+        <a href="/news/">All News</a>
+      </li>
+      <li class="">
+        <a href="/news/releases/">Calcite Releases</a>
+      </li>
+    </ul>
+    <h4>Recent Releases</h4>
+    <ul>
+      
+      <li class="current">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2016/03/22/release-1.7.0/">1.7.0</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2016/01/22/release-1.6.0/">1.6.0</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
+      </li>
+      
+    </ul>
+    <h4>Other News</h4>
+    <ul>
+        
+        <li class="">
+          <a href="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2016/02/17/streaming-sql-talk/">Streaming SQL in Samza</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2016/02/17/elser-pmc/">Calcite appoints Josh Elser to PMC</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2015/11/08/new-committers/">Calcite adds 2 committers</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2015/10/22/calcite-graduates/">Calcite Graduates</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2015/07/31/xldb-best-lightning-talk/">XLDB 2015 best lightning talk</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2015/06/05/algebra-builder/">Algebra builder</a>
+        </li>
+          
+        <li class="">
+          <a href="/news/2015/04/24/new-committers/">Calcite adds 5 committers</a>
+        </li>
+          
+    </ul>
+  </aside>
+</div>
+
+
+      <div class="clear"></div>
+
+    </div>
+  </section>
+
+
+  <footer role="contentinfo">
+  <div id="poweredby">
+    <a href="http://www.apache.org/">
+      <span class="sr-only">Apache</span>
+      <img src="/img/feather.png" width="190" height="77" alt="Apache Logo"></a>
+  </div>
+  <div id="copyright">
+  <p>The contents of this website are &copy;&nbsp;2016
+     <a href="https://www.apache.org/">Apache Software Foundation</a>
+     under the terms of
+     the <a href="https://www.apache.org/licenses/LICENSE-2.0.html">
+     Apache&nbsp;License&nbsp;v2</a>. Apache Calcite and its logo are
+     trademarks of the Apache Software Foundation.</p>
+  </div>
+</footer>
+
+  <script>
+  var anchorForId = function (id) {
+    var anchor = document.createElement("a");
+    anchor.className = "header-link";
+    anchor.href      = "#" + id;
+    anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
+    anchor.title = "Permalink";
+    return anchor;
+  };
+
+  var linkifyAnchors = function (level, containingElement) {
+    var headers = containingElement.getElementsByTagName("h" + level);
+    for (var h = 0; h < headers.length; h++) {
+      var header = headers[h];
+
+      if (typeof header.id !== "undefined" && header.id !== "") {
+        header.appendChild(anchorForId(header.id));
+      }
+    }
+  };
+
+  document.onreadystatechange = function () {
+    if (this.readyState === "complete") {
+      var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
+      if (!contentBlock) {
+        return;
+      }
+      for (var level = 1; level <= 6; level++) {
+        linkifyAnchors(level, contentBlock);
+      }
+    }
+  };
+</script>
+
+
+</body>
+</html>

Modified: calcite/site/news/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/index.html (original)
+++ calcite/site/news/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -139,6 +141,71 @@
   
 <article>
   <h2>
+    <a href="/news/2016/09/22/release-1.9.0/">
+      Release 1.9.0
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      22 Sep 2016
+    </span>
+    
+    
+    
+    <a href="http://github.com/jcamachor" class="post-author">
+      <img src="http://github.com/jcamachor.png"
+           class="avatar" alt="jcamacho avatar"
+           width="24" height="24">
+      jcamacho
+    </a>
+  </div>
+  <div class="post-content">
+    <!--
+
+-->
+
+<p>The <a href="">Apache Calcite PMC</a>
+is pleased to announce
+<a href="/docs/history.html#v-1-9-0">Apache Calcite release 1.9.0</a>.</p>
+
+<p>This release includes extensions and fixes for the Druid adapter. New features were
+added, such as the capability to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1357">recognize and translate Timeseries and TopN Druid queries</a>.
+Moreover, this release contains multiple bug fixes over the initial implementation of the
+adapter. It is worth mentioning that most of these fixes were contributed by Druid developers,
+which demonstrates the good reception of the adapter by that community.</p>
+
+<p>We have added new SQL features too, e.g.,
+<a href="https://issues.apache.org/jira/browse/CALCITE-1309">support for <code class="highlighter-rouge">LATERAL TABLE</code></a>.
+There are multiple interesting extensions to the planner rules that should contribute to
+obtain better plans, such as
+<a href="https://issues.apache.org/jira/browse/CALCITE-1288">avoiding doing the same join twice</a>
+in the presence of <code class="highlighter-rouge">COUNT DISTINCT</code>, or being able to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1220">simplify the expressions</a>
+in the plan further. In addition, we implemented a rule to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1334">convert predicates on <code class="highlighter-rouge">EXTRACT</code> function calls into date ranges</a>.
+The rule is not specific to Druid; however, in principle, it will be useful to identify
+filter conditions on the time dimension of Druid data sources.</p>
+
+<p>Finally, the release includes more than thirty bug-fixes, minor enhancements and internal
+changes to planner rules and APIs.</p>
+
+    
+    <p>See the <a href="/docs/history.html#v1-9-0">release notes</a>;
+      <a href="/downloads#source-releases">download</a> the release.</p>
+    
+  </div>
+</article>
+
+
+  
+<article>
+  <h2>
     <a href="/news/2016/06/13/release-1.8.0/">
       Release 1.8.0
     </a>
@@ -1305,6 +1372,10 @@ of the website.</p>
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -1320,10 +1391,6 @@ of the website.</p>
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>

Modified: calcite/site/news/releases/index.html
URL: http://svn.apache.org/viewvc/calcite/site/news/releases/index.html?rev=1761918&r1=1761917&r2=1761918&view=diff
==============================================================================
--- calcite/site/news/releases/index.html (original)
+++ calcite/site/news/releases/index.html Thu Sep 22 12:07:04 2016
@@ -85,6 +85,8 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2016/09/22/release-1.9.0/">Release 1.9.0</option>
+      
       <option value="/news/2016/06/13/release-1.8.0/">Release 1.8.0</option>
       
       <option value="/news/2016/03/22/cassandra-adapter/">Cassandra Adapter</option>
@@ -139,6 +141,71 @@
   
 <article>
   <h2>
+    <a href="/news/2016/09/22/release-1.9.0/">
+      Release 1.9.0
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      22 Sep 2016
+    </span>
+    
+    
+    
+    <a href="http://github.com/jcamachor" class="post-author">
+      <img src="http://github.com/jcamachor.png"
+           class="avatar" alt="jcamacho avatar"
+           width="24" height="24">
+      jcamacho
+    </a>
+  </div>
+  <div class="post-content">
+    <!--
+
+-->
+
+<p>The <a href="">Apache Calcite PMC</a>
+is pleased to announce
+<a href="/docs/history.html#v-1-9-0">Apache Calcite release 1.9.0</a>.</p>
+
+<p>This release includes extensions and fixes for the Druid adapter. New features were
+added, such as the capability to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1357">recognize and translate Timeseries and TopN Druid queries</a>.
+Moreover, this release contains multiple bug fixes over the initial implementation of the
+adapter. It is worth mentioning that most of these fixes were contributed by Druid developers,
+which demonstrates the good reception of the adapter by that community.</p>
+
+<p>We have added new SQL features too, e.g.,
+<a href="https://issues.apache.org/jira/browse/CALCITE-1309">support for <code class="highlighter-rouge">LATERAL TABLE</code></a>.
+There are multiple interesting extensions to the planner rules that should contribute to
+obtain better plans, such as
+<a href="https://issues.apache.org/jira/browse/CALCITE-1288">avoiding doing the same join twice</a>
+in the presence of <code class="highlighter-rouge">COUNT DISTINCT</code>, or being able to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1220">simplify the expressions</a>
+in the plan further. In addition, we implemented a rule to
+<a href="https://issues.apache.org/jira/browse/CALCITE-1334">convert predicates on <code class="highlighter-rouge">EXTRACT</code> function calls into date ranges</a>.
+The rule is not specific to Druid; however, in principle, it will be useful to identify
+filter conditions on the time dimension of Druid data sources.</p>
+
+<p>Finally, the release includes more than thirty bug-fixes, minor enhancements and internal
+changes to planner rules and APIs.</p>
+
+    
+    <p>See the <a href="/docs/history.html#v1-9-0">release notes</a>;
+      <a href="/downloads#source-releases">download</a> the release.</p>
+    
+  </div>
+</article>
+
+
+  
+<article>
+  <h2>
     <a href="/news/2016/06/13/release-1.8.0/">
       Release 1.8.0
     </a>
@@ -837,6 +904,10 @@ new utility, <code class="highlighter-ro
     <ul>
       
       <li class="">
+        <a href="/news/2016/09/22/release-1.9.0/">1.9.0</a>
+      </li>
+      
+      <li class="">
         <a href="/news/2016/06/13/release-1.8.0/">1.8.0</a>
       </li>
       
@@ -852,10 +923,6 @@ new utility, <code class="highlighter-ro
         <a href="/news/2015/11/10/release-1.5.0/">1.5.0</a>
       </li>
       
-      <li class="">
-        <a href="/news/2015/09/02/release-1.4.0-incubating/">1.4.0-incubating</a>
-      </li>
-      
     </ul>
     <h4>Other News</h4>
     <ul>