[ 
https://issues.apache.org/jira/browse/METAMODEL-131?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14481548#comment-14481548
 ] 

ASF GitHub Bot commented on METAMODEL-131:
------------------------------------------

Github user kaspersorensen commented on the pull request:

    https://github.com/apache/metamodel/pull/14#issuecomment-90182736
  
    OK maybe that's the case - I didn't think so because of the above articles. 
When you say "all databases MetaModel supports", do you then include the ones 
that are not included in the (non-integration) tests?
    
     * PostgreSQL
     * MS SQL Server
     * Oracle
     * MySQL
     * IBM DB2
    
    Those are needed to work.
    
    Do we have a test case to ensure that the new syntax is working (see 
JdbcTestTemplates which is used for most unit and integration tests).


> Create table with composite primary key gives error.
> ----------------------------------------------------
>
>                 Key: METAMODEL-131
>                 URL: https://issues.apache.org/jira/browse/METAMODEL-131
>             Project: Apache MetaModel
>          Issue Type: Bug
>            Reporter: Hosur Narahari
>
> Creating table with primary key is not possible since while generating sql we 
> add "PRIMARY KEY" keyword to each column which results in error in case of 
> composite primary keys. Below is the code.
> context.executeUpdate(new UpdateScript() {
>                       
>                       @Override
>                       public void run(UpdateCallback callback) {
>                               callback.createTable("amass", "test").
>                               
> withColumn("id").ofType(ColumnType.INTEGER).ofSize(16).asPrimaryKey()
>                               
> .withColumn("name").ofType(ColumnType.VARCHAR).ofSize(255).asPrimaryKey()
>                               .execute();
>                       }
>               });
> I am using mysql. Am I using it in the wrong way?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to