Hi, PFA patch to reduce the size of query result set by converting it into 2D array result set. RM#2036 RM#2038
Additionally, 1) I had to change some logic in Debugger module to handle 2D array result set from async query (changes included in patch). 2) While testing I also found one issue where we are unable to right click on browser tree if we set Debug = False in config_local.py file, this was because of typo as path for css was changed to '/js/' to '/vendor/'. (separate patch RM#2213) Please review. -- Regards, Murtuza Zabuawala EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
diff --git a/web/pgadmin/browser/__init__.py b/web/pgadmin/browser/__init__.py index d14bd4f0..18c7fbda 100644 --- a/web/pgadmin/browser/__init__.py +++ b/web/pgadmin/browser/__init__.py @@ -42,7 +42,7 @@ class BrowserModule(PgAdminModule): ('static', 'vendor/codemirror/codemirror.css'), ('static', 'vendor/codemirror/addon/dialog/dialog.css'), ('static', 'vendor/jQuery-contextMenu/jquery.contextMenu.css' if current_app.debug - else 'css/jQuery-contextMenu/jquery.contextMenu.min.css'), + else 'vendor/jQuery-contextMenu/jquery.contextMenu.min.css'), ('static', 'vendor/wcDocker/wcDocker.css' if current_app.debug else 'vendor/wcDocker/wcDocker.min.css'), ('browser.static', 'css/browser.css'),
RM_2036.patch
Description: Binary data
-- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers