Fixed debugger execution issues:

1. Allow debugging of EPAS package procedures/functions with INOUT params.
 2. Add support for indirect debugging for EPAS package procedures/functions.
 3. Allow debugging with NULL param values.
 4. Remove saved debug arguments.

Fixes #3191
This commit is contained in:
Harshal Dhumal
2018-08-29 17:44:37 +05:30
committed by Akshay Joshi
parent b7ad95907a
commit 208ee4da8c
6 changed files with 150 additions and 82 deletions

View File

@@ -0,0 +1,34 @@
##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2018, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
"""
Deleting old debug logs
Revision ID: ca00ec32581b
Revises: aa86fb60b73d
Create Date: 2018-08-29 15:33:57.855491
"""
from pgadmin.model import db
# revision identifiers, used by Alembic.
revision = 'ca00ec32581b'
down_revision = 'aa86fb60b73d'
branch_labels = None
depends_on = None
def upgrade():
db.engine.execute(
'DELETE FROM debugger_function_arguments'
)
def downgrade():
pass