Hi, The next version of H2 will not allow to create indexes on BLOB and CLOB columns.
> I am assuming that a regular index or fulltext index does not speed up regex > or like queries? Currently not. A regular index can in theory speed up queries of the form "column like 'xxx%'", but in practice such indexes are still bad because they load a lot of data (log(n) rows, but each row can be very big). > Currently the fulltext index is created for the whole database and there can > be only one index / database. You can define what tables / columns to index: http://h2database.com/javadoc/org/h2/fulltext/FullText.html#createIndex_Connection_String_String_String But it's true that there is only one fulltext index per database. > Maybe in the future the fulltext index could be made as just one of the > possible index types for character based columns? Yes, that would be an option. Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
