mirror of
				https://github.com/cldellow/sqlite-parquet-vtable.git
				synced 2025-11-02 02:29:57 +00:00 
			
		
		
		
	fixes #23, with perhaps some open questions about why PGO on arrow/parquet-cpp regressed things.
		
			
				
	
	
		
			10 lines
		
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -euo pipefail
 | 
						|
 | 
						|
cd "$(dirname "${BASH_SOURCE[0]}")"
 | 
						|
./make-linux distclean
 | 
						|
./make-linux PROF=-fprofile-generate
 | 
						|
./tests/test-all
 | 
						|
./make-linux clean
 | 
						|
./make-linux PROF=-fprofile-use
 |