mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
e6352234c3
```sql SELECT (1, 'foo')::Tuple(a Int, b String,); SELECT (1, 'foo')::Tuple(Int, String,); SELECT (1, (2,'foo'))::Tuple(Int, Tuple(Int, String,),); ```` fix
9 lines
48 B
Plaintext
9 lines
48 B
Plaintext
1
|
|
1
|
|
1
|
|
1 2 0
|
|
1
|
|
(1,'foo')
|
|
(1,'foo')
|
|
(1,(2,'foo'))
|