[BUGS] Polymorphism in the PostgreSQL object model

2001-07-10 Thread Ganesh Prasad
* 0.25; end; ' language 'plpgsql'; test1.sql: -- /* Calculate tax for all employees. */ select getTax( t_employee ) from t_employee; test2.sql: -- /* The "method" for managers has to be explicitly called. The "method" defined for manager

RE: [BUGS] Inheritance of functions shows unexpected behaviour

2001-05-03 Thread Ganesh Prasad
Thank you. I hope the fix will implement polymorphism also, i.e., if a superclass and subclass define an identically-named function, then calling the function on all records of the superclass should transparently call the subclass's function for the records corresponding to the subclass. Regard