File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -688,7 +688,7 @@ arangodb::aql::AstNode* Index::specializeCondition(arangodb::aql::AstNode* /* no
688
688
arangodb::aql::Variable const * /* reference */ ) const {
689
689
// the default implementation should never be called
690
690
TRI_ASSERT (false );
691
- THROW_ARANGO_EXCEPTION_MESSAGE (TRI_ERROR_INTERNAL, " no default implementation for specializeCondition" );
691
+ THROW_ARANGO_EXCEPTION_MESSAGE (TRI_ERROR_INTERNAL, std::string ( " no default implementation for specializeCondition. index type: " ) + typeName () );
692
692
}
693
693
694
694
std::unique_ptr<IndexIterator> Index::iteratorForCondition (transaction::Methods* /* trx */ ,
@@ -697,7 +697,7 @@ std::unique_ptr<IndexIterator> Index::iteratorForCondition(transaction::Methods*
697
697
IndexIteratorOptions const & /* opts */ ) {
698
698
// the default implementation should never be called
699
699
TRI_ASSERT (false );
700
- THROW_ARANGO_EXCEPTION_MESSAGE (TRI_ERROR_INTERNAL, " no default implementation for iteratorForCondition" );
700
+ THROW_ARANGO_EXCEPTION_MESSAGE (TRI_ERROR_INTERNAL, std::string ( " no default implementation for iteratorForCondition. index type: " ) + typeName () );
701
701
}
702
702
703
703
// / @brief perform some base checks for an index condition part
You can’t perform that action at this time.
0 commit comments