Re: Question about a CIDR based query - Mailing list pgsql-sql

From siganos@gmail.com (George Siganos)
Subject Re: Question about a CIDR based query
Date
Msg-id ebba5a93.0407020939.3734121b@posting.google.com
Whole thread Raw
In response to Question about a CIDR based query  (Georgos Siganos <siganos@gmail.com>)
List pgsql-sql
Hi Josh,
Ok, first the explain analyze ....

June_03=# explain analyze select * from tmp where route
>>='62.1.1.0/24';                                               QUERY PLAN
-----------------------------------------------------------------------------------------------------------Seq Scan on
tmp (cost=0.00..606.60 rows=14544 width=33) (actual
 
time=3.862..15.366 rows=1 loops=1)  Filter: (route >>= '62.1.1.0/24'::cidr)Total runtime: 15.493 ms
(3 rows)

And the version of postgres

June_03=# select version();                                                     version

--------------------------------------------------------------------------------------------------------------------PostgreSQL
7.4.1on i686-pc-linux-gnu, compiled by GCC gcc (GCC)
 
3.3.2 20031022 (Gentoo Linux 3.3.2-r2, propolice)
(1 row)

Thanks,
Georgos

josh@agliodbs.com (Josh Berkus) wrote in message news:<200406292049.06283.josh@agliodbs.com>...
> George,
> 
> > Um, no, I need an EXPLAIN ANALYZE, not just an EXPLAIN.   Thanks.
> >
> > > June_03=# explain select * from tmp where route >>='62.1.1.0/24';
> > >                            QUERY PLAN
> > > ----------------------------------------------------------------
> > >  Seq Scan on tmp  (cost=0.00..606.60 rows=14544 width=33)
> > >    Filter: (route >>= '62.1.1.0/24'::cidr)
> 
> Oh, and also a SELECT VERSION(); would be nice.


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: best method to copy data across databases
Next
From: Markus Bertheau
Date:
Subject: Why no exprs in format string to RAISE