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?
|
public function getFullName(): string |
|
{ |
|
return $this->name; |
|
} |
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