Eduardo Morras <[EMAIL PROTECTED]> wrote:
> Hello:
> 
>   I'm trying to use altivec simd code to SQLite. Has read hash.c
> but it looks like hashing is done one by one when insert data.
> Is it true? When is called rehash function? If i insert data with
> index i think hashing happens one by one, but if i insert all 
> data and after that make an index rehash works. Can anyone confirm
> this? Rehash function is the only one i can convert to altivec 
> (with it's own hashing functions).
> 

The hash.c code is only used for some internal housekeeping
details within SQLite.  (Symbol tables and that kind of thing.)
It does not come into play when actually executing SQL statements.
SQL data is stored using B-Trees only.  No hashing.

--
D. Richard Hipp  <[EMAIL PROTECTED]>


-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to