(conn)
| 774 | |
| 775 | |
| 776 | def get_search_path(conn): |
| 777 | status, res = get_extension_details(conn, PLDBG_EXTN) |
| 778 | if not status: |
| 779 | return False, internal_server_error(errormsg=res) |
| 780 | |
| 781 | status, res = conn.execute_scalar( |
| 782 | "SELECT current_setting('search_path')||',{0}'".format(res['schema'])) |
| 783 | |
| 784 | if not status: |
| 785 | return False, internal_server_error(errormsg=res) |
| 786 | |
| 787 | return True, res |
| 788 | |
| 789 | |
| 790 | def filter_params_by_default(params_list, default_value_str): |
no test coverage detected