mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00

...caching the metadata moved where ParquetTable did I/O, which introduced a segfault on not found
11 lines
170 B
Bash
Executable File
11 lines
170 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
|