set map size to the shallowCopy
This commit is contained in:
		
							parent
							
								
									21f442293f
								
							
						
					
					
						commit
						54c52f696c
					
				|  | @ -426,7 +426,7 @@ func (m *Record) getNormalizeDataValueForDB(key string) any { | ||||||
| 
 | 
 | ||||||
| // shallowCopy shallow copy data into a new map.
 | // shallowCopy shallow copy data into a new map.
 | ||||||
| func shallowCopy(data map[string]any) map[string]any { | func shallowCopy(data map[string]any) map[string]any { | ||||||
| 	result := map[string]any{} | 	result := make(map[string]any, len(data)) | ||||||
| 
 | 
 | ||||||
| 	for k, v := range data { | 	for k, v := range data { | ||||||
| 		result[k] = v | 		result[k] = v | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue