Module Sequel::Postgres::LooseCount
In: lib/sequel/extensions/pg_loose_count.rb

Methods

Public Instance methods

Look at the table statistics for the given table to get an approximate count of the number of rows.

[Source]

    # File lib/sequel/extensions/pg_loose_count.rb, line 29
29:       def loose_count(table)
30:         from(:pg_class).where(:oid=>regclass_oid(table)).get(Sequel.cast(:reltuples, Integer))
31:       end

[Validate]