fix(v3): pretty SQL

pull/5602/head
Jason Stirnaman 2024-09-19 15:40:35 -05:00
parent 683f8204e5
commit e5367cd5b7
2 changed files with 6 additions and 6 deletions

View File

@ -178,7 +178,7 @@ SELECT *
FROM system.partitions
WHERE
table_name = 'TABLE_NAME'
AND partition_key = 'PARTITION_KEY';
AND partition_key = 'PARTITION_KEY';
```
{{% /code-placeholders %}}
@ -201,7 +201,7 @@ SELECT *
FROM system.partitions
WHERE
table_name = 'TABLE_NAME'
AND partition_id = PARTITION_ID;
AND partition_id = PARTITION_ID;
```
{{% /code-placeholders %}}
@ -221,7 +221,7 @@ SELECT
FROM system.partitions
WHERE
table_name = 'TABLE_NAME'
AND partition_key = 'PARTITION_KEY';
AND partition_key = 'PARTITION_KEY';
```
{{% /code-placeholders %}}

View File

@ -178,7 +178,7 @@ SELECT *
FROM system.partitions
WHERE
table_name = 'TABLE_NAME'
AND partition_key = 'PARTITION_KEY';
AND partition_key = 'PARTITION_KEY';
```
{{% /code-placeholders %}}
@ -201,7 +201,7 @@ SELECT *
FROM system.partitions
WHERE
table_name = 'TABLE_NAME'
AND partition_id = PARTITION_ID;
AND partition_id = PARTITION_ID;
```
{{% /code-placeholders %}}
@ -221,7 +221,7 @@ SELECT
FROM system.partitions
WHERE
table_name = 'TABLE_NAME'
AND partition_key = 'PARTITION_KEY';
AND partition_key = 'PARTITION_KEY';
```
{{% /code-placeholders %}}