Browse Source

[DOCS] Remove inline callouts in SQL Command docs for Asciidoctor migration (#41276)

James Rodewig 6 years ago
parent
commit
d042f263ce

+ 6 - 2
docs/reference/sql/language/syntax/commands/describe-table.asciidoc

@@ -6,7 +6,9 @@
 .Synopsis
 [source, sql]
 ----
-DESCRIBE [table identifier<1> | [LIKE pattern<2>]]
+DESCRIBE
+    [table identifier | <1>
+    [LIKE pattern]]     <2>
 ----
 
 <1> single table identifier or double quoted es multi index
@@ -16,7 +18,9 @@ or
 
 [source, sql]
 ----
-DESC [table identifier<1>|[LIKE pattern<2>]]
+DESC 
+    [table identifier | <1>
+    [LIKE pattern]]     <2>
 ----
 
 <1> single table identifier or double quoted es multi index

+ 3 - 1
docs/reference/sql/language/syntax/commands/show-columns.asciidoc

@@ -6,7 +6,9 @@
 .Synopsis
 [source, sql]
 ----
-SHOW COLUMNS [ FROM | IN ]? [ table identifier<1> | [ LIKE pattern<2> ] ]
+SHOW COLUMNS [ FROM | IN ]?
+    [table identifier | <1>
+    [LIKE pattern] ]    <2>
 ----
 
 <1> single table identifier or double quoted es multi index

+ 1 - 1
docs/reference/sql/language/syntax/commands/show-functions.asciidoc

@@ -6,7 +6,7 @@
 .Synopsis
 [source, sql]
 ----
-SHOW FUNCTIONS [ LIKE pattern<1>? ]?
+SHOW FUNCTIONS [LIKE pattern?]? <1>
 ----
 
 <1> SQL match pattern

+ 3 - 1
docs/reference/sql/language/syntax/commands/show-tables.asciidoc

@@ -6,7 +6,9 @@
 .Synopsis
 [source, sql]
 ----
-SHOW TABLES [ table identifier<1> | [ LIKE pattern<2> ] ]?
+SHOW TABLES
+    [table identifier | <1>
+    [LIKE pattern ]]?   <2>
 ----
 
 <1> single table identifier or double quoted es multi index