doc: {“status”: 2, “old_status”: 0}
update := bson.D{{“$set”, bson.D{{“status”, 4},{“old_status”, “$status”}}}}
what I’m expect is set field ‘old_status’ to 2 and ‘status’ to 4
but use UpdateOne, the old_status value will be string “$status”, how to solve that ?