@openfn/language-mssql 5.0.5 → 5.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -184,7 +184,7 @@ function queryHandler(state, query, callback, options) {
|
|
|
184
184
|
}
|
|
185
185
|
const request = new import_tedious.Request(query, (err, rowCount, rows) => {
|
|
186
186
|
if (err) {
|
|
187
|
-
console.error(err
|
|
187
|
+
console.error(err);
|
|
188
188
|
reject(err);
|
|
189
189
|
} else {
|
|
190
190
|
console.log(`Finished: ${rowCount} row(s).`);
|
package/dist/index.js
CHANGED
|
@@ -158,7 +158,7 @@ function queryHandler(state, query, callback, options) {
|
|
|
158
158
|
}
|
|
159
159
|
const request = new Request(query, (err, rowCount, rows) => {
|
|
160
160
|
if (err) {
|
|
161
|
-
console.error(err
|
|
161
|
+
console.error(err);
|
|
162
162
|
reject(err);
|
|
163
163
|
} else {
|
|
164
164
|
console.log(`Finished: ${rowCount} row(s).`);
|