You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is the List is an array of json objects, and not a varcar. I made the sql output formatter simply as a helper, I don't think it can ever be perfectly right. If you have another thought, I'd be happy to accept a PR
Using the following JSON:
{ "command" : "testcommand", "data" : [ { "name" : "NameOfTheObject", "values" : { "Item1" : [ "Value1" ], "Item2" : [ "Value2" ], "Item3" : [ "Value3" ], "Item4" : [ "Value4" ], "Item5" : [ "Value5" ] } } ], "status" : "success" }
Incorrectly outputs the following SQL:
The correct output should be:
The text was updated successfully, but these errors were encountered: