Add comment to json modifier

pull/29/head
Vinícius Garcia 2022-10-18 10:50:58 -03:00
parent 136ee66fe9
commit ad516d5e1f
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ var jsonModifier = AttrModifier{
Value: func(ctx context.Context, opInfo OpInfo, inputValue interface{}) (outputValue interface{}, _ error) {
b, err := json.Marshal(inputValue)
// SQL server uses the NVARCHAR type to store JSON and
// it expects to receive strings not []byte, thus:
if opInfo.DriverName == "sqlserver" {
return string(b), err
}