Skip to content

Commit 59c3ebd

Browse files
committed
Final commit before merge dev310 to master
1 parent 7420c89 commit 59c3ebd

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ installation using rwlman and from
1010

1111
## News
1212

13-
Release 3.0 includes these major new features:
13+
Release 3.1 includes several new features with primary focus on using rwloadsim
14+
as a scripting tool.
15+
For details, see [CHANGELOG.md](CHANGELOG.md).
16+
17+
Release 3.0 included these major new features:
1418

1519
* SQL declaration no longer needs explicit bind and/or define, as bind variables and select list elements can be implicitly matched to declared variables.
1620
* The separate declaration and subsequent execution of SQL is no longer needed.
@@ -19,28 +23,26 @@ Release 3.0 includes these major new features:
1923
* New syntax for file open for read, append or pipe (added in 3.0.3)
2024
* Release 3.0.6 will be the last 3.0 release, in 3.1 the new file open syntax will be enforced
2125

22-
In addition, there are several minor update,
26+
In addition, there are several minor updates,
2327
a number of bug fixes and updates to the standard oltp workload
2428
as shown in [CHANGELOG.md](CHANGELOG.md).
2529

2630
Note that there was an update to the repository in 3.0.4 and that you _must_ apply
2731
the rwl304.sql script if you are upgrading from version 3.0.3 or earlier.
2832
There is also a repository upgrade in 3.0.6 and you _must_ apply the rwl306.sql script
29-
before using release 3.0.6.
33+
before using release 3.0.6 or newer.
3034
See [docs/INSTALL.md](docs/INSTALL.md) for details.
3135

3236
## Branches
3337

34-
The branches that should be used by ordinary users are named after the release, e.g. 3.0.6.
35-
The branch named "development" is getting frequent commits
36-
and may as such contain intermediate code.
37-
The master branch receives occasional pull request from the development branch.
38-
You should normally _not_ clone or checkout the development or master branch
38+
The branches that should be used by ordinary users are named after the release, e.g. 3.1.0.
39+
The master branch receives occasional pull request from the various development branches.
40+
You should normally _not_ clone or checkout these
3941
unless you are developing the rwloadsim code or always want the latest.
40-
If you use the development or master branch, you _must_ do compilation yourself;
42+
If you use a development or master branch, you _must_ do compilation yourself;
4143
no binaries are released.
4244

43-
At present, branch 3.0.6 is the release branch.
45+
At present, branch 3.1.0 is the release branch.
4446

4547
Please see [CHANGELOG.md](CHANGELOG.md) for details.
4648

public/ociping.rwl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ $userswitch:flush-output:"--flush-output : flush stdout after each line"
9797
$useroption:utcformat:"--utcformat=fmt : provide alternative format for utctime"
9898
$userswitch:unixepoch:"--unixepoch : timestamps will be unixepoch"
9999
$userswitch:csvexcel:"--csvexcel : csv has ; separator, CRLF line terminator and no #, suggest"
100-
$userhelp:" --utctime --utcformat='YYYY/MM/DD HH24:MI:SS'"
100+
$userhelp:" : to also use --utctime --utcformat='YYYY/MM/DD HH24:MI:SS'"
101101
$userhelp:"The following options will run many concurrently and plot results"
102102
$useroption:concurrency:"--concurrency=N : number of threads to start"
103103
$useroption:runname:"--runname=string : prefix to various files in concurrent execution"
@@ -109,7 +109,6 @@ $userswitch:flush-output:"--flush-output : flush stdout after each line"
109109
$useroption:min-ms:"--min-ms=D : min range on the y-axis, default 0"
110110
$useroption:plotwith:"--plotwith=text : gnuplot type for plotting, default 'points ps 0.5'"
111111
$useroption:plotkey:"--plotkey=text : gnuplot set key argument, default 'right outside'"
112-
$userhelp:" : to also use --utctime --utcformat='YYYY/MM/DD HH24:MI:SS'"
113112
$userhelp:"--fullhelp : also show help for ordinary rwloadsim options"
114113

115114
if unixepoch and utctime then

src/rwl.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* History
1515
*
16+
* bengsig 2-oct-2023 - Releasing 3.1.0
1617
* bengsig 22-sep-2023 - ampersand fixes
1718
* bengsig 21-sep-2023 - $errordetail:on directive
1819
* bengsig 20-sep-2023 - list iterator loop
@@ -2051,9 +2052,9 @@ extern const char rwlexecbanner[];
20512052
#define RWL_EXTRA_VERSION_TEXT ""
20522053

20532054
#define RWL_VERSION_MAJOR 3
2054-
#define RWL_VERSION_MINOR 0
2055-
#define RWL_VERSION_RELEASE 7
2056-
#define RWL_VERSION_TEXT "Development" RWL_EXTRA_VERSION_TEXT
2055+
#define RWL_VERSION_MINOR 1
2056+
#define RWL_VERSION_RELEASE 0
2057+
#define RWL_VERSION_TEXT "Production" RWL_EXTRA_VERSION_TEXT
20572058
#define RWL_VERSION_DATE // undef to not include compile date
20582059
extern ub4 rwlpatch;
20592060

test/testres/178.err.good

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
RWL-009: warning at [178.rwl;7]: superfluous ';' at posistion 36
1+
RWL-009: warning at [178.rwl;7]: superfluous ';' at position 36
22
RWL-133: warning at [178.rwl;12]: superfluous ';' after procedure header
3-
RWL-009: warning at [178.rwl;19]: superfluous ';' at posistion 12
3+
RWL-009: warning at [178.rwl;19]: superfluous ';' at position 12

0 commit comments

Comments
 (0)