File tree 3 files changed +3
-7
lines changed
hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 9
9
import java .sql .ResultSet ;
10
10
import java .sql .SQLException ;
11
11
12
- import org .hibernate .dialect .MySQLDialect ;
13
12
import org .hibernate .type .descriptor .ValueBinder ;
14
13
import org .hibernate .type .descriptor .ValueExtractor ;
15
14
import org .hibernate .type .descriptor .WrapperOptions ;
26
25
* as {@link jakarta.persistence.EnumType#STRING}.
27
26
*
28
27
* @see org.hibernate.type.SqlTypes#ENUM
29
- * @see MySQLDialect#getEnumTypeDeclaration(String, String[])
28
+ * @see org.hibernate.dialect. MySQLDialect#getEnumTypeDeclaration(String, String[])
30
29
*
31
30
* @author Gavin King
32
31
*/
Original file line number Diff line number Diff line change 5
5
package org .hibernate .type .descriptor .jdbc ;
6
6
7
7
import org .hibernate .dialect .Dialect ;
8
- import org .hibernate .dialect .type .H2JsonJdbcType ;
9
8
import org .hibernate .metamodel .mapping .EmbeddableMappingType ;
10
9
import org .hibernate .metamodel .spi .RuntimeModelCreationContext ;
11
10
import org .hibernate .sql .ast .spi .SqlAppender ;
15
14
* '{@code ? format json}' write expression for H2.
16
15
*
17
16
* @author Marco Belladelli
18
- * @deprecated Use {@link H2JsonJdbcType} instead
17
+ * @deprecated Use {@link org.hibernate.dialect.type. H2JsonJdbcType} instead
19
18
*/
20
19
@ Deprecated (forRemoval = true , since = "6.5" )
21
20
public class H2FormatJsonJdbcType extends JsonJdbcType {
Original file line number Diff line number Diff line change 4
4
*/
5
5
package org .hibernate .type .descriptor .jdbc ;
6
6
7
- import org .hibernate .dialect .MySQLDialect ;
8
-
9
7
import static org .hibernate .type .SqlTypes .ORDINAL_ENUM ;
10
8
11
9
/**
15
13
* as {@link jakarta.persistence.EnumType#ORDINAL}.
16
14
*
17
15
* @see org.hibernate.type.SqlTypes#ORDINAL_ENUM
18
- * @see MySQLDialect#getEnumTypeDeclaration(String, String[])
16
+ * @see org.hibernate.dialect. MySQLDialect#getEnumTypeDeclaration(String, String[])
19
17
*/
20
18
public class OrdinalEnumJdbcType extends EnumJdbcType {
21
19
You can’t perform that action at this time.
0 commit comments