(exp map[string]interface{})
| 402 | } |
| 403 | |
| 404 | func getSortedKeys(exp map[string]interface{}) []string { |
| 405 | sortedKeys := make([]string, 0, len(exp)) |
| 406 | for k := range exp { |
| 407 | sortedKeys = append(sortedKeys, k) |
| 408 | } |
| 409 | sort.Strings(sortedKeys) |
| 410 | return sortedKeys |
| 411 | } |
| 412 | |
| 413 | func isListType(val interface{}) bool { |
| 414 | if driver.IsValue(val) { |