mirror of
				https://github.com/cldellow/sqlite-parquet-vtable.git
				synced 2025-11-04 02:39:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			178 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			178 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -euo pipefail
 | 
						|
./make
 | 
						|
 | 
						|
 | 
						|
if [ ! -v DEBUG ]; then
 | 
						|
  ../sqlite/sqlite3 -init ./cmds.txt < /dev/null
 | 
						|
else
 | 
						|
  gdb -ex run --args ../sqlite/sqlite3 -init ./cmds.txt
 | 
						|
fi
 | 
						|
 |