summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg_catalog/pg_class.sql
blob: 28f3d66e28237ded2823ef64786f2646d672bb2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--!syntax_pg
select 
count(*) n,
min(oid) min_oid,
min(relispartition::text) min_isrel,
min(relkind) min_relkind,
min(relname) min_relname,
min(relnamespace) min_relns,
min(relowner) min_relowner,
max(oid) max_oid,
max(relispartition::text) max_isrel,
max(relkind) max_relkind,
max(relname) max_relname,
max(relnamespace) max_relns,
max(relowner) max_relowner,
min(relam) min_am,
max(relam) max_am
from
pg_catalog.pg_class;