5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-02 21:11:38 +08:00

SQOOP-3288: Changing OracleManager to use CURRENT_TIMESTAMP instead of

SYSDATE in case of incremental import to make the process session time
aware

(Daniel Voros via Attila Szabo)
This commit is contained in:
Attila Szabo 2018-02-23 04:25:56 -05:00
parent 69463f0b3e
commit a7f5e0d298

View File

@ -649,7 +649,7 @@ protected void finalize() throws Throwable {
@Override
protected String getCurTimestampQuery() {
return "SELECT SYSDATE FROM dual";
return "SELECT CURRENT_TIMESTAMP FROM dual";
}
@Override