Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ljnelson authored and sebersole committed Mar 2, 2012
1 parent d7d9f0d commit a3b02e4
Showing 1 changed file with 31 additions and 0 deletions.
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";
}

}

0 comments on commit a3b02e4

Please sign in to comment.