Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fbf103 commit 7f35b56Copy full SHA for 7f35b56
1 file changed
source/ut_teamcity_reporter_printer.pkb
@@ -14,7 +14,9 @@ create or replace package body ut_teamcity_reporter_printer is
14
l_value varchar2(32767);
15
begin
16
l_message := '##teamcity[' || a_command || ' timestamp=''' ||
17
- to_char(systimestamp, 'YYYY-MM-DD"T"HH24:MI:ss.FFTZHTZM') || '''';
+ regexp_replace(to_char(systimestamp, 'YYYY-MM-DD"T"HH24:MI:ss.FFTZHTZM')
18
+ ,'(\.\d{3})\d+(\+)'
19
+ ,'\1\2') || '''';
20
21
l_index := a_props.first;
22
while l_index is not null loop
0 commit comments