> CREATE RULE new_entry AS ON INSERT to logview DO INSTEAD INSERT > (id,tm,info) VALUES (COALESCE(new.id,[default]),COALESCE(new.tm > ,[default]),COALESCE(new.info,[default])); what would [default] insert here? the default of the view or the default of the underlying table? B.