@pi-r/oci 0.6.1 → 0.6.2

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/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ### @pi-r/oci
2
2
 
3
+ https://e-mc.readthedocs.io/en/latest/cloud/oci.html
4
+
3
5
  ### LICENSE
4
6
 
5
7
  MIT
package/client/index.js CHANGED
@@ -75,11 +75,7 @@ async function executeBatchQuery(credential, batch, sessionKey) {
75
75
  const closeClient = async () => client?.close();
76
76
  for (let i = 0; i < length; ++i) {
77
77
  const item = batch[i];
78
- const { service, table, id, query, ignoreCache } = item;
79
- if (!table) {
80
- closeClient();
81
- throw (0, util_1.formatError)(item, "Missing database table" /* ERR_DB.TABLE */);
82
- }
78
+ const { service, table = '', id, query, ignoreCache } = item;
83
79
  const getCache = (value) => {
84
80
  if (ignoreCache !== 1) {
85
81
  cacheValue.renewCache = ignoreCache === 0;
@@ -90,6 +86,10 @@ async function executeBatchQuery(credential, batch, sessionKey) {
90
86
  let rows, queryString = caching && ignoreCache !== true ? table + '_' : '';
91
87
  invalid: {
92
88
  if (id) {
89
+ if (!table) {
90
+ closeClient();
91
+ throw (0, util_1.formatError)(item, "Missing database table" /* ERR_DB.TABLE */);
92
+ }
93
93
  const update = item.update;
94
94
  if (queryString) {
95
95
  queryString += id;
@@ -142,6 +142,10 @@ async function executeBatchQuery(credential, batch, sessionKey) {
142
142
  else if (query) {
143
143
  let maxRows = typeof item.limit === 'number' ? Math.max(item.limit, 0) : undefined;
144
144
  if ((0, types_1.isPlainObject)(query)) {
145
+ if (!table) {
146
+ closeClient();
147
+ throw (0, util_1.formatError)(item, "Missing database table" /* ERR_DB.TABLE */);
148
+ }
145
149
  if (queryString && (rows = getCache(queryString += Module.asString(query, true) + (maxRows ? maxRows : '')))) {
146
150
  result[i] = rows;
147
151
  continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/oci",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Oracle (OCI) cloud functions for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "publishConfig": {
@@ -20,12 +20,12 @@
20
20
  "license": "MIT",
21
21
  "homepage": "https://github.com/anpham6/pi-r#readme",
22
22
  "dependencies": {
23
- "@e-mc/cloud": "^0.8.1",
24
- "@e-mc/module": "^0.8.1",
25
- "@e-mc/types": "^0.8.1",
26
- "@pi-r/aws": "^0.6.1",
27
- "@pi-r/oracle": "^0.6.1",
28
- "aws-sdk": "^2.1531.0",
23
+ "@e-mc/cloud": "^0.8.2",
24
+ "@e-mc/module": "^0.8.2",
25
+ "@e-mc/types": "^0.8.2",
26
+ "@pi-r/aws": "^0.6.2",
27
+ "@pi-r/oracle": "^0.6.2",
28
+ "aws-sdk": "^2.1545.0",
29
29
  "oracledb": "^6.3.0"
30
30
  }
31
31
  }