The join query below reports an error message "Program terminated with exit(1)" in the JS console.
ATTACH 'https://raw.githubusercontent.com/tobilg/aws-iam-data/main/data/db/iam.duckdb' as aws_iam (READ_ONLY);
create table a as from "aws_iam"."actions";
create table s as from "aws_iam"."services";
from a join s on (a.service_id = s.service_id)
select a.*, s.*;
I tested this with a pristine firefox, started with this command:
The join query below reports an error message "Program terminated with exit(1)" in the JS console.
I tested this with a pristine firefox, started with this command:
Same message occurs in chromium, latest version.
The query succeeds using the duckdb CLI.