ClickHouse/tests/queries/0_stateless/02676_trailing_commas.reference
Aleksandr Musorin e6352234c3 Added parsing trailing symbols for type expressions
```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
2024-01-26 17:56:14 +01:00

9 lines
48 B
Plaintext

1
1
1
1 2 0
1
(1,'foo')
(1,'foo')
(1,(2,'foo'))