@sap/xsodata
Advanced tools
Comparing version 7.3.2 to 7.3.3
@@ -11,2 +11,9 @@ # Change Log | ||
## [7.3.3] - 2020-10-01 | ||
### Fixed | ||
Commit on drop of temporary tables added. | ||
## [7.3.2] - 2020-09-30 | ||
@@ -13,0 +20,0 @@ |
@@ -27,2 +27,3 @@ 'use strict'; | ||
utils.try(dataCollectorGet.dropTempTables), | ||
utils.try(dataCollectorGet.commit), | ||
@@ -29,0 +30,0 @@ utils.tryAndMeasure(serializer.serializeData, 'serializer.serializeData') |
@@ -252,1 +252,13 @@ 'use strict'; | ||
}; | ||
exports.commit = function (context, asyncDone) { | ||
context.logger.silly('dataCollectorGet', 'commit'); | ||
var client = context.db.client; | ||
client.commit(function (err) { | ||
if (err) { | ||
context.logger.info('SQL Exec', 'Commit Error: \n' + JSON.stringify(err)); | ||
return asyncDone(err, context); | ||
} | ||
return asyncDone(null, context); | ||
}); | ||
}; |
{ | ||
"name": "@sap/xsodata", | ||
"version": "7.3.2", | ||
"version": "7.3.3", | ||
"description": "Expose data from a HANA database as OData V2 service with help of .xsodata files.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1306047
32213