RE: 7.0 like selectivity - Mailing list pgsql-hackers

From Hiroshi Inoue
Subject RE: 7.0 like selectivity
Date
Msg-id 000801bfa02c$a36b8100$2801007e@tpf.co.jp
Whole thread Raw
In response to RE: 7.0 like selectivity  ("Hiroshi Inoue" <Inoue@tpf.co.jp>)
Responses Re: 7.0 like selectivity  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
I've gotten  the plans from Akira Imagawa.

Regards.

Hiroshi Inoue
Inoue@tpf.co.jp 

> -----Original Message-----
> From: pgsql-hackers-owner@hub.org [mailto:pgsql-hackers-owner@hub.org]On
> Behalf Of Hiroshi Inoue
> Sent: Friday, April 07, 2000 8:39 AM
> To: Tom Lane
> Cc: pgsql-hackers
> Subject: RE: [HACKERS] 7.0 like selectivity 
> 
> 
> > -----Original Message-----
> > From: Tom Lane [mailto:tgl@sss.pgh.pa.us]
> > 
> > "Hiroshi Inoue" <Inoue@tpf.co.jp> writes:
> > > For the query
> > > select hoge_cd,shimeinn,tel
> > >  from t_hoge
> > >  where shimeinn like 'imag%'
> > >    and tel like '012%'
> > >  order by hoge_cd
> > >  limit 100;
> > 
> > > 64 rows returned immediately.

Sort  (cost=0.01..0.01 rows=1 width=28) ->  Index Scan using t_hoge_ix1 on t_hoge  (cost=0.00..0.00 rows=1 wid
th=28)

> > 
> > > And for the query
> > > select hoge_cd,shimeinn,tel
> > >  from t_hoge
> > >  where shimeinn like 'imag%'
> > >    and tel like '012-3%'
> > >  order by hoge_cd
> > >   limit 100;
> > 
> > > 24 rows returned after waiting 8 minutes.

Sort  (cost=0.01..0.01 rows=1 width=28) ->  Index Scan using t_hoge_ix3 on t_hoge  (cost=0.00..0.00 rows=1 wid
th=28)




pgsql-hackers by date:

Previous
From: Don Baccus
Date:
Subject: Re: Unique Key Violation 7.0 vs. 6.5.3
Next
From: Bruce Momjian
Date:
Subject: Re: Unique Key Violation 7.0 vs. 6.5.3