I would like errors related to DDL or DataSource to be marked as propper errors (underlined in red or any other). Instead, for example, what I get when I refer to a non-existing table is just a yellow highlight, as if it were a warning.
I am using IntelliJ IDEA 12.
For example, this query is correct.
SELECT S.CODE_SERVICE FROM SERVICE S;
But in this query:
SELECT S.CODE_ZZERVIZZE FROM SERVICE S;
the word CODE_ZZERVIZZE will only be highlighted, and when I hover over the mouse, some warning message will be displayed:
unable to resolve column 'CODE_ZZERVIZZE' less... (Ctrl+F1)
This inspection performs unresolved SQL references check.
I would expect the line to be marked with a propper error so that I can clearly identify the compilation problem.
source
share