Skip to content

Commit

Permalink
TEIID-3918 removing database timezone property
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Jan 26, 2016
1 parent 4e11012 commit ce2700d
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public class ODataExecutionFactory extends ExecutionFactory<ConnectionFactory, W

static final String INVOKE_HTTP = "invokeHttp"; //$NON-NLS-1$
protected Map<String, FunctionModifier> functionModifiers = new TreeMap<String, FunctionModifier>(String.CASE_INSENSITIVE_ORDER);
private String databaseTimeZone;
private boolean supportsOdataFilter;
private boolean supportsOdataOrderBy;
private boolean supportsOdataCount;
Expand Down Expand Up @@ -103,21 +102,6 @@ public ODataExecutionFactory() {
@Override
public void start() throws TranslatorException {
super.start();
if(this.databaseTimeZone != null && this.databaseTimeZone.trim().length() > 0) {
TimeZone tz = TimeZone.getTimeZone(this.databaseTimeZone);
//TODO: Convert the dates accordingly
}
}

@TranslatorProperty(display="Database time zone",
description="Time zone of the database, if different than Integration Server",
advanced=true)
public String getDatabaseTimeZone() {
return this.databaseTimeZone;
}

public void setDatabaseTimeZone(String databaseTimeZone) {
this.databaseTimeZone = databaseTimeZone;
}

@Override
Expand Down

0 comments on commit ce2700d

Please sign in to comment.