File tree Expand file tree Collapse file tree 2 files changed +3
-42
lines changed
hibernate-core/src/main/java/org/hibernate/tool/schema/extract/spi Expand file tree Collapse file tree 2 files changed +3
-42
lines changed Original file line number Diff line number Diff line change @@ -26,43 +26,4 @@ public interface ColumnInformation extends ColumnTypeInformation {
26
26
* @return The column simple identifier.
27
27
*/
28
28
Identifier getColumnIdentifier ();
29
-
30
- /**
31
- * Is the column nullable.
32
- * <p>
33
- * The database is allowed to report unknown, hence the use of {@link Boolean}.
34
- *
35
- * @return nullability, if known
36
- */
37
- Boolean getNullable ();
38
-
39
- /**
40
- * The JDBC type-code.
41
- *
42
- * @return JDBC type-code
43
- */
44
- int getTypeCode ();
45
-
46
- /**
47
- * The database specific type name.
48
- *
49
- * @return Type name
50
- */
51
- String getTypeName ();
52
-
53
- // todo : wrap these in org.hibernate.metamodel.spi.relational.Size ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
54
-
55
- /**
56
- * The column size (length).
57
- *
58
- * @return The column length
59
- */
60
- int getColumnSize ();
61
-
62
- /**
63
- * The precision, for numeric types
64
- *
65
- * @return The numeric precision
66
- */
67
- int getDecimalDigits ();
68
29
}
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public int getDecimalDigits() {
45
45
};
46
46
47
47
/**
48
- * Is the column nullable.
48
+ * Is the column nullable?
49
49
* <p>
50
50
* The database is allowed to report unknown, hence the use of {@link Boolean}.
51
51
*
@@ -65,9 +65,9 @@ public int getDecimalDigits() {
65
65
*
66
66
* @return Type name
67
67
*/
68
- public String getTypeName ();
68
+ String getTypeName ();
69
69
70
- // todo : wrap these in org.hibernate.metamodel.spi.relational.Size ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
70
+ // todo : wrap these in org.hibernate.metamodel.spi.relational.Size
71
71
72
72
/**
73
73
* The column size (length).
You can’t perform that action at this time.
0 commit comments