
Key: |
CORE-4557
|
Type: |
Bug
|
Status: |
Closed
|
Resolution: |
Fixed
|
Priority: |
Major
|
Assignee: |
Unassigned
|
Reporter: |
Pavel Zotov
|
Votes: |
0
|
Watchers: |
5
|
If you were logged in you would be able to see more operations.
|
|
|
QA Status: |
Done successfully
|
ISQL Version: WI-T3.0.0.31334 Firebird 3.0 Alpha 2
Server version:
WI-T3.0.0.31334 Firebird 3.0 Alpha 2
WI-T3.0.0.31334 Firebird 3.0 Alpha 2/tcp (IT_test)/P13:C
WI-T3.0.0.31334 Firebird 3.0 Alpha 2/tcp (IT_test)/P13:C
The following script being run on new database will lead to FB crash if UNCOMMENT statement: 'show domain'.
Crash seems on EXIT command (also on QUIT one):
create collation name_coll for utf8 from unicode CASE INSENSITIVE;
create collation nums_coll for utf8 from unicode CASE INSENSITIVE 'NUMERIC-SORT=1';
commit;
create domain dm_name as varchar(80) character set utf8 collate name_coll;
create domain dm_nums as varchar(20) character set utf8 collate nums_coll;
commit;
--show domain; -- FB crashes if this will be uncommented
exit;
PS. OS: Win XP 2002 SP 3.
|
Description
|
ISQL Version: WI-T3.0.0.31334 Firebird 3.0 Alpha 2
Server version:
WI-T3.0.0.31334 Firebird 3.0 Alpha 2
WI-T3.0.0.31334 Firebird 3.0 Alpha 2/tcp (IT_test)/P13:C
WI-T3.0.0.31334 Firebird 3.0 Alpha 2/tcp (IT_test)/P13:C
The following script being run on new database will lead to FB crash if UNCOMMENT statement: 'show domain'.
Crash seems on EXIT command (also on QUIT one):
create collation name_coll for utf8 from unicode CASE INSENSITIVE;
create collation nums_coll for utf8 from unicode CASE INSENSITIVE 'NUMERIC-SORT=1';
commit;
create domain dm_name as varchar(80) character set utf8 collate name_coll;
create domain dm_nums as varchar(20) character set utf8 collate nums_coll;
commit;
--show domain; -- FB crashes if this will be uncommented
exit;
PS. OS: Win XP 2002 SP 3. |
Show » |
|
bin # ./isql
Use CONNECT or CREATE DATABASE to specify a database
SQL> create database 'qq.zz';
SQL> create collation name_coll for utf8 from unicode CASE INSENSITIVE;
SQL> create collation nums_coll for utf8 from unicode CASE INSENSITIVE 'NUMERIC-SORT=1';
SQL> commit;
SQL>
SQL> create domain dm_name as varchar(80) character set utf8 collate name_coll;
SQL> create domain dm_nums as varchar(20) character set utf8 collate nums_coll;
SQL> commit;
SQL> show domain;
DM_NAME DM_NUMS
SQL>
Version: LI-T3.0.0.31333 Firebird 3.0 Alpha 2, but I do not think it's important.