Skip to content

Commit 6f7751f

Browse files
committed
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
1 parent 1a88b3c commit 6f7751f

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

docs/reference/sql/functions/conditional.asciidoc

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ Functions that return one of their arguments by evaluating in an if-else manner.
1111
.Synopsis:
1212
[source, sql]
1313
----
14-
COALESCE(expression<1>, expression<2>, ...)
14+
COALESCE(
15+
expression, <1>
16+
expression, <2>
17+
...)
1518
----
1619

1720
*Input*:
@@ -51,7 +54,10 @@ include-tagged::{sql-specs}/docs.csv-spec[coalesceReturnNull]
5154
.Synopsis:
5255
[source, sql]
5356
----
54-
GREATEST(expression<1>, expression<2>, ...)
57+
GREATEST(
58+
expression, <1>
59+
expression, <2>
60+
...)
5561
----
5662

5763
*Input*:
@@ -92,7 +98,9 @@ include-tagged::{sql-specs}/docs.csv-spec[greatestReturnNull]
9298
.Synopsis:
9399
[source, sql]
94100
----
95-
IFNULL(expression<1>, expression<2>)
101+
IFNULL(
102+
expression, <1>
103+
expression) <2>
96104
----
97105

98106
*Input*:
@@ -129,7 +137,9 @@ include-tagged::{sql-specs}/docs.csv-spec[ifNullReturnSecond]
129137
.Synopsis:
130138
[source, sql]
131139
----
132-
ISNULL(expression<1>, expression<2>)
140+
ISNULL(
141+
expression, <1>
142+
expression) <2>
133143
----
134144

135145
*Input*:
@@ -166,7 +176,10 @@ include-tagged::{sql-specs}/docs.csv-spec[isNullReturnSecond]
166176
.Synopsis:
167177
[source, sql]
168178
----
169-
LEAST(expression<1>, expression<2>, ...)
179+
LEAST(
180+
expression, <1>
181+
expression, <2>
182+
...)
170183
----
171184

172185
*Input*:
@@ -208,7 +221,9 @@ include-tagged::{sql-specs}/docs.csv-spec[leastReturnNull]
208221
.Synopsis:
209222
[source, sql]
210223
----
211-
NULLIF(expression<1>, expression<2>)
224+
NULLIF(
225+
expression, <1>
226+
expression) <2>
212227
----
213228

214229
*Input*:
@@ -243,7 +258,9 @@ include-tagged::{sql-specs}/docs.csv-spec[nullIfReturnNull]
243258
.Synopsis:
244259
[source, sql]
245260
----
246-
NVL(expression<1>, expression<2>)
261+
NVL(
262+
expression, <1>
263+
expression) <2>
247264
----
248265

249266
*Input*:

0 commit comments

Comments
 (0)