deveel / deveeldb

DeveelDB is a complete SQL database system, primarly developed for .NET/Mono frameworks

Home Page:http://db.deveel.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support the Creation and Management of Indexes

tsutomi opened this issue · comments

The commands for creating and managing indexes of columns is currently intentionally excluded from selection plans, as it involves a level of analysis that would redesign the query plan building.

We should allow the user to execute commands like CREATE INDEX and DROP INDEX, and modify the query planner in order to create nodes for selection from indexes when SELECT are issued against exactly the indexed columns.