I use postgres schemes to group views and functions and store several versions of them in the database (sometimes this is necessary for backward compatibility), since different schemes have several versions of the same function, I canβt just refer to it by name, but you must write the full name "schema.funcname" to access it.
when accessing functions in schemaA from another function in schemaA, I always need to write schemaA.funcname. it hurts me when I rename the circuit later - is there a qualifier indicating that the function in the same circuit should be used? maybe like "this" in java?
hope it can be understood what i mean
THX
source
share