Skip to content

Commit abc247a

Browse files
author
Senthil Nathan
committed
Changes done for v1.1.5.
1 parent 80b0806 commit abc247a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## v1.1.5
4+
* Jan/10/2023
5+
* Added inline to the C++ function get_tuple_schema_and_attribute_info.
6+
37
## v1.1.4
48
* Jan/07/2023
59
* Added a new function get_tuple_schema_and_attribute_info to fetch the tuple schema literal string along with the tuple attribute information map with fully qualified tuple attribute names and their SPL type names as key/value pairs in that map.

impl/include/eval_predicate.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/*
88
============================================================
99
First created on: Mar/05/2021
10-
Last modified on: Jan/07/2023
10+
Last modified on: Jan/10/2023
1111
Author(s): Senthil Nathan (sen@us.ibm.com)
1212
1313
This toolkit's public GitHub URL:
@@ -10701,7 +10701,7 @@ namespace eval_predicate_functions {
1070110701
// It is a void method that returns nothing.
1070210702
//
1070310703
template<class T1>
10704-
void get_tuple_schema_and_attribute_info(T1 const & myTuple,
10704+
inline void get_tuple_schema_and_attribute_info(T1 const & myTuple,
1070510705
rstring & schema, SPL::map<rstring, rstring> & attributeInfo,
1070610706
int32 & error, boolean trace) {
1070710707
error = ALL_CLEAR;

info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<info:identity>
55
<info:name>eval_predicate</info:name>
66
<info:description>Toolkit for user defined rule (expression) processing</info:description>
7-
<info:version>1.1.4</info:version>
7+
<info:version>1.1.5</info:version>
88
<info:requiredProductVersion>4.2.1.6</info:requiredProductVersion>
99
</info:identity>
1010
<info:dependencies/>

0 commit comments

Comments
 (0)