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

zabetak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git

commit 6e2af024bd98f56a8a06a0370a08e8d70610d39f
Author: Guiyanakuang <guiyanaku...@gmail.com>
AuthorDate: Wed Jan 5 10:12:03 2022 +0800

    Site: For tables that display results, center the content horizontally
    
    Close apache/calcite#2632
---
 site/_docs/reference.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/site/_docs/reference.md b/site/_docs/reference.md
index 2afd767..6a2a5d1 100644
--- a/site/_docs/reference.md
+++ b/site/_docs/reference.md
@@ -2631,7 +2631,7 @@ LIMIT 10;
 Result
 
 | c1     | c2    | c3      | c4      |
-| ------ | ----- | ------- | ------- |
+|:------:|:-----:|:-------:|:-------:|
 | OBJECT | ARRAY | INTEGER | BOOLEAN |
 
 ##### JSON_DEPTH example
@@ -2650,7 +2650,7 @@ LIMIT 10;
 Result
 
 | c1     | c2    | c3      | c4      |
-| ------ | ----- | ------- | ------- |
+|:------:|:-----:|:-------:|:-------:|
 | 3      | 2     | 1       | 1       |
 
 ##### JSON_LENGTH example
@@ -2669,7 +2669,7 @@ LIMIT 10;
 Result
 
 | c1     | c2    | c3      | c4      |
-| ------ | ----- | ------- | ------- |
+|:------:|:-----:|:-------:|:-------:|
 | 1      | 2     | 1       | 1       |
 
 ##### JSON_KEYS example
@@ -2689,7 +2689,7 @@ LIMIT 10;
  Result
 
 | c1         | c2   | c3    | c4   | c5   |
-| ---------- | ---- | ----- | ---- | ---- |
+|:----------:|:----:|:-----:|:----:|:----:|
 | ["a", "b"] | NULL | ["c"] | NULL | NULL |
 
 ##### JSON_REMOVE example
@@ -2705,7 +2705,7 @@ LIMIT 10;
  Result
 
 | c1         |
-| ---------- |
+|:----------:|
 | ["a", "d"] |
 
 
@@ -2725,7 +2725,7 @@ limit 10;
  Result
 
 | c1 | c2 | c3 | c4 |
-| -- | ---| ---| -- |
+|:--:|:---:|:---:|:--:|
 | 29 | 35 | 37 | 36 |
 
 
@@ -2745,7 +2745,7 @@ FROM (VALUES (1, 2, 3, 4, 5)) AS t(f1, f2, f3, f4, f5);
  Result
 
 | c1          | c2          | c3          | c4          | c5          |
-| ----------- | ----------- | ----------- | ----------- | ----------- |
+|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
 | aa          | bb          | cc          | dd          | ee          |
 
 #### TRANSLATE example
@@ -2763,7 +2763,7 @@ FROM (VALUES (true)) AS t(f0);
 Result
 
 | c1          | c2          | c3          | c4          |
-| ----------- | ----------- | ----------- | ----------- |
+|:-----------:|:-----------:|:-----------:|:-----------:|
 | Aa_Bb_CcD_d | Aa_Bb_CcD_d | Aa_Bb_CcD_d | Aa_Bb_CcD_d |
 
 Not implemented:

Reply via email to