-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Milestone
Description
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:
Reactions are currently unavailable