MySQL Forums
Forum List  »  Falcon

Re: Falcon indexes
Posted by: Tobias Asplund
Date: June 12, 2008 03:29PM

Just to clarify. What Ann is talking about is the internal index operations within Falcon, the execution layer can still do an index merge like it does with other engines.

mysql> EXPLAIN SELECT * FROM City WHERE CountryCode = 'SWE' OR Id BETWEEN 1 AND 10 \G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: City
type: index_merge
possible_keys: PRIMARY,CountryCode
key: CountryCode,PRIMARY
key_len: 3,4
ref: NULL
rows: 408
Extra: Using sort_union(CountryCode,PRIMARY); Using where
1 row in set (0.00 sec)

Options: ReplyQuote


Subject
Written By
Posted
June 05, 2008 12:23AM
June 05, 2008 02:41AM
June 12, 2008 02:42PM
Re: Falcon indexes
June 12, 2008 03:29PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.