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.
1 parent e4b2e0d commit e24ecb8Copy full SHA for e24ecb8
lib/util.js
@@ -329,16 +329,8 @@ const Util = {
329
* Cast values to the correct type
330
*/
331
castValues (values) {
332
- return _.map(values, value => {
333
- if (_.isString(value) && value[0] === '[') {
334
- let arr = JSON.parse(value)
335
- if (_.isArray(arr)) {
336
- return arr
337
- }
338
339
-
340
- return value
341
- })
+ // No special handling currently
+ return values;
342
},
343
344
castResultRows (rows, schema) {
0 commit comments