Skip to content

Commit 8150f8f

Browse files
committed
fix(v3): pretty SQL
1 parent 3204763 commit 8150f8f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

content/influxdb/cloud-dedicated/admin/query-system-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ SELECT *
178178
FROM system.partitions
179179
WHERE
180180
table_name = 'TABLE_NAME'
181-
AND partition_key = 'PARTITION_KEY';
181+
AND partition_key = 'PARTITION_KEY';
182182
```
183183
{{% /code-placeholders %}}
184184

@@ -201,7 +201,7 @@ SELECT *
201201
FROM system.partitions
202202
WHERE
203203
table_name = 'TABLE_NAME'
204-
AND partition_id = PARTITION_ID;
204+
AND partition_id = PARTITION_ID;
205205
```
206206
{{% /code-placeholders %}}
207207

@@ -221,7 +221,7 @@ SELECT
221221
FROM system.partitions
222222
WHERE
223223
table_name = 'TABLE_NAME'
224-
AND partition_key = 'PARTITION_KEY';
224+
AND partition_key = 'PARTITION_KEY';
225225
```
226226
{{% /code-placeholders %}}
227227

content/influxdb/clustered/admin/query-system-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ SELECT *
178178
FROM system.partitions
179179
WHERE
180180
table_name = 'TABLE_NAME'
181-
AND partition_key = 'PARTITION_KEY';
181+
AND partition_key = 'PARTITION_KEY';
182182
```
183183
{{% /code-placeholders %}}
184184

@@ -201,7 +201,7 @@ SELECT *
201201
FROM system.partitions
202202
WHERE
203203
table_name = 'TABLE_NAME'
204-
AND partition_id = PARTITION_ID;
204+
AND partition_id = PARTITION_ID;
205205
```
206206
{{% /code-placeholders %}}
207207

@@ -221,7 +221,7 @@ SELECT
221221
FROM system.partitions
222222
WHERE
223223
table_name = 'TABLE_NAME'
224-
AND partition_key = 'PARTITION_KEY';
224+
AND partition_key = 'PARTITION_KEY';
225225
```
226226
{{% /code-placeholders %}}
227227

0 commit comments

Comments
 (0)