### ArcadeDB Version `25.1.1` Currently a repeated fetch from a non-indexed type causes a log entry like: ``` Attempt to scan type '%s' of total size %s %d times. This operation is very expensive, consider using an index ``` see: https://github.com/ArcadeData/arcadedb/blob/main/engine/src/main/java/com/arcadedb/query/sql/executor/FetchFromTypeExecutionStep.java#L117 . This is a very useful help for a database designer, but it could still be improved by adding: * the to-be-fetched property or bucket name. (This makes only sense if a bucket _name_ is available and not only a number) * the name of the database in which the to-be-fetched type is.
ArcadeDB Version
25.1.1Currently a repeated fetch from a non-indexed type causes a log entry like:
see: https://github.com/ArcadeData/arcadedb/blob/main/engine/src/main/java/com/arcadedb/query/sql/executor/FetchFromTypeExecutionStep.java#L117 .
This is a very useful help for a database designer, but it could still be improved by adding: