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 164167 - Inaccuracy tests: regression in MySQL ('mark_as_const' identifier)
Summary: Inaccuracy tests: regression in MySQL ('mark_as_const' identifier)
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
: 147803 (view as bug list)
Depends on:
Blocks:
 
Reported: 2009-04-30 10:23 UTC by soldatov
Modified: 2009-05-01 08:22 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 soldatov 2009-04-30 10:23:46 UTC
diff /net/vvv-qa/export/inaccuracy_results/dynamo/090423_105456/log_MySQL.txt
/net/vvv-qa/export/inaccuracy_results/dynamo/090430_010932/log_MySQL.txt
924a925,930
> /export/new_projects/mysql-5.0.18/sql/item.cc 611 Unable to resolve identifier mark_as_const
> /export/new_projects/mysql-5.0.18/sql/item.cc 627 Unable to resolve identifier mark_as_const
> /export/new_projects/mysql-5.0.18/sql/item.cc 643 Unable to resolve identifier mark_as_const
> /export/new_projects/mysql-5.0.18/sql/item.cc 669 Unable to resolve identifier mark_as_const
> /export/new_projects/mysql-5.0.18/sql/item.cc 684 Unable to resolve identifier mark_as_const
> /export/new_projects/mysql-5.0.18/sql/item.cc 714 Unable to resolve identifier mark_as_const
926c932,933
< Name = /export/new_projects/mysql-5.0.18/sql/item.cc, Errors = 0, Warnings = 0, Invalid identifiers = 1, Invalid
identifiers (Warnings) = 0, Other Annotations = 0, Lines = 6112
---
> /export/new_projects/mysql-5.0.18/sql/item.cc 4266 Unable to resolve identifier mark_as_const
> Name = /export/new_projects/mysql-5.0.18/sql/item.cc, Errors = 0, Warnings = 0, Invalid identifiers = 8, Invalid
identifiers (Warnings) = 0, Other Annotations = 0, Lines = 6112
940c947,948
< Name = /export/new_projects/mysql-5.0.18/sql/item_strfunc.cc, Errors = 0, Warnings = 0, Invalid identifiers = 0,
Invalid identifiers (Warnings) = 0, Other Annotations = 0, Lines = 3062
---
> /export/new_projects/mysql-5.0.18/sql/item_strfunc.cc 1612 Unable to resolve identifier mark_as_const
> Name = /export/new_projects/mysql-5.0.18/sql/item_strfunc.cc, Errors = 0, Warnings = 0, Invalid identifiers = 1,
Invalid identifiers (Warnings) = 0, Other Annotations = 0, Lines = 3062
Comment 1 Vladimir Voskresensky 2009-04-30 12:27:12 UTC
the problem is symlink-based
Comment 2 Vladimir Voskresensky 2009-04-30 12:55:29 UTC
*** Issue 147803 has been marked as a duplicate of this issue. ***
Comment 3 Vladimir Voskresensky 2009-04-30 13:04:02 UTC
there are two folders:
sql/
   file.cc
   shared_header.h
   string.h
client/
   file2.cc
   shared_header.h -> symlynk ../sql/shared_header.h
   string.h

shared_header.h have
#include "string.h"
now we have only one shared_header.h in model and it includes only one "string.h" file
we need both  shared_header.h where each of them include correct string.h from the same directory
Comment 5 Quality Engineering 2009-05-01 08:22:03 UTC
Integrated into 'main-golden', will be available in build *200905010201* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main-golden/rev/c977064a987d
User: Vladimir Voskresensky <vv159170@netbeans.org>
Log: fixed IZ#164167: Inaccuracy tests: regression in MySQL ('mark_as_const' identifier)