Skip to content

Commit 471c4ef

Browse files
committed
Ready for 3.0.4
1 parent ed9a177 commit 471c4ef

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ In addition, there are several minor update,
2222
a number of bug fixes and updates to the standard oltp workload
2323
as shown in [CHANGELOG.md](CHANGELOG.md).
2424

25+
Note that there is an update to the repository in 3.0.4 and that you _must_ apply
26+
the rwl304.sql script before using the new version.
27+
See [docs/INSTALL.md](docs/INSTALL.md) for details.
28+
2529
## Branches
2630

2731
The branches that should be used by ordinary users are named after the release, e.g. 3.0.3.

docs/NEWS30.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Changed behavior in version 3.0.4 of the RWP\*Load Simulator
22

3+
### Stack evaluation with mixed data types
4+
35
Stack evaluation with mixed data types has been corrected.
46
Previously, the entire stack would be evaluated using the same data type
57
even if constants or variables were a different type.
@@ -19,16 +21,26 @@ of the operators and double such as:
1921
d := 1.0/2;
2022
```
2123

24+
### Changes to the repository
25+
2226
The persec repository table that contains statistics of execution
2327
for each second has two new columns, wtime and etime, which like
2428
the same columns in runres contain respectively the time spent
2529
waiting for a session and time spent executing.
2630

31+
### Global, mutex protected variables
32+
2733
A ```threads global``` attribute has been added to variables of type
2834
integer, double and string causing the variable to be shared
2935
among all threads.
3036
A mutex is used to control internal data structures in rwloadsim.
3137

38+
### New and updated utilities
39+
40+
The awreport utility is updated and a new utility awrdump is provided.
41+
Additionally, these two and the network test utilities are available
42+
as shell scripts in the bin directory.
43+
3244
## Changed behavior in version 3.0.3 of the RWP\*Load Simulator
3345

3446
The syntax for opening files and pipelines has been enhanced with

src/rwl.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* History
1515
*
16+
* bengsig 24-nov-2022 - Release 3.0.4
1617
* bengsig 24-nov-2022 - --pretend-gen-banner (undocumented)
1718
* bengsig 3-nov-2022 - Harden code with rwl_type throughout
1819
* bengsig 31-oct-2022 - Add better queue time via $queueeverytiming:on
@@ -1858,8 +1859,8 @@ extern const char rwlexecbanner[];
18581859

18591860
#define RWL_VERSION_MAJOR 3
18601861
#define RWL_VERSION_MINOR 0
1861-
#define RWL_VERSION_RELEASE 3
1862-
#define RWL_VERSION_TEXT "Development" RWL_EXTRA_VERSION_TEXT
1862+
#define RWL_VERSION_RELEASE 4
1863+
#define RWL_VERSION_TEXT "Production" RWL_EXTRA_VERSION_TEXT
18631864
#define RWL_VERSION_DATE // undef to not include compile date
18641865
extern ub4 rwlpatch;
18651866

0 commit comments

Comments
 (0)