Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,35 @@ public boolean isCurrentTimestampSelectStringCallable() {
public String getCurrentTimestampSelectString() {
return "select distinct current timestamp from informix.systables";
}

/**
* Overrides {@link Dialect#supportsTemporaryTables()} to return
* {@code true} when invoked.
*
* @return {@code true} when invoked
*/
public boolean supportsTemporaryTables() {
return true;
}

/**
* Overrides {@link Dialect#getCreateTemporaryTableString()} to
* return "{@code create temp table}" when invoked.
*
* @return "{@code create temp table}" when invoked
*/
public String getCreateTemporaryTableString() {
return "create temp table";
}

/**
* Overrides {@link Dialect#getCreateTemporaryTablePostfix()} to
* return "{@code with no log}" when invoked.
*
* @return "{@code with no log}" when invoked
*/
public String getCreateTemporaryTablePostfix() {
return "with no log";
}

}