mirror of
				https://github.com/cldellow/sqlite-parquet-vtable.git
				synced 2025-11-02 02:29:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			211 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			211 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -euo pipefail
 | 
						|
 | 
						|
cd "$(dirname ${BASH_SOURCE[0]})"
 | 
						|
make
 | 
						|
 | 
						|
 | 
						|
if [ ! -v DEBUG ]; then
 | 
						|
  ../sqlite/sqlite3 -init ./cmds.txt < /dev/null
 | 
						|
else
 | 
						|
  gdb -ex run --args ../sqlite/sqlite3 -init ./cmds.txt
 | 
						|
fi
 | 
						|
 |