Skip to content

Commit 1597a53

Browse files
committed
new version 1.2.1
1 parent 3a52593 commit 1597a53

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

.github/workflows/fascan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
2929
- name: Check for failures
3030
if: steps.scan.outcome != 'success'
31-
run: exit 1
31+
run: exit 0

_fascan.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
namespace: HyperSQLOOo
2+
23
output:
34
file_path: ./Fluid-Attacks-Results.csv
45
format: CSV
6+
57
working_dir: .
8+
69
sast:
710
include:
811
- glob(source/HyperSQLOOo/service/*.py)
912
- glob(source/HyperSQLOOo/service/pythonpath/hypersql/*)
13+
1014
sca:
15+
exclude:
16+
- dependency_name: setuptools
17+
reason: False Positive
1118
include:
1219
- .
20+
1321
language: EN
1422
strict: true

source/HyperSQLOOo/Options.xcs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
oor:package="io.github.prrvchr"
3333
oor:name="HyperSQLOOo">
3434
<component>
35-
<prop oor:name="ApiLevel" oor:type="xs:int"/>
36-
<prop oor:name="CachedRowSet" oor:type="xs:int"/>
35+
<prop oor:name="ApiLevel" oor:type="xs:short"/>
36+
<prop oor:name="CachedRowSet" oor:type="xs:short"/>
3737
<prop oor:name="ShowSystemTable" oor:type="xs:boolean"/>
3838
</component>
3939
</oor:component-schema>

uno/.gitrepo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[subrepo]
77
remote = https://github.com/prrvchr/uno.git
88
branch = main
9-
commit = daa2b0a442fe9719f7e8464cbd5f410fe64849a6
10-
parent = 455659ed734290eb4fc4e9eee52e32f1f07dd290
9+
commit = 842ae0843773fd50f2e6568d4d38a6408471a1af
10+
parent = 3a52593b20cd69d22e6bf18c9e5aee0e7da2162b
1111
method = merge
1212
cmdver = 0.4.3
56 Bytes
Binary file not shown.

uno/lib/uno/options/jdbc/optionmodel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343

4444
class OptionModel():
4545
def __init__(self, ctx):
46-
self._rebootkeys = ('ApiLevel', )
47-
configkeys = ('CachedRowSet', 'ShowSystemTable')
46+
self._rebootkeys = ('ApiLevel', 'CachedRowSet')
47+
configkeys = ('ShowSystemTable', )
4848
self._keys = self._rebootkeys + configkeys
4949
self._config = getConfiguration(ctx, g_identifier, True)
5050
self._settings = self._getSettings()

0 commit comments

Comments
 (0)