We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dda5c7b + e24ecb8 commit 5fd72e4Copy full SHA for 5fd72e4
lib/util.js
@@ -335,16 +335,8 @@ const Util = {
335
* Cast values to the correct type
336
*/
337
castValues (values) {
338
- return _.map(values, value => {
339
- if (_.isString(value) && value[0] === '[') {
340
- let arr = JSON.parse(value)
341
- if (_.isArray(arr)) {
342
- return arr
343
- }
344
345
-
346
- return value
347
- })
+ // No special handling currently
+ return values;
348
},
349
350
castResultRows (rows, schema) {
0 commit comments