per @cekis, truncate so we don't get 40 char long timestamp floats

This commit is contained in:
DarthArgus
2018-05-10 20:15:13 +00:00
parent 494f64c4e6
commit 9315744648
+2 -2
View File
@@ -18,8 +18,8 @@ create or replace package body loader as
open result_cursor for
select character_object, station_id, uc_character_name, character_full_name,
(create_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600,
(last_login_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600
trunc((create_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600),
trunc((last_login_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600)
from players;
return result_cursor;