From: | Alvaro Herrera <alvherre(at)2ndquadrant(dot)com> |
---|---|
To: | Peter Moser <pitiz29a(at)gmail(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Development with Eclipse - Wrong error messages in IDE |
Date: | 2016-02-04 22:39:27 |
Message-ID: | 20160204223927.GA243697@alvherre.pgsql |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Peter Moser wrote:
> I have some strange error message inside Eclipse, that some symbols cannot
> be found. I work with version 9.6 currently. For instance,
>
> Symbol 'RM_HEAP_ID' could not be resolved
> src/backend/access/heap/heapam.c
>
> It affects all occurrences of symbols that are defined in
> src/include/access/rmgrlist.h. Eclipse just says "Syntax error" here.
>
> However, the source code compiles and runs without any compile-time error or
> warning. It is just an IDE problem I think, but it distracts me from finding
> real bugs.
Disclaimer: I've never used eclipse.
The problem is some perhaps-too-clever stuff we do to avoid repetitive
declarations of things. The rmgr stuff uses a PG_RMGR macro, which is
defined differently in src/backend/access/transam/rmgr.c and
src/include/access/rmgr.h; the latter contains the actual enum
definition. On the other hand Eclipse is trying to be too clever by
processing the C files, but not actually getting it completely right
(which is understandable, really). We have other similar cases, such as
grammar keywords (kwlist.h)
I'm afraid that you'd have to teach Eclipse to deal with such things
(which might be tricky) or live with it.
--
Álvaro Herrera http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2016-02-04 22:57:43 | Re: "using previous checkpoint record at" maybe not the greatest idea? |
Previous Message | Tom Lane | 2016-02-04 22:34:45 | Re: UNIQUE capability to hash indexes |