Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Louise Berglund <[email protected]>
  • Loading branch information
NataliaIvakina and Lojjs authored Jun 28, 2024
1 parent 1599316 commit 0de4d08
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/ROOT/pages/notifications/all-notifications.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ m|HINT
|GQLSTATUS code
m|01N30
|StatusDescription
a|warn: join hint unfulfillable. Unable to create a plan with `JOIN ON $label`. Try to change the join key(s) or restructure your query.
a|warn: join hint unfulfillable. Unable to create a plan with `JOIN ON $var_list`. Try to change the join key(s) or restructure your query.
|Severity
m|WARNING
|Classification
Expand Down Expand Up @@ -906,7 +906,7 @@ m|HINT
======
=====

==== Example of when an index hint was given, but it was not possible to use the index
==== Example of inability to use the label index despite the given index hint

[.tabbed-example]
=====
Expand Down Expand Up @@ -949,15 +949,15 @@ Returned GQLSTATUS code::

Returned Status Description::
warn: hinted index not found.
Unable to create a plan with `INDEX a:Label(id)` because the index does not exist.
Unable to create a plan with `INDEX :Label(id)` because the index does not exist.

Suggestions for improvement::
The hinted index does not exist, make sure the label and property are spelled correctly.
If the spelling is correct, either create the index or remove the hint from the query.
======
=====

==== Example of when a relationship index hint was given, but it was not possible to use the index
==== Example of inability to use the relationship index despite the given index hint

[.tabbed-example]
=====
Expand Down Expand Up @@ -1000,7 +1000,7 @@ Returned GQLSTATUS code::

Returned Status Description::
warn: hinted index not found.
Unable to create a plan with `INDEX r:Rel(id)` because the index does not exist.
Unable to create a plan with `INDEX :Rel(id)` because the index does not exist.

Suggestions for improvement::
The hinted index does not exist, make sure the relationship type and property are spelled correctly.
Expand Down

0 comments on commit 0de4d08

Please sign in to comment.