You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by jh...@apache.org on 2016/04/18 11:40:19 UTC

svn commit: r1739720 [2/5] - in /tajo/site: ./ docs/devel/ docs/devel/_static/ docs/devel/backup_and_restore/ docs/devel/configuration/ docs/devel/functions/ docs/devel/index/ docs/devel/partitioning/ docs/devel/sql_language/ docs/devel/storage_plugins...

Modified: tajo/site/docs/devel/functions/python.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/functions/python.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/functions/python.html (original)
+++ tajo/site/docs/devel/functions/python.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Python Functions &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Python Functions &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Functions" href="../functions.html"/>
         <link rel="next" title="Table Management" href="../table_management.html"/>
         <link rel="prev" title="Window Functions" href="window_func.html"/> 
@@ -224,21 +224,21 @@ After that, you can register your functi
 </pre></div>
 </div>
 <p>Please note that you can specify multiple paths with <code class="docutils literal"><span class="pre">','</span></code> as a delimiter. Each file can contain multiple functions. Here is a typical example of a script file.</p>
-<div class="highlight-python"><div class="highlight"><pre><span class="c1"># /path/to/udf1.py</span>
+<div class="highlight-python"><div class="highlight"><pre><span class="c"># /path/to/udf1.py</span>
 
-<span class="nd">@output_type</span><span class="p">(</span><span class="s1">&#39;int4&#39;</span><span class="p">)</span>
+<span class="nd">@output_type</span><span class="p">(</span><span class="s">&#39;int4&#39;</span><span class="p">)</span>
 <span class="k">def</span> <span class="nf">return_one</span><span class="p">():</span>
   <span class="k">return</span> <span class="mi">1</span>
 
-<span class="nd">@output_type</span><span class="p">(</span><span class="s2">&quot;text&quot;</span><span class="p">)</span>
+<span class="nd">@output_type</span><span class="p">(</span><span class="s">&quot;text&quot;</span><span class="p">)</span>
 <span class="k">def</span> <span class="nf">helloworld</span><span class="p">():</span>
-  <span class="k">return</span> <span class="s1">&#39;Hello, World&#39;</span>
+  <span class="k">return</span> <span class="s">&#39;Hello, World&#39;</span>
 
-<span class="c1"># No decorator - blob</span>
+<span class="c"># No decorator - blob</span>
 <span class="k">def</span> <span class="nf">concat_py</span><span class="p">(</span><span class="nb">str</span><span class="p">):</span>
   <span class="k">return</span> <span class="nb">str</span><span class="o">+</span><span class="nb">str</span>
 
-<span class="nd">@output_type</span><span class="p">(</span><span class="s1">&#39;int4&#39;</span><span class="p">)</span>
+<span class="nd">@output_type</span><span class="p">(</span><span class="s">&#39;int4&#39;</span><span class="p">)</span>
 <span class="k">def</span> <span class="nf">sum_py</span><span class="p">(</span><span class="n">a</span><span class="p">,</span><span class="n">b</span><span class="p">):</span>
   <span class="k">return</span> <span class="n">a</span><span class="o">+</span><span class="n">b</span>
 </pre></div>
@@ -250,7 +250,7 @@ After that, you can register your functi
 <p>By default, every function has a return type of <code class="docutils literal"><span class="pre">BLOB</span></code>.
 You can use Python decorators to define output types for the script functions. Tajo can figure out return types from the annotations of the Python script.</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">output_type</span></code>: Defines the return data type for a script UDF in a format that Tajo can understand. The defined type must be one of the types supported by Tajo. For supported types, please refer to <a class="reference internal" href="../sql_language/data_model.html"><em>Data Model</em></a>.</li>
+<li><code class="docutils literal"><span class="pre">output_type</span></code>: Defines the return data type for a script UDF in a format that Tajo can understand. The defined type must be one of the types supported by Tajo. For supported types, please refer to <a class="reference internal" href="../sql_language/data_model.html"><span class="doc">Data Model</span></a>.</li>
 </ul>
 </div>
 <div class="section" id="query-example">
@@ -267,7 +267,7 @@ You can use Python decorators to define
 <h3>Function registration<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
 <p>To define your Python aggregation functions, you should write Python classes for each function.
 Followings are typical examples of Python UDAFs.</p>
-<div class="highlight-python"><div class="highlight"><pre><span class="c1"># /path/to/udaf1.py</span>
+<div class="highlight-python"><div class="highlight"><pre><span class="c"># /path/to/udaf1.py</span>
 
 <span class="k">class</span> <span class="nc">AvgPy</span><span class="p">:</span>
   <span class="nb">sum</span> <span class="o">=</span> <span class="mi">0</span>
@@ -280,22 +280,22 @@ Followings are typical examples of Pytho
       <span class="bp">self</span><span class="o">.</span><span class="n">sum</span> <span class="o">=</span> <span class="mi">0</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span> <span class="o">=</span> <span class="mi">0</span>
 
-  <span class="c1"># eval at the first stage</span>
+  <span class="c"># eval at the first stage</span>
   <span class="k">def</span> <span class="nf">eval</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">item</span><span class="p">):</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">sum</span> <span class="o">+=</span> <span class="n">item</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span> <span class="o">+=</span> <span class="mi">1</span>
 
-  <span class="c1"># get intermediate result</span>
+  <span class="c"># get intermediate result</span>
   <span class="k">def</span> <span class="nf">get_partial_result</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
       <span class="k">return</span> <span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">sum</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span><span class="p">]</span>
 
-  <span class="c1"># merge intermediate results</span>
+  <span class="c"># merge intermediate results</span>
   <span class="k">def</span> <span class="nf">merge</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="nb">list</span><span class="p">):</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">sum</span> <span class="o">+=</span> <span class="nb">list</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span> <span class="o">+=</span> <span class="nb">list</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
 
-  <span class="c1"># get final result</span>
-  <span class="nd">@output_type</span><span class="p">(</span><span class="s1">&#39;float8&#39;</span><span class="p">)</span>
+  <span class="c"># get final result</span>
+  <span class="nd">@output_type</span><span class="p">(</span><span class="s">&#39;float8&#39;</span><span class="p">)</span>
   <span class="k">def</span> <span class="nf">get_final_result</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
       <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sum</span> <span class="o">/</span> <span class="nb">float</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">cnt</span><span class="p">)</span>
 
@@ -309,20 +309,20 @@ Followings are typical examples of Pytho
   <span class="k">def</span> <span class="nf">reset</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span> <span class="o">=</span> <span class="mi">0</span>
 
-  <span class="c1"># eval at the first stage</span>
+  <span class="c"># eval at the first stage</span>
   <span class="k">def</span> <span class="nf">eval</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span> <span class="o">+=</span> <span class="mi">1</span>
 
-  <span class="c1"># get intermediate result</span>
+  <span class="c"># get intermediate result</span>
   <span class="k">def</span> <span class="nf">get_partial_result</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
       <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span>
 
-  <span class="c1"># merge intermediate results</span>
+  <span class="c"># merge intermediate results</span>
   <span class="k">def</span> <span class="nf">merge</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">cnt</span><span class="p">):</span>
       <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span> <span class="o">+=</span> <span class="n">cnt</span>
 
-  <span class="c1"># get final result</span>
-  <span class="nd">@output_type</span><span class="p">(</span><span class="s1">&#39;int4&#39;</span><span class="p">)</span>
+  <span class="c"># get final result</span>
+  <span class="nd">@output_type</span><span class="p">(</span><span class="s">&#39;int4&#39;</span><span class="p">)</span>
   <span class="k">def</span> <span class="nf">get_final_result</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
       <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">cnt</span>
 </pre></div>
@@ -368,7 +368,7 @@ Followings are typical examples of Pytho
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -388,7 +388,7 @@ Followings are typical examples of Pytho
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/functions/string_func_and_operators.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/functions/string_func_and_operators.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/functions/string_func_and_operators.html (original)
+++ tajo/site/docs/devel/functions/string_func_and_operators.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>String Functions and Operators &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>String Functions and Operators &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Functions" href="../functions.html"/>
         <link rel="next" title="DateTime Functions and Operators" href="datetime_func_and_operators.html"/>
         <link rel="prev" title="Math Functions and Operators" href="math_func_and_operators.html"/> 
@@ -1002,7 +1002,7 @@ For other multibyte encodings, the argum
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -1022,7 +1022,7 @@ For other multibyte encodings, the argum
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/functions/window_func.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/functions/window_func.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/functions/window_func.html (original)
+++ tajo/site/docs/devel/functions/window_func.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Window Functions &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Window Functions &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Functions" href="../functions.html"/>
         <link rel="next" title="Python Functions" href="python.html"/>
         <link rel="prev" title="Aggregation Functions" href="agg_func.html"/> 
@@ -335,7 +335,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -355,7 +355,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/genindex.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/genindex.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/genindex.html (original)
+++ tajo/site/docs/devel/genindex.html Mon Apr 18 09:40:18 2016
@@ -8,7 +8,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Index &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Index &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -29,7 +29,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> 
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/> 
 
   
   <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
@@ -731,7 +731,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -751,7 +751,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/getting_started.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/getting_started.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/getting_started.html (original)
+++ tajo/site/docs/devel/getting_started.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Getting Started &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Getting Started &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/>
         <link rel="next" title="Configuration" href="configuration.html"/>
         <link rel="prev" title="Introduction" href="introduction.html"/> 
 
@@ -59,7 +59,7 @@
         
             <ul class="current">
 <li class="toctree-l1"><a class="reference internal" href="introduction.html">Introduction</a></li>
-<li class="toctree-l1 current"><a class="current reference internal" href="">Getting Started</a><ul>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">Getting Started</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="#prerequisites">Prerequisites</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#dowload-and-unpack-the-source-code">Dowload and unpack the source code</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#build-source-code">Build source code</a></li>
@@ -228,14 +228,14 @@
 Click on the suggested mirror link. This will take you to a mirror of Tajo Releases.
 Download the file that ends in .tar.gz to your local filesystem, e.g. tajo-x.y.z-src.tar.gz.</p>
 <p>Decompress and untar your downloaded file and then change into the unpacked directory.</p>
-<div class="highlight-python"><div class="highlight"><pre>tar xzvf tajo-x.y.z-src.tar.gz
+<div class="highlight-default"><div class="highlight"><pre><span class="n">tar</span> <span class="n">xzvf</span> <span class="n">tajo</span><span class="o">-</span><span class="n">x</span><span class="o">.</span><span class="n">y</span><span class="o">.</span><span class="n">z</span><span class="o">-</span><span class="n">src</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="check-out-the-source-code-via-git">
 <h3>Check out the source code via Git<a class="headerlink" href="#check-out-the-source-code-via-git" title="Permalink to this headline">¶</a></h3>
 <p>The development codebase can also be downloaded from <a class="reference external" href="https://git-wip-us.apache.org/repos/asf/tajo.git">the Apache git repository</a> as follows:</p>
-<div class="highlight-python"><div class="highlight"><pre>git clone https://git-wip-us.apache.org/repos/asf/tajo.git
+<div class="highlight-default"><div class="highlight"><pre><span class="n">git</span> <span class="n">clone</span> <span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">git</span><span class="o">-</span><span class="n">wip</span><span class="o">-</span><span class="n">us</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">tajo</span><span class="o">.</span><span class="n">git</span>
 </pre></div>
 </div>
 <p>A read-only git repository is also mirrored on <a class="reference external" href="https://github.com/apache/tajo">Github</a>.</p>
@@ -246,9 +246,9 @@ Download the file that ends in .tar.gz t
 <p>You prepare the prerequisites and the source code, you can build the source code now.</p>
 <p>The first step of the installation procedure is to configure the source tree for your system and choose the options you would like. This is done by running the configure script. For a default installation simply enter:</p>
 <p>You can compile source code and get a binary archive as follows:</p>
-<div class="highlight-bash"><div class="highlight"><pre>$ <span class="nb">cd</span> tajo-x.y.z
-$ mvn clean install -DskipTests -Pdist -Dtar -Dhadoop.version<span class="o">=</span>2.X.X
-$ ls tajo-dist/target/tajo-x.y.z-SNAPSHOT.tar.gz
+<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span><span class="nb">cd </span>tajo-x.y.z
+<span class="nv">$ </span>mvn clean install -DskipTests -Pdist -Dtar -Dhadoop.version<span class="o">=</span>2.X.X
+<span class="nv">$ </span>ls tajo-dist/target/tajo-x.y.z-SNAPSHOT.tar.gz
 </pre></div>
 </div>
 <div class="admonition note">
@@ -259,8 +259,8 @@ $ ls tajo-dist/target/tajo-x.y.z-SNAPSHO
 <div>$ mvn clean install -DskipTests -Pdist -Dtar -Dhadoop.version=2.5.1</div></blockquote>
 </div>
 <p>Then, after you move some proper directory, discompress the tar.gz file as follows:</p>
-<div class="highlight-bash"><div class="highlight"><pre>$ <span class="nb">cd</span> <span class="o">[</span>a directory to be parent of tajo binary<span class="o">]</span>
-$ tar xzvf <span class="si">${</span><span class="nv">TAJO_SRC</span><span class="si">}</span>/tajo-dist/target/tajo-x.y.z-SNAPSHOT.tar.gz
+<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span><span class="nb">cd</span> <span class="o">[</span>a directory to be parent of tajo binary<span class="o">]</span>
+<span class="nv">$ </span>tar xzvf <span class="si">${</span><span class="nv">TAJO_SRC</span><span class="si">}</span>/tajo-dist/target/tajo-x.y.z-SNAPSHOT.tar.gz
 </pre></div>
 </div>
 </div>
@@ -268,32 +268,32 @@ $ tar xzvf <span class="si">${</span><sp
 <h2>Setting up a local Tajo cluster<a class="headerlink" href="#setting-up-a-local-tajo-cluster" title="Permalink to this headline">¶</a></h2>
 <p>Apache Tajo™ provides two run modes: local mode and fully distributed mode. Here, we explain only the local mode where a Tajo instance runs on a local file system. A local mode Tajo instance can start up with very simple configurations.</p>
 <p>First of all, you need to add the environment variables to conf/tajo-env.sh.</p>
-<div class="highlight-bash"><div class="highlight"><pre><span class="c1"># Hadoop home. Required</span>
-<span class="nb">export</span> <span class="nv">HADOOP_HOME</span><span class="o">=</span> ...
+<div class="highlight-bash"><div class="highlight"><pre><span class="c"># Hadoop home. Required</span>
+<span class="nb">export </span><span class="nv">HADOOP_HOME</span><span class="o">=</span> ...
 
-<span class="c1"># The java implementation to use.  Required.</span>
-<span class="nb">export</span> <span class="nv">JAVA_HOME</span><span class="o">=</span> ...
+<span class="c"># The java implementation to use.  Required.</span>
+<span class="nb">export </span><span class="nv">JAVA_HOME</span><span class="o">=</span> ...
 </pre></div>
 </div>
 <p>To launch the tajo master, execute start-tajo.sh.</p>
-<div class="highlight-bash"><div class="highlight"><pre>$ $TAJO_HOME/bin/start-tajo.sh
+<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ $TAJO_HOME</span>/bin/start-tajo.sh
 </pre></div>
 </div>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">If you want to how to setup a fully distributed mode of Tajo, please see <a class="reference internal" href="configuration/cluster_setup.html"><em>Cluster Setup</em></a>.</p>
+<p class="last">If you want to how to setup a fully distributed mode of Tajo, please see <a class="reference internal" href="configuration/cluster_setup.html"><span class="doc">Cluster Setup</span></a>.</p>
 </div>
 <div class="admonition warning">
 <p class="first admonition-title">Warning</p>
-<p class="last">By default, <em>Catalog server</em> which manages table meta data uses <a class="reference external" href="http://db.apache.org/derby/">Apache Derby</a> as a persistent storage, and Derby stores data into <code class="docutils literal"><span class="pre">/tmp/tajo-catalog-${username}</span></code> directory. But, some operating systems may remove all contents in <code class="docutils literal"><span class="pre">/tmp</span></code> when booting up. In order to ensure persistent store of your catalog data, you need to set a proper location of derby directory. To learn Catalog configuration, please refer to <a class="reference internal" href="configuration/catalog_configuration.html"><em>Catalog Configuration</em></a>.</p>
+<p class="last">By default, <em>Catalog server</em> which manages table meta data uses <a class="reference external" href="http://db.apache.org/derby/">Apache Derby</a> as a persistent storage, and Derby stores data into <code class="docutils literal"><span class="pre">/tmp/tajo-catalog-${username}</span></code> directory. But, some operating systems may remove all contents in <code class="docutils literal"><span class="pre">/tmp</span></code> when booting up. In order to ensure persistent store of your catalog data, you need to set a proper location of derby directory. To learn Catalog configuration, please refer to <a class="reference internal" href="configuration/catalog_configuration.html"><span class="doc">Catalog Configuration</span></a>.</p>
 </div>
 </div>
 <div class="section" id="first-query-execution">
 <h2>First query execution<a class="headerlink" href="#first-query-execution" title="Permalink to this headline">¶</a></h2>
 <p>First of all, we need to prepare some table for query execution. For example, you can make a simple text-based table as follows:</p>
-<div class="highlight-bash"><div class="highlight"><pre>$ mkdir /home/x/table1
-$ <span class="nb">cd</span> /home/x/table1
-$ cat &gt; data.csv
+<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>mkdir /home/x/table1
+<span class="nv">$ </span><span class="nb">cd</span> /home/x/table1
+<span class="nv">$ </span>cat &gt; data.csv
 1<span class="p">|</span>abc<span class="p">|</span>1.1<span class="p">|</span>a
 2<span class="p">|</span>def<span class="p">|</span>2.3<span class="p">|</span>b
 3<span class="p">|</span>ghi<span class="p">|</span>3.4<span class="p">|</span>c
@@ -303,13 +303,13 @@ $ cat &gt; data.csv
 </pre></div>
 </div>
 <p>Apache Tajo™ provides a SQL shell which allows users to interactively submit SQL queries. In order to use this shell, please execute <code class="docutils literal"><span class="pre">bin/tsql</span></code></p>
-<div class="highlight-python"><div class="highlight"><pre>$ $TAJO_HOME/bin/tsql
+<div class="highlight-default"><div class="highlight"><pre>$ $TAJO_HOME/bin/tsql
 tajo&gt;
 </pre></div>
 </div>
 <p>In order to load the table we created above, we should think of a schema of the table.
 Here, we assume the schema as (int, text, float, text).</p>
-<div class="highlight-python"><div class="highlight"><pre>$ $TAJO_HOME/bin/tsql
+<div class="highlight-default"><div class="highlight"><pre>$ $TAJO_HOME/bin/tsql
 tajo&gt; create external table table1 (
       id int,
       name text,
@@ -322,7 +322,7 @@ tajo&gt; create external table table1 (
 In the location clause, you should use the absolute directory path with an appropriate scheme.
 If the table resides in HDFS, you should use ‘hdfs’ instead of ‘file’.</p>
 <p>If you want to know DDL statements in more detail, please see Query Language.</p>
-<div class="highlight-python"><div class="highlight"><pre> tajo&gt; \d
+<div class="highlight-default"><div class="highlight"><pre> tajo&gt; \d
  table1
 
 ``\d`` command shows the list of tables. ::
@@ -343,22 +343,22 @@ If the table resides in HDFS, you should
 </div>
 <p><code class="docutils literal"><span class="pre">\d</span> <span class="pre">[table</span> <span class="pre">name]</span></code> command shows the description of a given table.</p>
 <p>Also, you can execute SQL queries as follows:</p>
-<div class="highlight-python"><div class="highlight"><pre>tajo&gt; select * from table1 where id &gt; 2;
-final state: QUERY_SUCCEEDED, init time: 0.069 sec, response time: 0.397 sec
-result: file:/tmp/tajo-hadoop/staging/q_1363768615503_0001_000001/RESULT, 3 rows ( 35B)
-
-id,  name,  score,  type
-- - - - - - - - - -  - - -
-3,  ghi,  3.4,  c
-4,  jkl,  4.5,  d
-5,  mno,  5.6,  e
+<div class="highlight-default"><div class="highlight"><pre><span class="n">tajo</span><span class="o">&gt;</span> <span class="n">select</span> <span class="o">*</span> <span class="kn">from</span> <span class="nn">table1</span> <span class="n">where</span> <span class="nb">id</span> <span class="o">&gt;</span> <span class="mi">2</span><span class="p">;</span>
+<span class="n">final</span> <span class="n">state</span><span class="p">:</span> <span class="n">QUERY_SUCCEEDED</span><span class="p">,</span> <span class="n">init</span> <span class="n">time</span><span class="p">:</span> <span class="mf">0.069</span> <span class="n">sec</span><span class="p">,</span> <span class="n">response</span> <span class="n">time</span><span class="p">:</span> <span class="mf">0.397</span> <span class="n">sec</span>
+<span class="n">result</span><span class="p">:</span> <span class="n">file</span><span class="p">:</span><span class="o">/</span><span class="n">tmp</span><span class="o">/</span><span class="n">tajo</span><span class="o">-</span><span class="n">hadoop</span><span class="o">/</span><span class="n">staging</span><span class="o">/</span><span class="n">q_1363768615503_0001_000001</span><span class="o">/</span><span class="n">RESULT</span><span class="p">,</span> <span class="mi">3</span> <span class="n">rows</span> <span class="p">(</span> <span class="mi">35</span><span class="n">B</span><span class="p">)</span>
+
+<span class="nb">id</span><span class="p">,</span>  <span class="n">name</span><span class="p">,</span>  <span class="n">score</span><span class="p">,</span>  <span class="nb">type</span>
+<span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span> <span class="o">-</span>  <span class="o">-</span> <span class="o">-</span> <span class="o">-</span>
+<span class="mi">3</span><span class="p">,</span>  <span class="n">ghi</span><span class="p">,</span>  <span class="mf">3.4</span><span class="p">,</span>  <span class="n">c</span>
+<span class="mi">4</span><span class="p">,</span>  <span class="n">jkl</span><span class="p">,</span>  <span class="mf">4.5</span><span class="p">,</span>  <span class="n">d</span>
+<span class="mi">5</span><span class="p">,</span>  <span class="n">mno</span><span class="p">,</span>  <span class="mf">5.6</span><span class="p">,</span>  <span class="n">e</span>
 
-tajo&gt; \q
-bye
+<span class="n">tajo</span><span class="o">&gt;</span> \<span class="n">q</span>
+<span class="n">bye</span>
 </pre></div>
 </div>
 <p>Feel free to enjoy Tajo with SQL standards.
-If you want to know more explanation for SQL supported by Tajo, please refer <a class="reference internal" href="sql_language.html"><em>SQL Language</em></a>.</p>
+If you want to know more explanation for SQL supported by Tajo, please refer <a class="reference internal" href="sql_language.html"><span class="doc">SQL Language</span></a>.</p>
 </div>
 </div>
 
@@ -380,7 +380,7 @@ If you want to know more explanation for
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -400,7 +400,7 @@ If you want to know more explanation for
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/hbase_integration.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/hbase_integration.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/hbase_integration.html (original)
+++ tajo/site/docs/devel/hbase_integration.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>HBase Integration &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>HBase Integration &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/>
         <link rel="next" title="OpenStack Swift Integration" href="swift_integration.html"/>
         <link rel="prev" title="Hive Integration" href="hive_integration.html"/> 
 
@@ -148,7 +148,7 @@
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li>
-<li class="toctree-l1 current"><a class="current reference internal" href="">HBase Integration</a><ul>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">HBase Integration</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="#create-table">CREATE TABLE</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#drop-table">DROP TABLE</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#insert-overwrite-into">INSERT (OVERWRITE) INTO</a></li>
@@ -213,11 +213,11 @@ This integration allows Tajo to access a
 <p>In order to use this feature, you need to build add some configs into <code class="docutils literal"><span class="pre">conf/tajo-env.sh</span></code> and then add some properties into a table create statement.</p>
 <p>This section describes how to setup HBase integration.</p>
 <p>First, you need to set your HBase home directory to the environment variable <code class="docutils literal"><span class="pre">HBASE_HOME</span></code> in <code class="docutils literal"><span class="pre">conf/tajo-env.sh</span></code> as follows:</p>
-<div class="highlight-python"><div class="highlight"><pre>export HBASE_HOME=/path/to/your/hbase/directory
+<div class="highlight-default"><div class="highlight"><pre><span class="n">export</span> <span class="n">HBASE_HOME</span><span class="o">=/</span><span class="n">path</span><span class="o">/</span><span class="n">to</span><span class="o">/</span><span class="n">your</span><span class="o">/</span><span class="n">hbase</span><span class="o">/</span><span class="n">directory</span>
 </pre></div>
 </div>
 <p>If you set the directory, Tajo will add HBase library file to classpath.</p>
-<p>Next, you must configure tablespace about HBase. Please see <a class="reference internal" href="table_management/tablespaces.html"><em>Tablespaces</em></a> if you want to know more information about it.</p>
+<p>Next, you must configure tablespace about HBase. Please see <a class="reference internal" href="table_management/tablespaces.html"><span class="doc">Tablespaces</span></a> if you want to know more information about it.</p>
 <div class="section" id="create-table">
 <h2>CREATE TABLE<a class="headerlink" href="#create-table" title="Permalink to this headline">¶</a></h2>
 <p><em>Synopsis</em></p>
@@ -370,7 +370,7 @@ blrunner-01,  Jaehwa Jung,  2014-10-31,
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -390,7 +390,7 @@ blrunner-01,  Jaehwa Jung,  2014-10-31,
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/hive_integration.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/hive_integration.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/hive_integration.html (original)
+++ tajo/site/docs/devel/hive_integration.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Hive Integration &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Hive Integration &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/>
         <link rel="next" title="HBase Integration" href="hbase_integration.html"/>
         <link rel="prev" title="Backup and Restore Catalog" href="backup_and_restore/catalog.html"/> 
 
@@ -147,7 +147,7 @@
 <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li>
 </ul>
 </li>
-<li class="toctree-l1 current"><a class="current reference internal" href="">Hive Integration</a></li>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">Hive Integration</a></li>
 <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li>
@@ -217,12 +217,12 @@ and then add some configs into <code cla
 This section describes how to setup HiveMetaStore integration.
 This instruction would take no more than five minutes.</p>
 <p>You need to set your Hive home directory to the environment variable <strong>HIVE_HOME</strong> in <code class="docutils literal"><span class="pre">conf/tajo-env.sh</span></code> as follows:</p>
-<div class="highlight-sh"><div class="highlight"><pre><span class="nb">export</span> <span class="nv">HIVE_HOME</span><span class="o">=</span>/path/to/your/hive/directory
+<div class="highlight-sh"><div class="highlight"><pre><span class="nb">export </span><span class="nv">HIVE_HOME</span><span class="o">=</span>/path/to/your/hive/directory
 </pre></div>
 </div>
 <p>If you need to use jdbc to connect HiveMetaStore, you have to prepare MySQL jdbc driver.
 Next, you should set the path of MySQL JDBC driver jar file to the environment variable <strong>HIVE_JDBC_DRIVER_DIR</strong> in <code class="docutils literal"><span class="pre">conf/tajo-env.sh</span></code> as follows:</p>
-<div class="highlight-sh"><div class="highlight"><pre><span class="nb">export</span> <span class="nv">HIVE_JDBC_DRIVER_DIR</span><span class="o">=</span>/path/to/your/mysql_jdbc_driver/mysql-connector-java-x.x.x-bin.jar
+<div class="highlight-sh"><div class="highlight"><pre><span class="nb">export </span><span class="nv">HIVE_JDBC_DRIVER_DIR</span><span class="o">=</span>/path/to/your/mysql_jdbc_driver/mysql-connector-java-x.x.x-bin.jar
 </pre></div>
 </div>
 <p>Finally, you should specify HiveCatalogStore as Tajo catalog driver class in <code class="docutils literal"><span class="pre">conf/catalog-site.xml</span></code> as follows:</p>
@@ -267,7 +267,7 @@ for more details of the command):</p>
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -287,7 +287,7 @@ for more details of the command):</p>
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/index.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/index.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/index.html (original)
+++ tajo/site/docs/devel/index.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Apache Tajo™ (dev) - User documentation &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Apache Tajo™ (dev) - User documentation &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="#"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="#"/>
         <link rel="next" title="Introduction" href="introduction.html"/> 
 
   
@@ -515,9 +515,9 @@ As a result, some contents can be mismat
 <div class="section" id="indices-and-tables">
 <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1>
 <ul class="simple">
-<li><a class="reference internal" href="genindex.html"><span>Index</span></a></li>
-<li><a class="reference internal" href="py-modindex.html"><span>Module Index</span></a></li>
-<li><a class="reference internal" href="search.html"><span>Search Page</span></a></li>
+<li><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></li>
+<li><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></li>
+<li><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></li>
 </ul>
 </div>
 
@@ -537,7 +537,7 @@ As a result, some contents can be mismat
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -557,7 +557,7 @@ As a result, some contents can be mismat
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/index/future_work.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/index/future_work.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/index/future_work.html (original)
+++ tajo/site/docs/devel/index/future_work.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Future Works &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Future Works &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Index (Experimental Feature)" href="../index_overview.html"/>
         <link rel="next" title="Backup and Restore" href="../backup_and_restore.html"/>
         <link rel="prev" title="How to use index?" href="how_to_use.html"/> 
@@ -141,7 +141,7 @@
 <li class="toctree-l1 current"><a class="reference internal" href="../index_overview.html">Index (Experimental Feature)</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="types.html">Index Types</a></li>
 <li class="toctree-l2"><a class="reference internal" href="how_to_use.html">How to use index?</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="">Future Works</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Future Works</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../backup_and_restore.html">Backup and Restore</a><ul>
@@ -236,7 +236,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -256,7 +256,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/index/how_to_use.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/index/how_to_use.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/index/how_to_use.html (original)
+++ tajo/site/docs/devel/index/how_to_use.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>How to use index? &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>How to use index? &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Index (Experimental Feature)" href="../index_overview.html"/>
         <link rel="next" title="Future Works" href="future_work.html"/>
         <link rel="prev" title="Index Types" href="types.html"/> 
@@ -140,7 +140,7 @@
 </li>
 <li class="toctree-l1 current"><a class="reference internal" href="../index_overview.html">Index (Experimental Feature)</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="types.html">Index Types</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="">How to use index?</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">How to use index?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="future_work.html">Future Works</a></li>
 </ul>
 </li>
@@ -213,43 +213,43 @@
 <h1>How to use index?<a class="headerlink" href="#how-to-use-index" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="create-index">
 <h2>1. Create index<a class="headerlink" href="#create-index" title="Permalink to this headline">¶</a></h2>
-<p>The first step for utilizing index is to create an index. You can create an index using SQL (<a class="reference internal" href="../sql_language/ddl.html"><em>Data Definition Language</em></a>) or Tajo API (<a class="reference internal" href="../tajo_client_api.html"><em>Tajo Client API</em></a>).
+<p>The first step for utilizing index is to create an index. You can create an index using SQL (<a class="reference internal" href="../sql_language/ddl.html"><span class="doc">Data Definition Language</span></a>) or Tajo API (<a class="reference internal" href="../tajo_client_api.html"><span class="doc">Tajo Client API</span></a>).
 For example, the following SQL statement will create a BST index on the lineitem table.</p>
 <div class="highlight-sql"><div class="highlight"><pre><span class="k">default</span><span class="o">&gt;</span> <span class="k">create</span> <span class="k">index</span> <span class="n">l_orderkey_idx</span> <span class="k">on</span> <span class="n">lineitem</span> <span class="p">(</span><span class="n">l_orderkey</span><span class="p">);</span>
 </pre></div>
 </div>
 <p>If the index is created successfully, you can see the index information as follows:</p>
-<div class="highlight-python"><div class="highlight"><pre>default&gt; \d lineitem
+<div class="highlight-default"><div class="highlight"><pre><span class="n">default</span><span class="o">&gt;</span> \<span class="n">d</span> <span class="n">lineitem</span>
 
-table name: default.lineitem
-table path: hdfs://localhost:7020/tpch/lineitem
-store type: TEXT
-number of rows: unknown
-volume: 753.9 MB
-Options:
-      &#39;text.delimiter&#39;=&#39;|&#39;
-
-schema:
-l_orderkey    INT8
-l_partkey     INT8
-l_suppkey     INT8
-l_linenumber  INT8
-l_quantity    FLOAT4
-l_extendedprice       FLOAT4
-l_discount    FLOAT4
-l_tax FLOAT4
-l_returnflag  TEXT
-l_linestatus  TEXT
-l_shipdate    DATE
-l_commitdate  DATE
-l_receiptdate DATE
-l_shipinstruct        TEXT
-l_shipmode    TEXT
-l_comment     TEXT
+<span class="n">table</span> <span class="n">name</span><span class="p">:</span> <span class="n">default</span><span class="o">.</span><span class="n">lineitem</span>
+<span class="n">table</span> <span class="n">path</span><span class="p">:</span> <span class="n">hdfs</span><span class="p">:</span><span class="o">//</span><span class="n">localhost</span><span class="p">:</span><span class="mi">7020</span><span class="o">/</span><span class="n">tpch</span><span class="o">/</span><span class="n">lineitem</span>
+<span class="n">store</span> <span class="nb">type</span><span class="p">:</span> <span class="n">TEXT</span>
+<span class="n">number</span> <span class="n">of</span> <span class="n">rows</span><span class="p">:</span> <span class="n">unknown</span>
+<span class="n">volume</span><span class="p">:</span> <span class="mf">753.9</span> <span class="n">MB</span>
+<span class="n">Options</span><span class="p">:</span>
+      <span class="s">&#39;text.delimiter&#39;</span><span class="o">=</span><span class="s">&#39;|&#39;</span>
+
+<span class="n">schema</span><span class="p">:</span>
+<span class="n">l_orderkey</span>    <span class="n">INT8</span>
+<span class="n">l_partkey</span>     <span class="n">INT8</span>
+<span class="n">l_suppkey</span>     <span class="n">INT8</span>
+<span class="n">l_linenumber</span>  <span class="n">INT8</span>
+<span class="n">l_quantity</span>    <span class="n">FLOAT4</span>
+<span class="n">l_extendedprice</span>       <span class="n">FLOAT4</span>
+<span class="n">l_discount</span>    <span class="n">FLOAT4</span>
+<span class="n">l_tax</span> <span class="n">FLOAT4</span>
+<span class="n">l_returnflag</span>  <span class="n">TEXT</span>
+<span class="n">l_linestatus</span>  <span class="n">TEXT</span>
+<span class="n">l_shipdate</span>    <span class="n">DATE</span>
+<span class="n">l_commitdate</span>  <span class="n">DATE</span>
+<span class="n">l_receiptdate</span> <span class="n">DATE</span>
+<span class="n">l_shipinstruct</span>        <span class="n">TEXT</span>
+<span class="n">l_shipmode</span>    <span class="n">TEXT</span>
+<span class="n">l_comment</span>     <span class="n">TEXT</span>
 
 
-Indexes:
-&quot;l_orderkey_idx&quot; TWO_LEVEL_BIN_TREE (l_orderkey ASC NULLS LAST )
+<span class="n">Indexes</span><span class="p">:</span>
+<span class="s">&quot;l_orderkey_idx&quot;</span> <span class="n">TWO_LEVEL_BIN_TREE</span> <span class="p">(</span><span class="n">l_orderkey</span> <span class="n">ASC</span> <span class="n">NULLS</span> <span class="n">LAST</span> <span class="p">)</span>
 </pre></div>
 </div>
 <p>For more information about index creation, please refer to the above links.</p>
@@ -274,7 +274,7 @@ according to selectivity. Usually, the p
 </div>
 <div class="section" id="index-backup-and-restore">
 <h2>3. Index backup and restore<a class="headerlink" href="#index-backup-and-restore" title="Permalink to this headline">¶</a></h2>
-<p>Tajo currently provides only the catalog backup and restore for index. Please refer to <a class="reference internal" href="../backup_and_restore/catalog.html"><em>Backup and Restore Catalog</em></a> for more information about catalog backup and restore.</p>
+<p>Tajo currently provides only the catalog backup and restore for index. Please refer to <a class="reference internal" href="../backup_and_restore/catalog.html"><span class="doc">Backup and Restore Catalog</span></a> for more information about catalog backup and restore.</p>
 </div>
 </div>
 
@@ -296,7 +296,7 @@ according to selectivity. Usually, the p
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -316,7 +316,7 @@ according to selectivity. Usually, the p
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/index/types.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/index/types.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/index/types.html (original)
+++ tajo/site/docs/devel/index/types.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Index Types &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Index Types &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Index (Experimental Feature)" href="../index_overview.html"/>
         <link rel="next" title="How to use index?" href="how_to_use.html"/>
         <link rel="prev" title="Index (Experimental Feature)" href="../index_overview.html"/> 
@@ -139,7 +139,7 @@
 </ul>
 </li>
 <li class="toctree-l1 current"><a class="reference internal" href="../index_overview.html">Index (Experimental Feature)</a><ul class="current">
-<li class="toctree-l2 current"><a class="current reference internal" href="">Index Types</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Index Types</a></li>
 <li class="toctree-l2"><a class="reference internal" href="how_to_use.html">How to use index?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="future_work.html">Future Works</a></li>
 </ul>
@@ -233,7 +233,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -253,7 +253,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/index_overview.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/index_overview.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/index_overview.html (original)
+++ tajo/site/docs/devel/index_overview.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Index (Experimental Feature) &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Index (Experimental Feature) &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/>
         <link rel="next" title="Index Types" href="index/types.html"/>
         <link rel="prev" title="PostgreSQL Storage Handler" href="storage_plugins/postgresql.html"/> 
 
@@ -137,7 +137,7 @@
 <li class="toctree-l2"><a class="reference internal" href="storage_plugins/postgresql.html">PostgreSQL Storage Handler</a></li>
 </ul>
 </li>
-<li class="toctree-l1 current"><a class="current reference internal" href="">Index (Experimental Feature)</a><ul>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">Index (Experimental Feature)</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="index/types.html">Index Types</a></li>
 <li class="toctree-l2"><a class="reference internal" href="index/how_to_use.html">How to use index?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="index/future_work.html">Future Works</a></li>
@@ -237,7 +237,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -257,7 +257,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/introduction.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/introduction.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/introduction.html (original)
+++ tajo/site/docs/devel/introduction.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Introduction &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Introduction &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/>
         <link rel="next" title="Getting Started" href="getting_started.html"/>
         <link rel="prev" title="Apache Tajo™ (dev) - User documentation" href="index.html"/> 
 
@@ -58,7 +58,7 @@
         
         
             <ul class="current">
-<li class="toctree-l1 current"><a class="current reference internal" href="">Introduction</a></li>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">Introduction</a></li>
 <li class="toctree-l1"><a class="reference internal" href="getting_started.html">Getting Started</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="getting_started.html#prerequisites">Prerequisites</a></li>
 <li class="toctree-l2"><a class="reference internal" href="getting_started.html#dowload-and-unpack-the-source-code">Dowload and unpack the source code</a></li>
@@ -237,7 +237,7 @@ queries in order to avoid the worst quer
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -257,7 +257,7 @@ queries in order to avoid the worst quer
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/jdbc_driver.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/jdbc_driver.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/jdbc_driver.html (original)
+++ tajo/site/docs/devel/jdbc_driver.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Tajo JDBC Driver &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Tajo JDBC Driver &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/>
         <link rel="next" title="Tajo Client API" href="tajo_client_api.html"/>
         <link rel="prev" title="OpenStack Swift Integration" href="swift_integration.html"/> 
 
@@ -162,7 +162,7 @@
 <li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li>
 </ul>
 </li>
-<li class="toctree-l1 current"><a class="current reference internal" href="">Tajo JDBC Driver</a><ul>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">Tajo JDBC Driver</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="#how-to-get-jdbc-driver">How to get JDBC driver</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#setting-the-classpath">Setting the CLASSPATH</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#connecting-to-the-tajo-cluster-instance">Connecting to the Tajo cluster instance</a></li>
@@ -224,9 +224,9 @@ In this section, we explain how to get J
 <div class="section" id="from-building-source-code">
 <h3>From Building Source Code<a class="headerlink" href="#from-building-source-code" title="Permalink to this headline">¶</a></h3>
 <p>You can build Tajo from the source code and then get JAR files as follows:</p>
-<div class="highlight-bash"><div class="highlight"><pre>$ tar xzvf tajo-x.y.z-src.tar.gz
-$ mvn clean package -DskipTests -Pdist -Dtar
-$ ls -l tajo-dist/target/tajo-x.y.z/share/jdbc-dist/tajo-jdbc-x.y.z.jar
+<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>tar xzvf tajo-x.y.z-src.tar.gz
+<span class="nv">$ </span>mvn clean package -DskipTests -Pdist -Dtar
+<span class="nv">$ </span>ls -l tajo-dist/target/tajo-x.y.z/share/jdbc-dist/tajo-jdbc-x.y.z.jar
 </pre></div>
 </div>
 </div>
@@ -234,7 +234,7 @@ $ ls -l tajo-dist/target/tajo-x.y.z/shar
 <div class="section" id="setting-the-classpath">
 <h2>Setting the CLASSPATH<a class="headerlink" href="#setting-the-classpath" title="Permalink to this headline">¶</a></h2>
 <p>In order to use the JDBC driver, you should add <code class="docutils literal"><span class="pre">tajo-jdbc-x.y.z.jar</span></code> in your <code class="docutils literal"><span class="pre">CLASSPATH</span></code>.</p>
-<div class="highlight-bash"><div class="highlight"><pre><span class="nv">CLASSPATH</span><span class="o">=</span>path/to/tajo-jdbc-x.y.z.jar:<span class="nv">$C</span>LASSPATH
+<div class="highlight-bash"><div class="highlight"><pre><span class="nv">CLASSPATH</span><span class="o">=</span>path/to/tajo-jdbc-x.y.z.jar:<span class="nv">$CLASSPATH</span>
 </pre></div>
 </div>
 </div>
@@ -289,7 +289,7 @@ $ ls -l tajo-dist/target/tajo-x.y.z/shar
 You can get the driver <code class="docutils literal"><span class="pre">Class.forName(&quot;org.apache.tajo.jdbc.TajoDriver&quot;)</span></code>.
 The connection url should be <code class="docutils literal"><span class="pre">jdbc:tajo://&lt;TajoMaster</span> <span class="pre">hostname&gt;:&lt;TajoMaster</span> <span class="pre">client</span> <span class="pre">rpc</span> <span class="pre">port&gt;/&lt;database</span> <span class="pre">name&gt;</span></code>.
 The default TajoMaster client rpc port is <code class="docutils literal"><span class="pre">26002</span></code>.
-If you want to change the listening port, please refer <a class="reference internal" href="configuration/cluster_setup.html"><em>Cluster Setup</em></a>.</p>
+If you want to change the listening port, please refer <a class="reference internal" href="configuration/cluster_setup.html"><span class="doc">Cluster Setup</span></a>.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
 <p class="last">Currently, Tajo does not support the concept of database and namespace.
@@ -353,7 +353,7 @@ All tables are contained in <code class=
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -373,7 +373,7 @@ All tables are contained in <code class=
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/objects.inv
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/objects.inv?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
Binary files - no diff available.

Modified: tajo/site/docs/devel/partitioning/column_partitioning.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/partitioning/column_partitioning.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/partitioning/column_partitioning.html (original)
+++ tajo/site/docs/devel/partitioning/column_partitioning.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Column Partitioning &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Column Partitioning &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/>
         <link rel="next" title="Range Partitioning" href="range_partitioning.html"/>
         <link rel="prev" title="Introduction to Partitioning" href="intro_to_partitioning.html"/> 
@@ -128,7 +128,7 @@
 </li>
 <li class="toctree-l1 current"><a class="reference internal" href="../table_partitioning.html">Table Partitioning</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="intro_to_partitioning.html">Introduction to Partitioning</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="">Column Partitioning</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Column Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="range_partitioning.html">Range Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hash_partitioning.html">Hash Partitioning</a></li>
 </ul>
@@ -419,7 +419,7 @@ columns::default.student.country (TEXT),
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -439,7 +439,7 @@ columns::default.student.country (TEXT),
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/partitioning/hash_partitioning.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/partitioning/hash_partitioning.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/partitioning/hash_partitioning.html (original)
+++ tajo/site/docs/devel/partitioning/hash_partitioning.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Hash Partitioning &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Hash Partitioning &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/>
         <link rel="next" title="Storage Plugin" href="../storage_plugins.html"/>
         <link rel="prev" title="Range Partitioning" href="range_partitioning.html"/> 
@@ -130,7 +130,7 @@
 <li class="toctree-l2"><a class="reference internal" href="intro_to_partitioning.html">Introduction to Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="column_partitioning.html">Column Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="range_partitioning.html">Range Partitioning</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="">Hash Partitioning</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Hash Partitioning</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../storage_plugins.html">Storage Plugin</a><ul>
@@ -211,9 +211,6 @@
             
   <div class="section" id="hash-partitioning">
 <h1>Hash Partitioning<a class="headerlink" href="#hash-partitioning" title="Permalink to this headline">¶</a></h1>
-<div class="admonition-todo admonition" id="index-0">
-<p class="first last admonition-title">Todo</p>
-</div>
 </div>
 
 
@@ -234,7 +231,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -254,7 +251,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/partitioning/intro_to_partitioning.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/partitioning/intro_to_partitioning.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/partitioning/intro_to_partitioning.html (original)
+++ tajo/site/docs/devel/partitioning/intro_to_partitioning.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Introduction to Partitioning &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Introduction to Partitioning &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/>
         <link rel="next" title="Column Partitioning" href="column_partitioning.html"/>
         <link rel="prev" title="Table Partitioning" href="../table_partitioning.html"/> 
@@ -127,7 +127,7 @@
 </ul>
 </li>
 <li class="toctree-l1 current"><a class="reference internal" href="../table_partitioning.html">Table Partitioning</a><ul class="current">
-<li class="toctree-l2 current"><a class="current reference internal" href="">Introduction to Partitioning</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Introduction to Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="column_partitioning.html">Column Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="range_partitioning.html">Range Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hash_partitioning.html">Hash Partitioning</a></li>
@@ -245,7 +245,7 @@ Currently, Apache Tajo only provides Apa
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -265,7 +265,7 @@ Currently, Apache Tajo only provides Apa
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/partitioning/range_partitioning.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/partitioning/range_partitioning.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/partitioning/range_partitioning.html (original)
+++ tajo/site/docs/devel/partitioning/range_partitioning.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Range Partitioning &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Range Partitioning &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/>
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="../index.html"/>
         <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/>
         <link rel="next" title="Hash Partitioning" href="hash_partitioning.html"/>
         <link rel="prev" title="Column Partitioning" href="column_partitioning.html"/> 
@@ -129,7 +129,7 @@
 <li class="toctree-l1 current"><a class="reference internal" href="../table_partitioning.html">Table Partitioning</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="intro_to_partitioning.html">Introduction to Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="column_partitioning.html">Column Partitioning</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="">Range Partitioning</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Range Partitioning</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hash_partitioning.html">Hash Partitioning</a></li>
 </ul>
 </li>
@@ -211,9 +211,6 @@
             
   <div class="section" id="range-partitioning">
 <h1>Range Partitioning<a class="headerlink" href="#range-partitioning" title="Permalink to this headline">¶</a></h1>
-<div class="admonition-todo admonition" id="index-0">
-<p class="first last admonition-title">Todo</p>
-</div>
 </div>
 
 
@@ -234,7 +231,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -254,7 +251,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true

Modified: tajo/site/docs/devel/search.html
URL: http://svn.apache.org/viewvc/tajo/site/docs/devel/search.html?rev=1739720&r1=1739719&r2=1739720&view=diff
==============================================================================
--- tajo/site/docs/devel/search.html (original)
+++ tajo/site/docs/devel/search.html Mon Apr 18 09:40:18 2016
@@ -7,7 +7,7 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
-  <title>Search &mdash; Apache Tajo 0.11.0 documentation</title>
+  <title>Search &mdash; Apache Tajo 0.12.0-SNAPSHOT documentation</title>
   
 
   
@@ -28,7 +28,7 @@
   
 
   
-    <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> 
+    <link rel="top" title="Apache Tajo 0.12.0-SNAPSHOT documentation" href="index.html"/> 
 
   
   <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
@@ -224,7 +224,7 @@
 
   <div role="contentinfo">
     <p>
-        &copy; Copyright 2015, Apache Tajo Team.
+        &copy; Copyright 2016, Apache Tajo Team.
     </p>
   </div>
 
@@ -244,7 +244,7 @@
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'0.11.0',
+            VERSION:'0.12.0-SNAPSHOT',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true