mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
5c90d21751
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
19 lines
117 B
Plaintext
19 lines
117 B
Plaintext
tuple()
|
|
tuple(1)
|
|
(1, 2)
|
|
(1, 2)
|
|
(1, 2, 3)
|
|
(1, '2', 3)
|
|
(1, (2, 3), 4)
|
|
(1, (2, (3, 4)), 5)
|
|
2
|
|
2
|
|
null
|
|
4
|
|
4
|
|
4
|
|
null
|
|
null
|
|
4
|
|
5
|