duckpgq-extension icon indicating copy to clipboard operation
duckpgq-extension copied to clipboard

Fix label not being unique error on windows

Open Dtenwolde opened this issue 11 months ago • 0 comments

Almost all tests seem to fail on Windows in the CI as follows:

================================================================================
Query unexpectedly failed! (D:/a/duckpgq-extension/duckpgq-extension/test/sql/altering_table.test:34)!
================================================================================
-CREATE PROPERTY GRAPH pg
VERTEX TABLES (
    Student PROPERTIES ( id, name ) LABEL Person,
    School LABEL SCHOOL
    )
EDGE TABLES (
    know    SOURCE KEY ( src ) REFERENCES Student ( id )
            DESTINATION KEY ( dst ) REFERENCES Student ( id )
            LABEL Knows,
    studyAt SOURCE KEY ( personId ) REFERENCES Student ( id )
            DESTINATION KEY ( SchoolId ) REFERENCES School ( id )
            LABEL StudyAt
    );
================================================================================
Constraint Error: Label school is not unique, make sure all labels are unique

Dtenwolde avatar Mar 29 '24 10:03 Dtenwolde