Server crashes when it run SQL
------------------------------

                 Key: CORE-6137
                 URL: http://tracker.firebirdsql.org/browse/CORE-6137
             Project: Firebird Core
          Issue Type: Bug
          Components: Engine
    Affects Versions: 3.0.4, 3.0.3, 3.0.2, 3.0.5
         Environment: Linux CentOs 7 and Windows 8.1. Firebird 64 bit Super and 
Classic.
            Reporter: Vadim Mescheryakov
            Priority: Critical


Server crashes when it runs SQL. 

Error:
Unsuccessful execution caused by a system error that precludes successful 
execution of subsequent statements.
internal Firebird consistency check (can't continue after bugcheck).

SQL:

select  tmp_labelbarcode.BARCODE
from    tmp_labelbarcode
where   tmp_labelbarcode.BARCODE = '462713603936820000004620016596753'
order by  tmp_labelbarcode.BARCODE

Table

CREATE TABLE TMP_LABELBARCODE (
    ID       INTEGER NOT NULL,
    BARCODE  CHAR(20) NOT NULL,
    IDLABEL  INTEGER NOT NULL
);

ALTER TABLE TMP_LABELBARCODE ADD PRIMARY KEY (ID);
CREATE INDEX TMLB_BARCODE ON TMP_LABELBARCODE (BARCODE);
CREATE INDEX TMLB_IDLABEL ON TMP_LABELBARCODE (IDLABEL);
CREATE UNIQUE INDEX TMP_LABELBARCODE_IDX1 ON TMP_LABELBARCODE (BARCODE, 
IDLABEL);


Error is only table with data.
May be it depends on data in  rows




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to