You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-30 07:25:34 +03:00 
			
		
		
		
	DBRM connections are reused so that we don't have a huge amount of TIME_WAIT sockets when there are large amounts of DML. Also applied to i_s.columnstore_files
		
			
				
	
	
		
			20 lines
		
	
	
		
			472 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			472 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| 
 | |
| include_directories( ${ENGINE_COMMON_INCLUDES} )
 | |
| 
 | |
| ########### next target ###############
 | |
| 
 | |
| set(messageqcpp_LIB_SRCS
 | |
|     messagequeue.cpp
 | |
|     messagequeuepool.cpp
 | |
|     bytestream.cpp
 | |
|     socketparms.cpp
 | |
|     inetstreamsocket.cpp
 | |
|     iosocket.cpp
 | |
|     compressed_iss.cpp)
 | |
| 
 | |
| add_library(messageqcpp SHARED ${messageqcpp_LIB_SRCS})
 | |
| 
 | |
| set_target_properties(messageqcpp PROPERTIES VERSION 1.0.0 SOVERSION 1)
 | |
| 
 | |
| install(TARGETS messageqcpp DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
 |