Minor fix

This commit is contained in:
gyuton 2021-10-22 17:56:10 +03:00
parent b55a9cc6d4
commit 6111f61b2c

View File

@ -145,13 +145,13 @@ Type: [Float](../../sql-reference/data-types/float.md).
Query: Query:
```sql ```sql
SELECT max2(-1, 2); SELECT min2(-1, 2);
``` ```
Result: Result:
```text ```text
┌─max2(-1, 2)─┐ ┌─min2(-1, 2)─┐
2 -1
└─────────────┘ └─────────────┘
``` ```