org.hibernate.type.descriptor.sql.BinaryTypeDescriptor Java Examples
The following examples show how to use
org.hibernate.type.descriptor.sql.BinaryTypeDescriptor.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PostgreSQLDialect.java From onedev with MIT License | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #2
Source File: FixedPostgreSQL82Dialect.java From klask-io with GNU General Public License v3.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #3
Source File: FixedPostgreSQL82Dialect.java From jhipster-ribbon-hystrix with GNU General Public License v3.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #4
Source File: FixedPostgreSQL82Dialect.java From jhipster-ribbon-hystrix with GNU General Public License v3.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #5
Source File: _FixedPostgreSQL82Dialect.java From jhipster-ribbon-hystrix with GNU General Public License v3.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #6
Source File: FixedPostgreSQL82Dialect.java From jhipster-ribbon-hystrix with GNU General Public License v3.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #7
Source File: FixedPostgreSQL10Dialect.java From jhipster with Apache License 2.0 | 5 votes |
/** {@inheritDoc} */ @Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #8
Source File: FixedPostgreSQL82Dialect.java From jhipster with Apache License 2.0 | 5 votes |
/** {@inheritDoc} */ @Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #9
Source File: FixedPostgreSQL95Dialect.java From jhipster with Apache License 2.0 | 5 votes |
/** {@inheritDoc} */ @Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #10
Source File: FixedPostgreSQL82Dialect.java From ServiceCutter with Apache License 2.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #11
Source File: FixedPostgreSQL82Dialect.java From expper with GNU General Public License v3.0 | 5 votes |
@Override public SqlTypeDescriptor remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) { if (sqlTypeDescriptor.getSqlType() == java.sql.Types.BLOB) { return BinaryTypeDescriptor.INSTANCE; } return super.remapSqlTypeDescriptor(sqlTypeDescriptor); }
Example #12
Source File: UUIDBinaryType.java From lams with GNU General Public License v2.0 | 4 votes |
public UUIDBinaryType() { super( BinaryTypeDescriptor.INSTANCE, UUIDTypeDescriptor.INSTANCE ); }
Example #13
Source File: FixedPostgreSQL10DialectTest.java From jhipster with Apache License 2.0 | 4 votes |
@Test public void testBlobTypeRemap() { SqlTypeDescriptor descriptor = dialect.remapSqlTypeDescriptor(BlobTypeDescriptor.DEFAULT); assertThat(descriptor).isEqualTo(BinaryTypeDescriptor.INSTANCE); }
Example #14
Source File: FixedPostgreSQL82DialectTest.java From jhipster with Apache License 2.0 | 4 votes |
@Test public void testBlobTypeRemap() { SqlTypeDescriptor descriptor = dialect.remapSqlTypeDescriptor(BlobTypeDescriptor.DEFAULT); assertThat(descriptor).isEqualTo(BinaryTypeDescriptor.INSTANCE); }
Example #15
Source File: FixedPostgreSQL95DialectTest.java From jhipster with Apache License 2.0 | 4 votes |
@Test public void testBlobTypeRemap() { SqlTypeDescriptor descriptor = dialect.remapSqlTypeDescriptor(BlobTypeDescriptor.DEFAULT); assertThat(descriptor).isEqualTo(BinaryTypeDescriptor.INSTANCE); }
Example #16
Source File: MySQLBinaryType.java From high-performance-java-persistence with Apache License 2.0 | 4 votes |
public MySQLBinaryType() { setSqlTypeDescriptor(BinaryTypeDescriptor.INSTANCE); }