mirror of
				https://github.com/cldellow/sqlite-parquet-vtable.git
				synced 2025-11-02 02:29:57 +00:00 
			
		
		
		
	Very simplistics - select M fields, filters on N fields, slight bias to use values of same type of the field it's comparing against. No segfaults yet, but one test case that generates differing output when run against `nulls` and `nulls1`: ``` select rowid from nulls1 where binary_9 >= '56' and ts_5 < 496886400000; ```
		
			
				
	
	
		
			12 lines
		
	
	
		
			190 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			190 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -euo pipefail
 | 
						|
 | 
						|
here=$(dirname "${BASH_SOURCE[0]}")
 | 
						|
 | 
						|
set -x
 | 
						|
"$here"/test-non-existent
 | 
						|
"$here"/test-unsupported
 | 
						|
"$here"/test-supported
 | 
						|
"$here"/test-queries
 | 
						|
"$here"/test-random
 |