Skip to content

INTERNAL Error: Attempted to access index 1 within vector of size 1 on startup from new install #643

Discussion options

You must be logged in to vote

Hey, this is on DuckDB side, it has since been fixed by this PR duckdb/duckdb#13873, will be in the upcoming v1.1.1.

harlequin side the crash can be work-arounded by explicitly materializing system_types like:

with
+              system_types as materialized (
-              system_types as (
                  select distinct
                      type_name as label, 
                      'type' as type_label, 
                      1000 as priority, 
                      null as context
                  from duckdb_types()
                  where database_name = 'system'
              ),
              custom_types as (
                  select distinct
                      type_name …

Replies: 3 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
3 replies
@tconbeer
Comment options

@kdheepak
Comment options

@tconbeer
Comment options

Answer selected by tconbeer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants
Converted from issue

This discussion was converted from issue #642 on September 13, 2024 16:17.