Skip to content

Commit 804d15d

Browse files
committed
bold Note
1 parent 289e5ae commit 804d15d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/sql-ref-identifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ An identifier is a string used to identify a database object such as a table, vi
3030
```sql
3131
{ letter | digit | '_' } [ , ... ]
3232
```
33-
Note: If `spark.sql.ansi.enabled` is set to true, ANSI SQL reserved keywords cannot be used as identifiers. For more details, please refer to [ANSI Compliance](sql-ref-ansi-compliance.html).
33+
**Note:** If `spark.sql.ansi.enabled` is set to true, ANSI SQL reserved keywords cannot be used as identifiers. For more details, please refer to [ANSI Compliance](sql-ref-ansi-compliance.html).
3434

3535
#### Delimited Identifier
3636

docs/sql-ref-literals.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ DATE { 'yyyy' |
345345
'yyyy-[m]m-[d]d' |
346346
'yyyy-[m]m-[d]d[T]' }
347347
```
348-
Note: defaults to `01` if month or day is not specified.
348+
**Note:** defaults to `01` if month or day is not specified.
349349
350350
##### Examples
351351
@@ -386,7 +386,7 @@ TIMESTAMP { 'yyyy' |
386386
'yyyy-[m]m-[d]d[T][h]h:[m]m:[s]s[.]' |
387387
'yyyy-[m]m-[d]d[T][h]h:[m]m:[s]s.[ms][ms][ms][us][us][us][zone_id]'}
388388
```
389-
Note: defaults to `00` if hour, minute or second is not specified.
389+
**Note:** defaults to `00` if hour, minute or second is not specified.
390390
`zone_id` should have one of the forms:
391391
* Z - Zulu time zone UTC+0
392392
* `+|-[h]h:[m]m`
@@ -397,7 +397,7 @@ Note: defaults to `00` if hour, minute or second is not specified.
397397
* `+|-hhmmss`
398398
* Region-based zone IDs in the form `area/city`, such as `Europe/Paris`
399399
400-
Note: defaults to the session local timezone (set via `spark.sql.session.timeZone`) if `zone_id` is not specified.
400+
**Note:** defaults to the session local timezone (set via `spark.sql.session.timeZone`) if `zone_id` is not specified.
401401
402402
##### Examples
403403

docs/sql-ref-syntax-qry-sampling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The `TABLESAMPLE` statement is used to sample the table. It supports the followi
2626
* `TABLESAMPLE`(x `PERCENT`): Sample the table down to the given percentage. Note that percentages are defined as a number between 0 and 100.
2727
* `TABLESAMPLE`(`BUCKET` x `OUT OF` y): Sample the table down to a `x` out of `y` fraction.
2828

29-
Note: `TABLESAMPLE` returns the approximate number of rows or fraction requested.
29+
**Note:** `TABLESAMPLE` returns the approximate number of rows or fraction requested.
3030

3131
### Syntax
3232

0 commit comments

Comments
 (0)