1 /*
2    Copyright 2010 Sun Microsystems, Inc.
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 com.mysql.clusterj.jpatest.model;
27 
28 import java.math.BigInteger;
29 
30 import javax.persistence.Entity;
31 import javax.persistence.Id;
32 import javax.persistence.Table;
33 
34 /** Schema
35  *
36 drop table if exists bigintegertypes;
37 create table bigintegertypes (
38  id int not null primary key,
39 
40  decimal_null_hash decimal(10),
41  decimal_null_btree decimal(10),
42  decimal_null_both decimal(10),
43  decimal_null_none decimal(10)
44 
45 ) ENGINE=ndbcluster DEFAULT CHARSET=latin1;
46 
47 create unique index idx_decimal_null_hash using hash on bigintegertypes(decimal_null_hash);
48 create index idx_decimal_null_btree on bigintegertypes(decimal_null_btree);
49 create unique index idx_decimal_null_both on bigintegertypes(decimal_null_both);
50 
51  */
52 @Entity
53 @Table(name="bigintegertypes")
54 public class BigIntegerTypes implements IdBase {
55 
56     @Id
57     int id;
58     BigInteger decimal_null_hash;
59     BigInteger decimal_null_btree;
60     BigInteger decimal_null_both;
61     BigInteger decimal_null_none;
62 
getId()63     public int getId() {
64         return id;
65     }
setId(int id)66     public void setId(int id) {
67         this.id = id;
68     }
getDecimal_null_hash()69     public BigInteger getDecimal_null_hash() {
70         return decimal_null_hash;
71     }
setDecimal_null_hash(BigInteger decimalNullHash)72     public void setDecimal_null_hash(BigInteger decimalNullHash) {
73         decimal_null_hash = decimalNullHash;
74     }
getDecimal_null_btree()75     public BigInteger getDecimal_null_btree() {
76         return decimal_null_btree;
77     }
setDecimal_null_btree(BigInteger decimalNullBtree)78     public void setDecimal_null_btree(BigInteger decimalNullBtree) {
79         decimal_null_btree = decimalNullBtree;
80     }
getDecimal_null_both()81     public BigInteger getDecimal_null_both() {
82         return decimal_null_both;
83     }
setDecimal_null_both(BigInteger decimalNullBoth)84     public void setDecimal_null_both(BigInteger decimalNullBoth) {
85         decimal_null_both = decimalNullBoth;
86     }
getDecimal_null_none()87     public BigInteger getDecimal_null_none() {
88         return decimal_null_none;
89     }
setDecimal_null_none(BigInteger decimalNullNone)90     public void setDecimal_null_none(BigInteger decimalNullNone) {
91         decimal_null_none = decimalNullNone;
92     }
93 
94 }
95