Skip to content

Commit

Permalink
Preparing v192 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mauropagano committed Mar 23, 2019
1 parent 0900cd0 commit b9ed280
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions changelog.txt
@@ -1,6 +1,14 @@
Changelog
=========

v192
====
Commit details are in https://github.com/sqldb360/sqldb360/commits/unstable

v191
====
Commit details are in https://github.com/sqldb360/sqldb360/commits/unstable

v183
=====
1. Modified report in 4f and 4g to express values in AAS, this allows to compare latencies with load
Expand Down
10 changes: 5 additions & 5 deletions sql/edb360_0b_pre.sql
@@ -1,6 +1,6 @@
DEF edb360_vYYNN = 'v182';
DEF edb360_vrsn = '&&edb360_vYYNN. (2018-09-09)';
DEF edb360_copyright = ' (c) 2018';
DEF edb360_vYYNN = 'v191';
DEF edb360_vrsn = '&&edb360_vYYNN. (2019-03-23)';
DEF edb360_copyright = ' (c) 2019';

SET TERM OFF;
-- watchdog
Expand Down Expand Up @@ -562,7 +562,7 @@ SELECT MAX(CASE instance_number WHEN 1 THEN '1' ELSE NULL END) inst1_present,
MAX(CASE instance_number WHEN 5 THEN '5' ELSE NULL END) inst5_present,
MAX(CASE instance_number WHEN 6 THEN '6' ELSE NULL END) inst6_present,
MAX(CASE instance_number WHEN 7 THEN '7' ELSE NULL END) inst7_present,
MAX(CASE instance_number WHEN 8 THEN '8' ELSE NULL END) inst8_present,
MAX(CASE instance_number WHEN 8 THEN '8' ELSE NULL END) inst8_present,
(CASE COUNT(instance_number) WHEN 1 THEN 'Y' ELSE NULL END) is_single_instance
FROM hist;

Expand Down Expand Up @@ -597,7 +597,7 @@ BEGIN
END LOOP;
FOR i IN 9 .. 15 LOOP
DBMS_OUTPUT.PUT_LINE('COL inst_'||LPAD(i, 2, '0')||' NOPRI;');
DBMS_OUTPUT.PUT_LINE('DEF tit_'||LPAD(i, 2, '0')||' = '''';');
DBMS_OUTPUT.PUT_LINE('DEF tit_'||LPAD(i, 2, '0')||' = '''';');
END LOOP;
END;
/
Expand Down
6 changes: 3 additions & 3 deletions sql/sqld360_0b_pre.sql
Expand Up @@ -9,8 +9,8 @@ CL COL;
COL row_num FOR 9999999 HEA '#' PRI;

-- version
DEF sqld360_vYYNN = 'v182';
DEF sqld360_vrsn = '&&sqld360_vYYNN. (2018-09-09)';
DEF sqld360_vYYNN = 'v192';
DEF sqld360_vrsn = '&&sqld360_vYYNN. (2019-03-23)';
DEF sqld360_prefix = 'sqld360';

-- parameters
Expand Down Expand Up @@ -312,7 +312,7 @@ SELECT MAX(CASE instance_number WHEN 1 THEN '1' ELSE NULL END) inst1_present,
MAX(CASE instance_number WHEN 5 THEN '5' ELSE NULL END) inst5_present,
MAX(CASE instance_number WHEN 6 THEN '6' ELSE NULL END) inst6_present,
MAX(CASE instance_number WHEN 7 THEN '7' ELSE NULL END) inst7_present,
MAX(CASE instance_number WHEN 8 THEN '8' ELSE NULL END) inst8_present,
MAX(CASE instance_number WHEN 8 THEN '8' ELSE NULL END) inst8_present,
(CASE COUNT(instance_number) WHEN 1 THEN 'Y' ELSE NULL END) is_single_instance
FROM hist;

Expand Down

0 comments on commit b9ed280

Please sign in to comment.