Since this issue is related to importing, I think it wouldn't change its functionality if we changed the NUMBER data type to INTEGER, would it? Here is an excerpt from the actual code of /hibernate-core/src/test/resources/org/hibernate/test/fileimport/multi-line-statements.sql
CREATE TABLE test_data (
id NUMBER NOT NULL PRIMARY KEY -- primary key
, text VARCHAR2(100) /* any other data */
);
This multi-line import test will fail in CUBRID as NUMBER is not a data type (yet). Would it be ok if I sent a pull request with a patch by replacing NUMBER with INTEGER?
Since this issue is related to importing, I think it wouldn't change its functionality if we changed the NUMBER data type to INTEGER, would it? Here is an excerpt from the actual code of /hibernate-core/src/test/resources/org/hibernate/test/fileimport/multi-line-statements.sql
This multi-line import test will fail in CUBRID as NUMBER is not a data type (yet). Would it be ok if I sent a pull request with a patch by replacing NUMBER with INTEGER?