github.com/greenplum-db/gpbackup@v0.0.0-20240517212602-89daab1885b3/ci/scale/sql/pull_rowcount.sql (about) 1 SELECT 2 table_schema, 3 table_name, 4 big.cnt_rows(table_name) 5 FROM 6 information_schema.tables 7 WHERE 8 table_schema = 'big' 9 AND table_type='BASE TABLE' 10 ORDER BY 11 table_schema, 12 table_name 13