public class PostgresDialect
extends Object
Constructor and Description |
---|
PostgresDialect() |
Modifier and Type | Method and Description |
---|---|
static void |
beforeFetch(java.sql.Connection connection,
scala.collection.immutable.Map<String,String> properties) |
static boolean |
canHandle(String url) |
static Object |
compileValue(Object value) |
static scala.Option<DataType> |
getCatalystType(int sqlType,
String typeName,
int size,
MetadataBuilder md) |
static scala.Option<JdbcType> |
getJDBCType(DataType dt) |
static String |
getSchemaQuery(String table) |
static String |
getTableExistsQuery(String table) |
static String |
getTruncateQuery(String table,
scala.Option<Object> cascade)
The SQL query used to truncate a table.
|
static scala.Option<Object> |
getTruncateQuery$default$2() |
static scala.Option<Object> |
isCascadingTruncateTable() |
static String |
quoteIdentifier(String colName) |
public static boolean canHandle(String url)
public static scala.Option<DataType> getCatalystType(int sqlType, String typeName, int size, MetadataBuilder md)
public static String getTableExistsQuery(String table)
public static scala.Option<Object> isCascadingTruncateTable()
public static String getTruncateQuery(String table, scala.Option<Object> cascade)
table
- The table to truncatecascade
- Whether or not to cascade the truncation. Default value is the value of
isCascadingTruncateTable(). Cascading a truncation will truncate tables
with a foreign key relationship to the target table. However, it will not
truncate tables with an inheritance relationship to the target table, as
the truncate query always includes "ONLY" to prevent this behaviour.public static void beforeFetch(java.sql.Connection connection, scala.collection.immutable.Map<String,String> properties)
public static String quoteIdentifier(String colName)
public static String getSchemaQuery(String table)
public static Object compileValue(Object value)
public static scala.Option<Object> getTruncateQuery$default$2()