mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Use gitea forked macaron (#7933)
Signed-off-by: Tamal Saha <tamal@appscode.com>
This commit is contained in:
		 Tamal Saha
					Tamal Saha
				
			
				
					committed by
					
						 techknowlogick
						techknowlogick
					
				
			
			
				
	
			
			
			 techknowlogick
						techknowlogick
					
				
			
						parent
						
							ca6fb004ac
						
					
				
				
					commit
					171b359877
				
			
							
								
								
									
										11
									
								
								vendor/github.com/mattn/go-sqlite3/sqlite3ext.h
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/github.com/mattn/go-sqlite3/sqlite3ext.h
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -311,12 +311,18 @@ struct sqlite3_api_routines { | ||||
|   int (*str_errcode)(sqlite3_str*); | ||||
|   int (*str_length)(sqlite3_str*); | ||||
|   char *(*str_value)(sqlite3_str*); | ||||
|   /* Version 3.25.0 and later */ | ||||
|   int (*create_window_function)(sqlite3*,const char*,int,int,void*, | ||||
|                             void (*xStep)(sqlite3_context*,int,sqlite3_value**), | ||||
|                             void (*xFinal)(sqlite3_context*), | ||||
|                             void (*xValue)(sqlite3_context*), | ||||
|                             void (*xInv)(sqlite3_context*,int,sqlite3_value**), | ||||
|                             void(*xDestroy)(void*)); | ||||
|   /* Version 3.26.0 and later */ | ||||
|   const char *(*normalized_sql)(sqlite3_stmt*); | ||||
|   /* Version 3.28.0 and later */ | ||||
|   int (*stmt_isexplain)(sqlite3_stmt*); | ||||
|   int (*value_frombind)(sqlite3_value*); | ||||
| }; | ||||
|  | ||||
| /* | ||||
| @@ -604,6 +610,11 @@ typedef int (*sqlite3_loadext_entry)( | ||||
| #define sqlite3_str_value              sqlite3_api->str_value | ||||
| /* Version 3.25.0 and later */ | ||||
| #define sqlite3_create_window_function sqlite3_api->create_window_function | ||||
| /* Version 3.26.0 and later */ | ||||
| #define sqlite3_normalized_sql         sqlite3_api->normalized_sql | ||||
| /* Version 3.28.0 and later */ | ||||
| #define sqlite3_stmt_isexplain         sqlite3_api->isexplain | ||||
| #define sqlite3_value_frombind         sqlite3_api->frombind | ||||
| #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ | ||||
|  | ||||
| #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user