Open
Description
When sending the request via go-tarantool, nothing is updated and there are no errors with the CASE "id" WHEN ? THEN construct. However, when the same query is sent via DataGrip, everything works fine.
Example query:
UPDATE "attribute" SET "value" = CASE "id" WHEN ? THEN null END WHERE "id" IN (?)
req := tarantool.NewExecuteRequest(query).Args(args).Context(ctx)