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 testsuite.clusterj.model;
27 
28 import com.mysql.clusterj.annotation.Column;
29 import com.mysql.clusterj.annotation.Index;
30 import com.mysql.clusterj.annotation.Indices;
31 import com.mysql.clusterj.annotation.PersistenceCapable;
32 import com.mysql.clusterj.annotation.PrimaryKey;
33 import java.math.BigDecimal;
34 
35 /** Schema
36  *
37 drop table if exists decimaltypes;
38 create table decimaltypes (
39  id int not null primary key,
40 
41  decimal_null_hash decimal(10,5),
42  decimal_null_btree decimal(10,5),
43  decimal_null_both decimal(10,5),
44  decimal_null_none decimal(10,5)
45 
46 ) ENGINE=ndbcluster DEFAULT CHARSET=latin1;
47 
48 create unique index idx_decimal_null_hash using hash on decimaltypes(decimal_null_hash);
49 create index idx_decimal_null_btree on decimaltypes(decimal_null_btree);
50 create unique index idx_decimal_null_both on decimaltypes(decimal_null_both);
51 
52  */
53 @Indices({
54     @Index(name="idx_decimal_null_both", columns=@Column(name="decimal_null_both"))
55 })
56 @PersistenceCapable(table="decimaltypes")
57 @PrimaryKey(column="id")
58 public interface DecimalTypes extends IdBase {
59 
getId()60     int getId();
setId(int id)61     void setId(int id);
62 
63     // Decimal
64     @Column(name="decimal_null_hash")
65     @Index(name="idx_decimal_null_hash")
getDecimal_null_hash()66     BigDecimal getDecimal_null_hash();
setDecimal_null_hash(BigDecimal value)67     void setDecimal_null_hash(BigDecimal value);
68 
69     @Column(name="decimal_null_btree")
70     @Index(name="idx_decimal_null_btree")
getDecimal_null_btree()71     BigDecimal getDecimal_null_btree();
setDecimal_null_btree(BigDecimal value)72     void setDecimal_null_btree(BigDecimal value);
73 
74     @Column(name="decimal_null_both")
getDecimal_null_both()75     BigDecimal getDecimal_null_both();
setDecimal_null_both(BigDecimal value)76     void setDecimal_null_both(BigDecimal value);
77 
78     @Column(name="decimal_null_none")
getDecimal_null_none()79     BigDecimal getDecimal_null_none();
setDecimal_null_none(BigDecimal value)80     void setDecimal_null_none(BigDecimal value);
81 
82 }
83