1 /*
2    Copyright (c) 2010, 2021, Oracle and/or its affiliates.
3    All rights reserved. Use is subject to license terms.
4 
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License, version 2.0,
7    as published by the Free Software Foundation.
8 
9    This program is also distributed with certain software (including
10    but not limited to OpenSSL) that is licensed under separate terms,
11    as designated in a particular file or component or in included license
12    documentation.  The authors of MySQL hereby grant you an additional
13    permission to link the program and your derivative works with the
14    separately licensed software that they have included with MySQL.
15 
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License, version 2.0, for more details.
20 
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
24 */
25 
26 package testsuite.clusterj.model;
27 
28 import com.mysql.clusterj.annotation.Column;
29 import com.mysql.clusterj.annotation.Index;
30 import com.mysql.clusterj.annotation.PersistenceCapable;
31 import com.mysql.clusterj.annotation.PrimaryKey;
32 
33 /** Schema
34  *
35 drop table if exists longintstringpk;
36 create table longintstringpk (
37  stringpk varchar(10) not null,
38  intpk int not null,
39  longpk bigint not null,
40  stringvalue varchar(10),
41         CONSTRAINT PK_longlongstringpk PRIMARY KEY (longpk, intpk, stringpk)
42 
43 ) ENGINE=ndbcluster DEFAULT CHARSET=latin1 PARTITION BY KEY(intpk, longpk);
44 
45  */
46 @PersistenceCapable(table="longintstringpk")
47 public interface LongIntStringPK {
48 
49     @Column(name="longpk")
getLongpk()50     long getLongpk();
setLongpk(long value)51     void setLongpk(long value);
52 
53     @Column(name="intpk")
getIntpk()54     int getIntpk();
setIntpk(int value)55     void setIntpk(int value);
56 
57     @Column(name="stringpk")
getStringpk()58     String getStringpk();
setStringpk(String value)59     void setStringpk(String value);
60 
61     @Column(name="stringvalue")
getStringvalue()62     String getStringvalue();
setStringvalue(String value)63     void setStringvalue(String value);
64 
65 }
66