[HDBDD] Simple Table Types are not Created
Opened this issue · 0 comments
ThuF commented
It seems that the following "simple" table types are not created:
namespace com.codbex.hdbdd;
@Schema: 'TEST_SCHEMA'
context Test {
type MyInteger : Integer;
...
};
Only "complex" table types are being created:
namespace com.codbex.hdbdd;
@Schema: 'TEST_SCHEMA'
context Test {
type HttpStatusCode {
statusCode: Integer;
statusMessage: String(256);
};
...
};
Related to: