Skip to content

Commit c4d2cd7

Browse files
authored
chore: fix CI failures on ddl.md (#16526)
* chore: fix CI failures on `ddl.md` * chore: fix CI failures on `ddl.md`
1 parent 15a8738 commit c4d2cd7

File tree

1 file changed

+2
-4
lines changed
  • docs/source/user-guide/sql

1 file changed

+2
-4
lines changed

docs/source/user-guide/sql/ddl.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ DESCRIBE users;
343343

344344
Output:
345345

346-
```
346+
```sql
347347
+--------------+-----------+-------------+
348348
| column_name | data_type | is_nullable |
349349
+--------------+-----------+-------------+
@@ -374,7 +374,7 @@ DESCRIBE taxi;
374374

375375
Output might show:
376376

377-
```
377+
```sql
378378
+--------------------+-----------------------------+-------------+
379379
| column_name | data_type | is_nullable |
380380
+--------------------+-----------------------------+-------------+
@@ -385,11 +385,9 @@ Output might show:
385385
+--------------------+-----------------------------+-------------+
386386
```
387387

388-
:::{note}
389388
The `DESCRIBE` command works with all table types in DataFusion, including:
390389

391390
- Regular tables created with `CREATE TABLE`
392391
- External tables created with `CREATE EXTERNAL TABLE`
393392
- Views created with `CREATE VIEW`
394393
- Tables in different schemas using qualified names (e.g., `DESCRIBE schema_name.table_name`)
395-
:::

0 commit comments

Comments
 (0)