You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to recreate (using CLI tested on v1.1.1 af39bd0dcf Linux aarch64)
open dbsample.sqlite using duckdb duckdb sqlite:dbsample.sqlite
perform query: .read test.sql (correctly returns result set of 6 rows)
make copy of database
ATTACH 'target.db'AS ddb;
COPY FROM DATABASE dbsample to ddb;
open database copy .open target.db
perform query again: .read test.sql (results in error)
INTERNAL Error: Attempted to access index 0 within vector of size 0
This error signals an assertion failure within DuckDB. This usually occurs due to unexpected conditions or errors in the
program's logic.For more information, see https://duckdb.org/docs/dev/internal_errors
Steps to recreate (using CLI tested on v1.1.1 af39bd0dcf Linux aarch64)
duckdb sqlite:dbsample.sqlite
.read test.sql
(correctly returns result set of 6 rows).open target.db
.read test.sql
(results in error)Archive.zip
The text was updated successfully, but these errors were encountered: