mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Add check for empty set when dropping indexes during migration (#8475)
This commit is contained in:
		@@ -384,11 +384,13 @@ func dropTableColumns(sess *xorm.Session, tableName string, columnNames ...strin
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
		for _, index := range res {
 | 
							for _, index := range res {
 | 
				
			||||||
			indexName := index["column_name"]
 | 
								indexName := index["column_name"]
 | 
				
			||||||
 | 
								if len(indexName) > 0 {
 | 
				
			||||||
				_, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s` ON `%s`", indexName, tableName))
 | 
									_, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s` ON `%s`", indexName, tableName))
 | 
				
			||||||
				if err != nil {
 | 
									if err != nil {
 | 
				
			||||||
					return err
 | 
										return err
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Now drop the columns
 | 
							// Now drop the columns
 | 
				
			||||||
		cols := ""
 | 
							cols := ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user