Skip to content

Commit 60c19ed

Browse files
committed
run tests, update changelog, bump version
1 parent 69900bd commit 60c19ed

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ SIGNATURE
8383
```sql
8484
PACKAGE om_tapigen AUTHID CURRENT_USER IS
8585
c_generator CONSTANT VARCHAR2(10 CHAR) := 'OM_TAPIGEN';
86-
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.6.0';
86+
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.6.1';
8787
```
8888

8989

docs/build.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ const renderNavigation = function (type) {
2929
return '<!-- nav -->\n\n' + menu + '\n<!-- navstop -->';
3030
};
3131

32+
console.log('BUILD DOCS NAVIGATION');
3233
glob('docs/*.md', function (err, files) {
3334
if (err) throw err;
3435
files.forEach(function (file) {
3536
var content = fs.readFileSync(file, 'utf8');
37+
console.log('- process file ' + file);
3638
if (file === 'docs/README.md') {
3739
content = content.replace(navRegex, renderNavigation('index'));
3840
}

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Please use for all comments, discussions, feature requests or bug reports the Gi
2121

2222
<!-- toc -->
2323

24+
- [0.6.1 (2022-03-06)](#061-2022-03-06)
2425
- [0.6.0 (2020-12-20)](#060-2020-12-20)
2526
- [0.5.2 (2020-05-09)](#052-2020-05-09)
2627
- [0.5.1 (2020-04-19)](#051-2020-04-19)
@@ -33,6 +34,11 @@ Please use for all comments, discussions, feature requests or bug reports the Gi
3334

3435
<!-- tocstop -->
3536

37+
## 0.6.1 (2022-03-06)
38+
39+
- Fixed: Pipelinded table function view_existing_apis fails because of missing column in record definition
40+
- Fixed: Column compare not working correctly with RAW type columns - Thanks to Benjamin Stein (github.com/Asgarmagol) for the fix
41+
3642
## 0.6.0 (2020-12-20)
3743

3844
- added: support for bulk processing (generated per default as core functionality)

om_tapigen_install.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ end;
3636
prompt Compile package om_tapigen (spec)
3737
CREATE OR REPLACE PACKAGE om_tapigen AUTHID CURRENT_USER IS
3838
c_generator CONSTANT VARCHAR2(10 CHAR) := 'OM_TAPIGEN';
39-
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.6.0';
39+
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.6.1';
4040
/**
4141
Oracle PL/SQL Table API Generator
4242
=================================
@@ -165,6 +165,7 @@ TYPE t_rec_existing_apis IS RECORD(
165165
p_dml_view_name all_objects.object_name%TYPE,
166166
p_dml_view_trigger_name all_objects.object_name%TYPE,
167167
p_enable_one_to_one_view t_vc2_5,
168+
p_one_to_one_view_name all_objects.object_name%TYPE,
168169
p_api_name all_objects.object_name%TYPE,
169170
p_sequence_name all_objects.object_name%TYPE,
170171
p_exclude_column_list t_vc2_4k,
@@ -908,6 +909,8 @@ CREATE OR REPLACE PACKAGE BODY om_tapigen IS
908909
'TO_CLOB(''@@@@@@@@@@@@@@@'')'
909910
WHEN p_data_type = 'BLOB' THEN
910911
'TO_BLOB(UTL_RAW.cast_to_raw(''@@@@@@@@@@@@@@@''))'
912+
WHEN p_data_type = 'RAW' THEN
913+
'UTL_RAW.cast_to_raw(''@@@@@@@@@@@@@@@'')'
911914
WHEN p_data_type = 'XMLTYPE' THEN
912915
'XMLTYPE(''<NULL/>'')'
913916
ELSE

src/OM_TAPIGEN.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CREATE OR REPLACE PACKAGE om_tapigen AUTHID CURRENT_USER IS
22
c_generator CONSTANT VARCHAR2(10 CHAR) := 'OM_TAPIGEN';
3-
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.6.0';
3+
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.6.1';
44
/**
55
Oracle PL/SQL Table API Generator
66
=================================

0 commit comments

Comments
 (0)