Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
When running from sqlci, the compiler emits some odd output when you select a column that doesn't exist in a Trafodion table. Here's an example:
>>create table temp (a integer not null, b integer, primary key (a));
— SQL operation complete.
>>select turkey from temp;
TURKEY ( -99 -99) ( -99 -99) ( -99 -99)
TURKEY ( -99 -99) ( -99 -99) ( -99 -99)
-
-
- ERROR[4001] Column TURKEY is not found. Tables in scope: TRAFODION.SCH.TEMP. Default schema: TRAFODION.SCH.
-
-
-
- ERROR[8822] The statement was not prepared.
-
>>