This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 200481 - Evaluating... is getting old
Summary: Evaluating... is getting old
Status: RESOLVED DUPLICATE of bug 215728
Alias: None
Product: php
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 7.1
Hardware: PC Windows XP
: P3 normal with 2 votes (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-28 14:54 UTC by monk.e.boy
Modified: 2012-07-19 12:50 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description monk.e.boy 2011-07-28 14:54:22 UTC
Sometimes the Variables window shows a row that has Evaluating... in the Value column.

Workaround: Hover over the variable in the editor until the tooltip shows, then double click in the Variables window on the word Evaluating... sometimes the variables value gets plucked from the twisting nether.

I'm using PHP, Zend Framework and Doctrine.
Comment 1 monk.e.boy 2011-09-01 16:11:18 UTC
Can I make this P1? Seeing the contents of a variable while debugging seems like an important part of an IDE.

I'm sure it's a weird update bug, if you open and close the Variables window, hover the variable in the editor and click on the '...' button next to the variable value in the Variables window eventually a refresh occurs and the 'Evaluating...' goes away.
Comment 2 Ondrej Brejla 2011-09-02 08:57:47 UTC
No it's not P1...it's definitely P3, it's not simply reproducible... P1 bugs crash the IDE and theese such things, P3 is a common bug. So let it be as P3, thanks.
Comment 3 monk.e.boy 2011-09-02 10:03:28 UTC
Yeah, I guess that I'm seeing it all the time must be an artifact of my project. I'm using Zend Framework stock setup with Doctrine 1.2 as the ORM.

When I create a Doctrine query e.g. http://www.doctrine-project.org/projects/orm/1.2/docs/manual/dql-doctrine-query-language/pl#join-syntax then break on the line:

echo $q->getSqlQuery();

and inspect $q and look for "_sql" then step 1 line and inspect "_sql" again and I see the bug 'Evaluating...'

In our project we wouldn't be doing the echo:

echo $q->getSqlQuery();

we'd be stepping over a line such as:

$rows = $q->execute();

and trying to inspect the SQL it's tried to run.
Comment 4 miked_187 2012-01-24 16:17:42 UTC
I see this issue all the time too, as a workaround I'll add a few lines of dummy code after the big sql blob that is causing the evaluating prob, set the breakpoint on the next line after the query and sometimes the eval will update after I step over a few lines of the dummy code.  

$sql = "select this from that...";
$x=1;
$x=1;

etc

obrejla states that this is not reproducible, I can reproduce it within my setup, is there a way to get data to you at the moment it occurs to help you troubleshoot?
Comment 5 Ondrej Brejla 2012-07-19 12:50:34 UTC
Simple reproducible use case in issue #215728, so marking as duplicate. Will try to look at it for 7.3. Thanks.

*** This bug has been marked as a duplicate of bug 215728 ***