Source code for pystratum_pgsql.wrapper.PgSqlLogWrapper

from typing import Any, Dict

from pystratum_common.wrapper.LogWrapper import LogWrapper

from pystratum_pgsql.wrapper.PgSqlWrapper import PgSqlWrapper


[docs]class PgSqlLogWrapper(PgSqlWrapper, LogWrapper): """ Wrapper method generator for stored procedures with designation type log. """ # ------------------------------------------------------------------------------------------------------------------ def _write_result_handler(self, routine: Dict[str, Any]) -> None: """ Generates code of the return statement of the wrapper method for invoking a stored routine. :param dict routine: Metadata of the stored routine. """ self._write_line('return self.execute_sp_log({0!s})'.format(self._generate_command(routine)))
# ----------------------------------------------------------------------------------------------------------------------