-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
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?
sqlftw/sources/Sql/Expression/identifier/SimpleName.php
Lines 33 to 36 in 1260391
| public function getFullName(): string | |
| { | |
| return $this->name; | |
| } |
