HHH-12961 Update HANA dialects Javadoc
- Fix the links - Add some more information
This commit is contained in:
parent
e8fcbe29c3
commit
00ec2e4fde
|
@ -102,11 +102,18 @@ import org.hibernate.type.descriptor.sql.SqlTypeDescriptor;
|
|||
import org.hibernate.type.descriptor.sql.VarcharTypeDescriptor;
|
||||
|
||||
/**
|
||||
* An abstract base class for HANA dialects. <br/>
|
||||
* <a href="http://help.sap.com/hana/html/sqlmain.html">SAP HANA Reference</a> <br/>
|
||||
* NOTE: This dialect is currently configured to create foreign keys with <code>on update cascade</code>.
|
||||
* An abstract base class for SAP HANA dialects.
|
||||
* <p>
|
||||
* For more information on interacting with the SAP HANA database, refer to the
|
||||
* <a href="https://help.sap.com/viewer/4fe29514fd584807ac9f2a04f6754767/">SAP HANA SQL and System Views Reference</a>
|
||||
* and the <a href=
|
||||
* "https://help.sap.com/viewer/0eec0d68141541d1b07893a39944924e/latest/en-US/434e2962074540e18c802fd478de86d6.html">SAP
|
||||
* HANA Client Interface Programming Reference</a>.
|
||||
* <p>
|
||||
* Note: This dialect is configured to create foreign keys with {@code on update cascade}.
|
||||
*
|
||||
* @author Andrew Clemons <andrew.clemons@sap.com>
|
||||
* @author Jonathan Bregler <jonathan.bregler@sap.com>
|
||||
*/
|
||||
public abstract class AbstractHANADialect extends Dialect {
|
||||
|
||||
|
|
|
@ -12,11 +12,18 @@ import org.hibernate.hql.spi.id.global.GlobalTemporaryTableBulkIdStrategy;
|
|||
import org.hibernate.hql.spi.id.local.AfterUseAction;
|
||||
|
||||
/**
|
||||
* An SQL dialect for HANA. <br/>
|
||||
* <a href="http://help.sap.com/hana/html/sqlmain.html">SAP HANA Reference</a> <br/>
|
||||
* An SQL dialect for the SAP HANA column store.
|
||||
* <p>
|
||||
* For more information on interacting with the SAP HANA database, refer to the
|
||||
* <a href="https://help.sap.com/viewer/4fe29514fd584807ac9f2a04f6754767/">SAP HANA SQL and System Views Reference</a>
|
||||
* and the <a href=
|
||||
* "https://help.sap.com/viewer/0eec0d68141541d1b07893a39944924e/latest/en-US/434e2962074540e18c802fd478de86d6.html">SAP
|
||||
* HANA Client Interface Programming Reference</a>.
|
||||
* <p>
|
||||
* Column tables are created by this dialect when using the auto-ddl feature.
|
||||
*
|
||||
* @author Andrew Clemons <andrew.clemons@sap.com>
|
||||
* @author Jonathan Bregler <jonathan.bregler@sap.com>
|
||||
*/
|
||||
public class HANAColumnStoreDialect extends AbstractHANADialect {
|
||||
|
||||
|
|
|
@ -12,11 +12,18 @@ import org.hibernate.hql.spi.id.global.GlobalTemporaryTableBulkIdStrategy;
|
|||
import org.hibernate.hql.spi.id.local.AfterUseAction;
|
||||
|
||||
/**
|
||||
* An SQL dialect for HANA. <br/>
|
||||
* <a href="http://help.sap.com/hana/html/sqlmain.html">SAP HANA Reference</a> <br/>
|
||||
* An SQL dialect for the SAP HANA row store.
|
||||
* <p>
|
||||
* For more information on interacting with the SAP HANA database, refer to the
|
||||
* <a href="https://help.sap.com/viewer/4fe29514fd584807ac9f2a04f6754767/">SAP HANA SQL and System Views Reference</a>
|
||||
* and the <a href=
|
||||
* "https://help.sap.com/viewer/0eec0d68141541d1b07893a39944924e/latest/en-US/434e2962074540e18c802fd478de86d6.html">SAP
|
||||
* HANA Client Interface Programming Reference</a>.
|
||||
* <p>
|
||||
* Row tables are created by this dialect when using the auto-ddl feature.
|
||||
*
|
||||
* @author Andrew Clemons <andrew.clemons@sap.com>
|
||||
* @author Jonathan Bregler <jonathan.bregler@sap.com>
|
||||
*/
|
||||
public class HANARowStoreDialect extends AbstractHANADialect {
|
||||
|
||||
|
|
Loading…
Reference in New Issue