fix(scan.go): reflect.MakeSlice passes in the reflect.Array type (#6880)
This commit is contained in:
		
							parent
							
								
									9efae659cb
								
							
						
					
					
						commit
						c4c9aa45e3
					
				
							
								
								
									
										14
									
								
								scan.go
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								scan.go
									
									
									
									
									
								
							| @ -274,12 +274,14 @@ func Scan(rows Rows, db *DB, mode ScanMode) { | ||||
| 
 | ||||
| 			if !update || reflectValue.Len() == 0 { | ||||
| 				update = false | ||||
| 				// if the slice cap is externally initialized, the externally initialized slice is directly used here
 | ||||
| 				if reflectValue.Cap() == 0 { | ||||
| 					db.Statement.ReflectValue.Set(reflect.MakeSlice(reflectValue.Type(), 0, 20)) | ||||
| 				} else if !isArrayKind { | ||||
| 					reflectValue.SetLen(0) | ||||
| 					db.Statement.ReflectValue.Set(reflectValue) | ||||
| 				if !isArrayKind { | ||||
| 					// if the slice cap is externally initialized, the externally initialized slice is directly used here
 | ||||
| 					if reflectValue.Cap() == 0 { | ||||
| 						db.Statement.ReflectValue.Set(reflect.MakeSlice(reflectValue.Type(), 0, 20)) | ||||
| 					} else { | ||||
| 						reflectValue.SetLen(0) | ||||
| 						db.Statement.ReflectValue.Set(reflectValue) | ||||
| 					} | ||||
| 				} | ||||
| 			} | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 jessetang
						jessetang