mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	fix compatibility heatmap with mysql 8 (#5232)
This commit is contained in:
		
				
					committed by
					
						
						techknowlogick
					
				
			
			
				
	
			
			
			
						parent
						
							7edb930240
						
					
				
				
					commit
					794049e824
				
			@@ -23,7 +23,7 @@ func GetUserHeatmapDataByUser(user *User) ([]*UserHeatmapData, error) {
 | 
				
			|||||||
	case setting.UseSQLite3:
 | 
						case setting.UseSQLite3:
 | 
				
			||||||
		groupBy = "strftime('%s', strftime('%Y-%m-%d', created_unix, 'unixepoch'))"
 | 
							groupBy = "strftime('%s', strftime('%Y-%m-%d', created_unix, 'unixepoch'))"
 | 
				
			||||||
	case setting.UseMySQL:
 | 
						case setting.UseMySQL:
 | 
				
			||||||
		groupBy = "UNIX_TIMESTAMP(DATE_FORMAT(FROM_UNIXTIME(created_unix), '%Y%m%d'))"
 | 
							groupBy = "UNIX_TIMESTAMP(DATE(FROM_UNIXTIME(created_unix)))"
 | 
				
			||||||
	case setting.UsePostgreSQL:
 | 
						case setting.UsePostgreSQL:
 | 
				
			||||||
		groupBy = "extract(epoch from date_trunc('day', to_timestamp(created_unix)))"
 | 
							groupBy = "extract(epoch from date_trunc('day', to_timestamp(created_unix)))"
 | 
				
			||||||
	case setting.UseMSSQL:
 | 
						case setting.UseMSSQL:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user