Details
-
New Feature
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
None
-
None
Description
Results can have multiple form (JSON with column Ids, Array of result, JSON with table and columns ids, ...)
For all of them but the array of result, if there is a JSON identifier, some result will be skipped.
example default (JSON):
conn.query('SELECT 1, 1 as col1') |
.then(res => {
|
console.log(res);
|
// res = |
// [ |
// { '1': 1, col1: 1 } |
// ] |
});
|
//but :
|
conn.query('SELECT 1, 1') |
.then(res => {
|
console.log(res);
|
// res = |
// [ |
// { '1': 1} |
// ] |
})
|
Driver must throw an Error if all result won't be present in the results.
Attachments
Issue Links
- is blocked by
-
CONJS-131 Change CONJS-127 breaks our prodcution
- Closed