I defined the following which could be activate successfully:
context test {
Type type0 {
firstname : String(10);
lastname : String(10);
city : String(10);
post_cde : Integer;
};
Type type1 {
tel : Integer;
};
@Catalog.tableType: #COLUMN
Entity test_tab {
key name : type0;
tel : type1;
};
}; //context test
I changed to the following which was also actiavted successfully:
context test {
Type type0 {
firstname : String(10);
lastname : String(10);
// city : String(10);
// post_cde : Integer;
};
Type type1 {
tel : Integer;
};
@Catalog.tableType: #COLUMN
Entity test_tab {
key name : type0;
tel : type1;
};
}; //context test
I then changed back to the first definition above and then get the following activation error
What is going on?
Initially it activated without a problem and now it is suddenly complaining.