We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a regression observed some months ago.
Write a first query with profiling assuming the property name is indexed
name
PROFILE MATCH (n:Person { name: "superman"}) RETURN n
Then modify the query for another field non indexed
PROFILE MATCH (n:Person { title: "superman"}) RETURN n
You will see at the bottom that the statistics of the profiling didnt change, it keep displaying the one from the first query.
I should see the profiling statistics of the last query I have executed in the window
I see the profiling statistics of the very first time I executed the query.
Manual quick win: Launch a query in a new window
Fix: update the data at the bottom of the window
PR => #1455
The text was updated successfully, but these errors were encountered:
Closing this as we merged your PR
Sorry, something went wrong.
No branches or pull requests
This is a regression observed some months ago.
Description
Reproduce Steps
Write a first query with profiling assuming the property
name
is indexedPROFILE MATCH (n:Person { name: "superman"}) RETURN n
Then modify the query for another field non indexed
PROFILE MATCH (n:Person { title: "superman"}) RETURN n
You will see at the bottom that the statistics of the profiling didnt change, it keep displaying the one from the first query.
Expected Behavior
I should see the profiling statistics of the last query I have executed in the window
Current Behavior
I see the profiling statistics of the very first time I executed the query.
Can you propose a solution?
Manual quick win: Launch a query in a new window
Fix: update the data at the bottom of the window
PR => #1455
Your Environment
The text was updated successfully, but these errors were encountered: