yugabyte=# SELECT current_date, now(), random(), ARRAY[1,2,3], ARRAY['A','B','C'];
current_date | now | random | array | array
--------------+-------------------------------+--------------------+---------+---------
2022-04-18 | 2022-04-18 18:33:48.202925+00 | 0.0395637578330934 | {1,2,3} | {A,B,C}
(1 row)
yugabyte=# \gdesc
Column | Type
--------------+--------------------------
current_date | date
now | timestamp with time zone
random | double precision
array | integer[]
array | text[]
(5 rows)