All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.dialect.HANAColumnStoreDialect Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.dialect;

import org.hibernate.hql.spi.id.IdTableSupportStandardImpl;
import org.hibernate.hql.spi.id.MultiTableBulkIdStrategy;
import org.hibernate.hql.spi.id.global.GlobalTemporaryTableBulkIdStrategy;
import org.hibernate.hql.spi.id.local.AfterUseAction;

/**
 * An SQL dialect for the SAP HANA column store.
 * 

* For more information on interacting with the SAP HANA database, refer to the * SAP HANA SQL and System Views Reference * and the SAP * HANA Client Interface Programming Reference. *

* Column tables are created by this dialect when using the auto-ddl feature. * * @author Andrew Clemons * @author Jonathan Bregler */ public class HANAColumnStoreDialect extends AbstractHANADialect { public HANAColumnStoreDialect() { super(); } @Override public String getCreateTableString() { return "create column table"; } @Override public MultiTableBulkIdStrategy getDefaultMultiTableBulkIdStrategy() { return new GlobalTemporaryTableBulkIdStrategy( new IdTableSupportStandardImpl() { @Override public String getCreateIdTableCommand() { return "create global temporary column table"; } @Override public String getTruncateIdTableCommand() { return "truncate table"; } }, AfterUseAction.CLEAN ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy