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
{{ message }}
This repository was archived by the owner on Jun 7, 2026. It is now read-only.
when running the query SELECT COALESCE(null, gesperrt, freigabe1u1) from ada thru the ast, I get the following function call expression:
the SimpleName of the arguments atm only contain a local name, but not a full qualified name including the reference to the table like ada.gesperrt (or maybe even prefixed with the database name included).
I guess thats something SimpleName->getFullName() should return, but is not yet implemented, right?
when running the query
SELECT COALESCE(null, gesperrt, freigabe1u1) from adathru the ast, I get the following function call expression:the
SimpleNameof the arguments atm only contain a local name, but not a full qualified name including the reference to the table likeada.gesperrt(or maybe even prefixed with the database name included).I guess thats something
SimpleName->getFullName()should return, but is not yet implemented, right?sqlftw/sources/Sql/Expression/identifier/SimpleName.php
Lines 33 to 36 in 1260391