PostgreSQL v12 introduced log10() as an alias for the single-argument invocation of log(). However, most hosting providers are still on PostgreSQL v11 or earlier at this time, which do not support log10(). In order to make code portable, how can log10() be aliased to log() in earlier version of PostgreSQL?
log10().