mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-29 04:22:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package feature
 | |
| 
 | |
| import "github.com/uptrace/bun/internal"
 | |
| 
 | |
| type Feature = internal.Flag
 | |
| 
 | |
| const (
 | |
| 	CTE Feature = 1 << iota
 | |
| 	Returning
 | |
| 	DefaultPlaceholder
 | |
| 	DoubleColonCast
 | |
| 	ValuesRow
 | |
| 	UpdateMultiTable
 | |
| 	InsertTableAlias
 | |
| 	DeleteTableAlias
 | |
| 	AutoIncrement
 | |
| 	TableCascade
 | |
| 	TableIdentity
 | |
| 	TableTruncate
 | |
| 	OnDuplicateKey
 | |
| )
 |