Drop inline callouts from SQL conditional docs (#41205)

Drops "inline callouts" from the docs for SQL conditionals because they
aren't supported by Asciidoctor.

Relates to #41128
This commit is contained in:
Nik Everett 2019-04-16 13:47:39 -04:00
parent 02247cc7df
commit a01dd96afe
1 changed files with 24 additions and 7 deletions

View File

@ -11,7 +11,10 @@ Functions that return one of their arguments by evaluating in an if-else manner.
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
COALESCE(expression<1>, expression<2>, ...) COALESCE(
expression, <1>
expression, <2>
...)
---- ----
*Input*: *Input*:
@ -51,7 +54,10 @@ include-tagged::{sql-specs}/docs/docs.csv-spec[coalesceReturnNull]
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
GREATEST(expression<1>, expression<2>, ...) GREATEST(
expression, <1>
expression, <2>
...)
---- ----
*Input*: *Input*:
@ -92,7 +98,9 @@ include-tagged::{sql-specs}/docs/docs.csv-spec[greatestReturnNull]
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
IFNULL(expression<1>, expression<2>) IFNULL(
expression, <1>
expression) <2>
---- ----
*Input*: *Input*:
@ -129,7 +137,9 @@ include-tagged::{sql-specs}/docs/docs.csv-spec[ifNullReturnSecond]
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
ISNULL(expression<1>, expression<2>) ISNULL(
expression, <1>
expression) <2>
---- ----
*Input*: *Input*:
@ -166,7 +176,10 @@ include-tagged::{sql-specs}/docs/docs.csv-spec[isNullReturnSecond]
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
LEAST(expression<1>, expression<2>, ...) LEAST(
expression, <1>
expression, <2>
...)
---- ----
*Input*: *Input*:
@ -208,7 +221,9 @@ include-tagged::{sql-specs}/docs/docs.csv-spec[leastReturnNull]
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
NULLIF(expression<1>, expression<2>) NULLIF(
expression, <1>
expression) <2>
---- ----
*Input*: *Input*:
@ -243,7 +258,9 @@ include-tagged::{sql-specs}/docs/docs.csv-spec[nullIfReturnNull]
.Synopsis: .Synopsis:
[source, sql] [source, sql]
---- ----
NVL(expression<1>, expression<2>) NVL(
expression, <1>
expression) <2>
---- ----
*Input*: *Input*: