@@ -37,7 +37,7 @@ The identifier should be followed by either of:
37
37
### RWL-008 error: "expected valid expression"
38
38
A syntax error during parse of an expression.
39
39
40
- ### RWL-009 warning: "superfluous ';' at posistion %d"
40
+ ### RWL-009 warning: "superfluous ';' at position %d"
41
41
The semicolon is used to terminate a statement or declaration
42
42
and repeated semicolon is not allowed.
43
43
@@ -106,7 +106,7 @@ In declaration of a random string or procedure, all weights must be
106
106
at least zero.
107
107
108
108
### RWL-029 warning: "ignoring error with array based sql is not supported"
109
- Ignoring errors and use of progammed error handling
109
+ Ignoring errors and use of programmed error handling
110
110
cannot be done with array processing.
111
111
You must either set array to 1 or let rwloadsim handle errors.
112
112
@@ -124,7 +124,7 @@ You can only use the array specification once.
124
124
The array size must be at least 1.
125
125
126
126
### RWL-034 error: "username must be specified for database '%s'"
127
- The username is a compulsary specification in a database declaration.
127
+ The username is a compulsory specification in a database declaration.
128
128
129
129
### RWL-035 error: "%s database already specified as '%s'"
130
130
The default and results databases can only be declared once.
@@ -139,7 +139,7 @@ A database is either not declared or has caused error during connection.
139
139
A syntax error during parse of a regex statement.
140
140
141
141
### RWL-039 error: "error compiling regular expression: %s"
142
- Reguar expression caused an error in regcomp(3).
142
+ Regular expression caused an error in regcomp(3).
143
143
144
144
### RWL-040 warning: "regextract found %d matched sub-expressions, %d expected"
145
145
When using the regextract statement, the number of matched sub-expressions
@@ -170,7 +170,7 @@ commit with an execute block for the commit to have effect.
170
170
You have been doing DML inside PL/SQL without performing explicit commit or
171
171
rollback before your session was (implicitly) released or given up. If you have
172
172
PL/SQL with open transaction directly in main, you must wrap the call and
173
- associtated commit with an execute block for the commit to have effect.
173
+ associated commit with an execute block for the commit to have effect.
174
174
175
175
### RWL-047 error: "database '%s' could not connect"
176
176
There was an error during initial connection of the database
@@ -283,7 +283,7 @@ exhausted. You can use either of these methods to increase the size:
283
283
* Provide the -C option to rwloadsim
284
284
* Use the $maxcode: N directive in your startup file such as ~ /.rwloadsim.rwl.
285
285
286
- ### RWL-076 critical error: "maximum number of identifers (%d) exceeded - rerun with -I option"
286
+ ### RWL-076 critical error: "maximum number of identifiers (%d) exceeded - rerun with -I option"
287
287
The fixed array for storing your variable names has been
288
288
exhausted. You can use either of these methods to increase the size:
289
289
* Put $longoption: namecount =N in your first .rwl file
@@ -347,7 +347,7 @@ A syntax error during parse of random string.
347
347
348
348
### RWL-091 error: "random string '%s' cannot be used"
349
349
The random string was declared, but cannot be used due to errors.
350
- You must fix the random string delcaration .
350
+ You must fix the random string declaration .
351
351
352
352
### RWL-092 error: "incorrect random procedure declaration"
353
353
A syntax error during parse of random procedure.
@@ -383,7 +383,7 @@ A variable of some type was found when a variable of a different type
383
383
was expected. This is a generic error used in several contexts.
384
384
385
385
### RWL-101 error: "only %s allowed after this end"
386
- The keyword 'end' was followed by an unecpected keyword or identifier.
386
+ The keyword 'end' was followed by an unexpected keyword or identifier.
387
387
388
388
### RWL-102 error: "invalid thread count(%d) - must be zero or positive"
389
389
The count of threads started in each group of threads in the run statement
@@ -445,7 +445,7 @@ The limit on depth of $include has been reached. You must
445
445
recompile rwloadsim from source to increase the limit.
446
446
447
447
### RWL-116 error: "$include recursion into '%s' attempted"
448
- You have attemted including some file using the $include directive from
448
+ You have attempted including some file using the $include directive from
449
449
within the file itself. This is not supported.
450
450
451
451
### RWL-117 error: "cannot use %s database '%s' for at clause inside procedure/function"
@@ -508,16 +508,16 @@ A syntax error during parse of a function declaration.
508
508
A semicolon was found at a place where it is not expected.
509
509
It is used to terminate a statement or declaration.
510
510
511
- ### RWL-134 critical error: "too many invalid charaters (is input an rwl file?)"
511
+ ### RWL-134 critical error: "too many invalid characters (is input an rwl file?)"
512
512
The scanner has found a high number of invalid characters and
513
513
all further processing is stopped.
514
514
515
515
### RWL-135 warning: "public %s '%s' is hidden by private %s declared at [ %s;%d] "
516
- A private variable is given the same name as an already existig public
516
+ A private variable is given the same name as an already existing public
517
517
variable. The private variable will be used during the rest of the source file.
518
518
519
519
### RWL-136 warning: "%s %s '%s' hides public %s declared at [ %s;%d] "
520
- A local or private variable is given the same name as an already existig
520
+ A local or private variable is given the same name as an already existing
521
521
public variable. The public variable will not be accessible.
522
522
523
523
### RWL-137 warning: "a comma is recommended after '%s' in %s"
@@ -543,7 +543,7 @@ When the -e flag is used, neither procedures nor sql are being executed.
543
543
### RWL-142 error: "incorrect lob declaration"
544
544
A syntax error during parse of a clob declaration.
545
545
546
- ### RWL-143 error: "not anough arguments to %s"
546
+ ### RWL-143 error: "not enough arguments to %s"
547
547
There are not sufficient arguments for the value of the -A or -F option.
548
548
549
549
### RWL-144 warning: "array DML not supported for lob"
@@ -652,11 +652,11 @@ The exit statement is a possible alternative.
652
652
653
653
### RWL-172 error: "cannot create thread"
654
654
This error is returned when OCIThreadCreate returns an OCI_NO_DATA error.
655
- There is no O/S error assoicated with this, but the typical cause is that
655
+ There is no O/S error associated with this, but the typical cause is that
656
656
the user is unable to start a new thread due to a too low value for ulimit -u.
657
657
658
658
### RWL-173 warning: "local %s '%s' hides %s %s declared at [ %s;%d] "
659
- A local variable is given the same name as an already existig private
659
+ A local variable is given the same name as an already existing private
660
660
or public variable. The private/public variable will not be accessible.
661
661
662
662
### RWL-174 error: "cannot open '%s' for reading, O/S error: %s"
@@ -769,7 +769,7 @@ simple function. As an example, this is used when string functions
769
769
handle strings a sequence bytes.
770
770
771
771
### RWL-199 error: "first argument to erlangk(%d) must be at least 1"
772
- The minium allowed value for k in erlangk is 1.
772
+ The minimum allowed value for k in erlangk is 1.
773
773
774
774
### RWL-200 error: "first argument to erlangk(%d) is unreasonably high"
775
775
The maximum allowed value for k in erlangk is 20.
@@ -780,7 +780,7 @@ You have asked for a define array, but no explicit defines are found.
780
780
### RWL-202 error: "variable '%s' has wrong type for define array"
781
781
Use can only use define arrays with variables of type integer, double or string.
782
782
783
- ### RWL-203 error: "the size of define array cannot by modifed "
783
+ ### RWL-203 error: "the size of define array cannot by modified "
784
784
The size of a define array can only be specified at declaration time.
785
785
786
786
### RWL-204 warning: "this is not C - '==' is taken as '='"
@@ -791,7 +791,7 @@ The equality comparison operator is '='.
791
791
A syntax error during parse of the sql_id function.
792
792
793
793
### RWL-206 warning: "OCI compile environment (%d.%d) is different from runtime (%d.%d)"
794
- Your rwloadsim executables was compiled in a different Oracle Call Interface
794
+ Your rwloadsim executable was compiled in a different Oracle Call Interface
795
795
version than the one being found via LD_LIBRARY_PATH during execution.
796
796
To mute the error, put $mute:206 in your .rwloadsim.rwl startup file.
797
797
@@ -860,7 +860,7 @@ Only seen when executing test.sh as the syntax is not documented.
860
860
If you use the deprecated syntax, please change your code.
861
861
862
862
### RWL-221 error: "$if without matching $then on same line"
863
- The $if and $then directivies must be on the same input line.
863
+ The $if and $then directives must be on the same input line.
864
864
865
865
### RWL-222 error: "expected valid expression in $if ... $then directive"
866
866
A syntax error during parse of the expression in an $if $then directive.
@@ -870,7 +870,7 @@ The formal argument of a procedure or function, and the return
870
870
if a function must be one of integer, double or string.
871
871
872
872
### RWL-224 error: "%s is not available in database version %d"
873
- You are using a feature that requies a higher Oracle Client
873
+ You are using a feature that requires a higher Oracle Client
874
874
release than the one you have.
875
875
876
876
### RWL-225 error: "sql text has already been provided for '%s'"
@@ -953,7 +953,7 @@ be used to execute any sql. As a consequence, cursorcache has no effect.
953
953
954
954
### RWL-244 error: "'%s' is not a database of type connection pool"
955
955
When using the 'connect connectionpool' option during a database declaration,
956
- the database named by the option must be delcared as a connectionpool.
956
+ the database named by the option must be declared as a connectionpool.
957
957
958
958
### RWL-245 error: "the %s database cannot be a connection pool"
959
959
You cannot use a connection pool for this database.
@@ -1064,8 +1064,8 @@ character was found. Supported characters include 'i', 'f', 'e', 's'.
1064
1064
While scanning the printf format, some non ascii character
1065
1065
was found. Supported characters include 'i', 'f', 'e', 's'.
1066
1066
1067
- ### RWL-271 error: "the number of output elements in '%s' is insufficent for the number of expressions"
1068
- Each expression provided as an argument to prinft must have a coresponding
1067
+ ### RWL-271 error: "the number of output elements in '%s' is insufficient for the number of expressions"
1068
+ Each expression provided as an argument to printf must have a corresponding
1069
1069
output format elements in the format string.
1070
1070
1071
1071
### RWL-272 error: "missing string name for sprintf"
@@ -1074,7 +1074,7 @@ A syntax error during parse of sprintf statement.
1074
1074
### RWL-273 warning: "the identifier '%s' will be taken as a SQL keyword in a future version"
1075
1075
You are using an identifier that in a future version of rwloadsim will be
1076
1076
used as a keyword starting a SQL statement. You should change your code to
1077
- use a different identifer .
1077
+ use a different identifier .
1078
1078
1079
1079
### RWL-274 error: "sql '%s' cannot be flushed using array execute"
1080
1080
You have attempted using the modify sql array execute statement with
@@ -1102,9 +1102,9 @@ single '.' or '/' at the end of the line.
1102
1102
1103
1103
### RWL-278 error: "parse error at position %d: %s"
1104
1104
A syntax error was found during parsing by bison at the character position
1105
- shown; the error may included the unexpected symbol and/or a list of expected
1106
- symbols to helt identify the actual error. It is followed by another error
1107
- showing the rwlloadsim error.
1105
+ shown; the error may include the unexpected symbol and/or a list of expected
1106
+ symbols to help identify the actual error. It is followed by another error
1107
+ showing the rwloadsim error.
1108
1108
1109
1109
### RWL-279 warning: "invalid escape '\ ; %c' in string constant"
1110
1110
The valid escapes in a string constant are \ ;\ ; \ ; " \ ; t \ ; n \ ; e \ ; r or
@@ -1137,7 +1137,7 @@ When generating an executable for direct execution of rwl scripts,
1137
1137
you cannot use the feature or option shown.
1138
1138
1139
1139
### RWL-287 error: "when generating an executable, the following command: %s returned with status %d"
1140
- When genrating an executable with direct execution of an rwl script, the
1140
+ When generating an executable with direct execution of an rwl script, the
1141
1141
command to compile and link has failed.
1142
1142
1143
1143
### RWL-288 error: "libclntsh.so cannot be found"
@@ -1147,14 +1147,14 @@ binary.
1147
1147
1148
1148
### RWL-289 information: "the executable '%s' was generated"
1149
1149
The --generate option was used to create an executable from rwl scripts,
1150
- and the named executable was succesfully generated.
1150
+ and the named executable was successfully generated.
1151
1151
1152
1152
### RWL-290 warning: "a sensitive keyword was found during scanning"
1153
1153
During scan of the rwl files for generating an executable, one or more
1154
1154
sensitive keywords (including 'database', 'password' and others) was found. You
1155
1155
are recommended making sure no sensitive information is included in the
1156
1156
generated executable. Note that rwloadsim cannot complete verify no sensitive
1157
- inforation is put in the executable.
1157
+ information is put in the executable.
1158
1158
1159
1159
### RWL-291 warning: "opening a file with '%s' in the file name is deprecated"
1160
1160
In version 3.1, you need to change your syntax for opening files to use
@@ -1167,7 +1167,7 @@ close a file by assigning null to it. You should use the := operator.
1167
1167
1168
1168
### RWL-293 warning: "'%s' will be a keyword in a future release"
1169
1169
You are using an identifier that in some future release will be a keyword.
1170
- You should change your code and use a different identifer as it otherwise will
1170
+ You should change your code and use a different identifier as it otherwise will
1171
1171
cause a syntax error in the future.
1172
1172
1173
1173
### RWL-294 error: "Variables of type %s cannot be declared threads sum"
@@ -1176,7 +1176,7 @@ or double.
1176
1176
1177
1177
### RWL-295 warning: "Assign to threads global '%s' with same variable in expression"
1178
1178
The expression being assigned to a threads global variable includes the same
1179
- variable. Each indiviaul access to threads global variables is protected by a
1179
+ variable. Each individual access to threads global variables is protected by a
1180
1180
mutex, and the assignment therefore has a race condition.
1181
1181
1182
1182
### RWL-296 warning: "aborted prematurely"
@@ -1197,21 +1197,21 @@ and therefore stop time must be after both of start time and of current time.
1197
1197
1198
1198
### RWL-300 error: "break querynotification can only be performed from inside callback"
1199
1199
The break querynotification is breaking a query notification before the stop
1200
- time experes , but the statement is executed outside of the notification
1200
+ time expires , but the statement is executed outside of the notification
1201
1201
callback. The call must be executed in the 'then' clause of query notification.
1202
1202
1203
1203
### RWL-301 error: "the stddev (%.2f) argument to normalrandom is not positive"
1204
1204
The second argument to the normalrandom function is the standard deviation,
1205
1205
which must be a positive number.
1206
1206
1207
1207
### RWL-302 error: "the statisticsonly procedure '%s' cannot execute any SQL"
1208
- The statisticsonly attribute can only be used with procdures that do not
1208
+ The statisticsonly attribute can only be used with procedures that do not
1209
1209
perform any sql or other database calls. You need to either remove database
1210
1210
activity from the procedure or remove the statisticsonly attribute.
1211
1211
1212
1212
### RWL-303 error: "the debug options '%s' could not be resolved"
1213
- debug arugments must be a comma separated list of debug options without
1214
- spaces; each option either a hexadeciman number (potentially prefixed by
1213
+ debug arguments must be a comma separated list of debug options without
1214
+ spaces; each option either a hexadecimal number (potentially prefixed by
1215
1215
0x or 0X) or one of the text values exec, var, eval, bison, or sql
1216
1216
.
1217
1217
@@ -1236,7 +1236,7 @@ During handling of sqllogging from option or directive, sqllogging was already
1236
1236
enabled. You can turn off sqllogging via the $sqllogging: off directive.
1237
1237
1238
1238
### RWL-309 warning: "ampersand replacement is not available for %s"
1239
- Ampsersand replacement can only be used in sql text directly embedded in
1239
+ Ampersand replacement can only be used in sql text directly embedded in
1240
1240
your rwl file and the sql provided appears to have & used for replacement. You
1241
1241
can use dynamic sql as an alternative, unless the & actually is part of your
1242
1242
sql statement in which case the warning can be ignored. To prevent the check
0 commit comments