Taras Ledkov created IGNITE-13200:
-------------------------------------
Summary: SQL create index on invalid data type
Key: IGNITE-13200
URL:
https://issues.apache.org/jira/browse/IGNITE-13200 Project: Ignite
Issue Type: Bug
Components: sql
Affects Versions: 2.8.1
Reporter: Taras Ledkov
Assignee: Taras Ledkov
Fix For: 2.9
*Reproduce*
- Create cache with value class
{code}
private static class Value {
@QuerySqlField
int val_int;
java.util.Date val_date;
}
{code}
- alter table with command
{{ALTER TABLE TEST ADD COLUMN (VAL_DATE DATE)}}
- try to create index with command
{{CREATE INDEX TEST_VAL_DATE_IDX ON TEST(VAL_DATE)}}
{{CorruptedTreeException}} is thrown, the node is stopped.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)