[NOTICE] This table does not propagate the source row time columns: default_catalog.default_database._Customer[timestamp]
in script:comprehensiveTest.sqrl [10:1]:
CustomerFilteredDistinct := DISTINCT Customer ON customerid ORDER BY lastUpdated DESC;

AnotherCustomer := SELECT customerid, email, lastUpdated FROM _Customer WHERE customerid > 100;
^

[NOTICE] You can rewrite the join as a temporal join for greater efficiency by adding: FOR SYSTEM_TIME AS OF `time`
in script:comprehensiveTest.sqrl [18:1]:
InvalidDistinct := SELECT customerid, `timestamp`, name AS namee FROM (SELECT *, (ROW_NUMBER() OVER (PARTITION BY customerid ORDER BY `timestamp` DESC)) AS _rownum FROM Customer) WHERE (_rownum = 1);

MissedTemporalJoin := SELECT * FROM ExternalOrders o JOIN ExplicitDistinct c ON o.customerid = c.customerid;
^

[NOTICE] This table does not propagate the source row time columns: default_catalog.default_database.SelectCustomers[timestamp]
in script:comprehensiveTest.sqrl [51:1]:
);

CustomerTimeWindow := SELECT
^

[FATAL] Type must be a non-null array, array, or non-null
in script:comprehensiveTest-fail-wrong-query.graphqls [17:89]:

type Query {
    TableFunctionCallsTblFct(arg1: Int!, arg2: Int!, limit: Int = 10, offset: Int = 0): [[Customer!]]
----------------------------------------------------------------------------------------^

