Thread: [pgAdmin4] [Patch]: Foreign Table Module
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
Attachment
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.
Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
Attachment
Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
Attachment
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
- When we create any foreign table then same foreign table is also listed under "Tables" node.
- SQL is not generated properly. Please find below SQL which gives error during execution.
- When we create the new foreign table with security label then no SQL is generated for security label.
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
- During creation of the column, when we remove the collation then it gives below error.
- Delete/Drop cascade functionality is not working, we are getting below error.
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
- If we edit foreign table and change the schema then it gives below error.
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
- ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
- DISABLE TRIGGER [ trigger_name | ALL | USER ]
- ENABLE TRIGGER [ trigger_name | ALL | USER ]
- ENABLE REPLICA TRIGGER trigger_name
- ENABLE ALWAYS TRIGGER trigger_name
- SET WITH OIDS
- SET WITHOUT OIDS
As per our conversation yesterday, we need to incorporate these functionalities into pgAdmin4. Here I have some queries regarding the implementation. Under the Foreign Table Node, we don't have separate nodes for columns, triggers and constraints as table. So in order to add above Trigger related functionalities, we will have to add Trigger Node under the Foreign Table. And If we add Triggers, then Do we need to add Columns and Constraints as separate nodes under the Foreign Table?
Thanks,
Khushboo
Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULL
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
- When we create any foreign table then same foreign table is also listed under "Tables" node.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;
- When we create the new foreign table with security label then no SQL is generated for security label.
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefined
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a function
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is null
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of range
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSDo let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Hi On Wed, May 4, 2016 at 7:51 AM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote: > Hi Dave, > > In PG 9.5, for Foreign Table Editing, below new functionalities are added: > > ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | > MAIN } > DISABLE TRIGGER [ trigger_name | ALL | USER ] > ENABLE TRIGGER [ trigger_name | ALL | USER ] > ENABLE REPLICA TRIGGER trigger_name > ENABLE ALWAYS TRIGGER trigger_name > SET WITH OIDS > SET WITHOUT OIDS > > As per our conversation yesterday, we need to incorporate these > functionalities into pgAdmin4. Here I have some queries regarding the > implementation. Under the Foreign Table Node, we don't have separate nodes > for columns, triggers and constraints as table. So in order to add above > Trigger related functionalities, we will have to add Trigger Node under the > Foreign Table. And If we add Triggers, then Do we need to add Columns and > Constraints as separate nodes under the Foreign Table? Following discussion with Ashesh and some further thought, please put these enhancements on hold. We'll add them in a future release, as it's just too much work to do right now. Please add a TODO file to the root directory of pgAdmin 4, and add these as items for later completion. Thanks. -- Dave Page VP, Chief Architect, Tools & Installers EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company Blog: http://pgsnake.blogspot.com Twitter: @pgsnake
Hi
On Wed, May 4, 2016 at 7:51 AM, Khushboo Vashi
<khushboo.vashi@enterprisedb.com> wrote:
> Hi Dave,
>
> In PG 9.5, for Foreign Table Editing, below new functionalities are added:
>
> ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED |
> MAIN }
> DISABLE TRIGGER [ trigger_name | ALL | USER ]
> ENABLE TRIGGER [ trigger_name | ALL | USER ]
> ENABLE REPLICA TRIGGER trigger_name
> ENABLE ALWAYS TRIGGER trigger_name
> SET WITH OIDS
> SET WITHOUT OIDS
>
> As per our conversation yesterday, we need to incorporate these
> functionalities into pgAdmin4. Here I have some queries regarding the
> implementation. Under the Foreign Table Node, we don't have separate nodes
> for columns, triggers and constraints as table. So in order to add above
> Trigger related functionalities, we will have to add Trigger Node under the
> Foreign Table. And If we add Triggers, then Do we need to add Columns and
> Constraints as separate nodes under the Foreign Table?
Following discussion with Ashesh and some further thought, please put
these enhancements on hold. We'll add them in a future release, as
it's just too much work to do right now.
Please add a TODO file to the root directory of pgAdmin 4, and add
these as items for later completion.
Thanks.
--
Dave Page
VP, Chief Architect, Tools & Installers
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULL
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
- When we create any foreign table then same foreign table is also listed under "Tables" node.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;
- When we create the new foreign table with security label then no SQL is generated for security label.
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefined
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a function
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is null
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of range
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDS
Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachment
self.preference = Preferences(self.name, None)
File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/preferences.py", line 261, in __init__
db.session.commit()
…..
sqlalchemy.exc.OperationalError: (OperationalError) database is locked 'INSERT INTO module_preference (name) VALUES (?)' ('NODE-foreign-table’,)



On 06-May-2016, at 3:55 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,<pgAdmin4_Foreign_tables_ver2.patch>Please find the attached patch for the Foreign Table Node with fixed issues.Thanks,KhushbooOn Fri, Apr 29, 2016 at 12:20 PM, Neel Patel <neel.patel@enterprisedb.com> wrote:Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULLI think if its NOT NULL, then it should be NULL and it is default, so this should be okay.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
Done
- When we create any foreign table then same foreign table is also listed under "Tables" node.
This bug is related to Table node and Harshal is working on this issue.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;Done
- When we create the new foreign table with security label then no SQL is generated for security label.
Done
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;Done
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefinedDone
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a functionDone
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is nullDone
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;Done
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;Done
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of rangeDone
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');Done
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).Done
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();Done
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
Done
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"Done
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');Done
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSAs per the discussion, we will add these functionality into the next phase.Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachment
On 06-May-2016, at 10:15 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi Murtuza,
Have you applied Dependent Cell patch on this? As the Foreign table is dependent on that.
Thanks,
KhushbooOn 6 May 2016 20:39, "Murtuza Zabuawala" <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,Please find comments as below,I pulled latest version of code and then I applied v2 patch.1) Once applying patch, When I re-started pgAdmin4 server again, I got below error (Screenshot is also attached),( FYI, I was not able to re-produce it again second time. )File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/__init__.py", line 37, in create_module_preference
self.preference = Preferences(self.name, None)
File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/preferences.py", line 261, in __init__
db.session.commit()
…..…..cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (OperationalError) database is locked 'INSERT INTO module_preference (name) VALUES (?)' ('NODE-foreign-table’,)2) I am not able to create/open Foreign table node as I am getting errors from JS side (when I expand the schema node & do not get Create context menu as well)Please find screenshots for both scenario.<Screenshot from 2016-05-06 08-00-19.png><Screenshot from 2016-05-06 07-59-45.png><Screen Shot 2016-05-06 at 8.18.12 pm.png>On 06-May-2016, at 3:55 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,<pgAdmin4_Foreign_tables_ver2.patch>Please find the attached patch for the Foreign Table Node with fixed issues.Thanks,KhushbooOn Fri, Apr 29, 2016 at 12:20 PM, Neel Patel <neel.patel@enterprisedb.com> wrote:Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULLI think if its NOT NULL, then it should be NULL and it is default, so this should be okay.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
Done
- When we create any foreign table then same foreign table is also listed under "Tables" node.
This bug is related to Table node and Harshal is working on this issue.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;Done
- When we create the new foreign table with security label then no SQL is generated for security label.
Done
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;Done
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefinedDone
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a functionDone
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is nullDone
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;Done
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;Done
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of rangeDone
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');Done
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).Done
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();Done
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
Done
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"Done
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');Done
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSAs per the discussion, we will add these functionality into the next phase.Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Hi Murtuza,
Have you applied Dependent Cell patch on this? As the Foreign table is dependent on that.
Thanks,
Khushboo
Hi Khushboo,Please find comments as below,I pulled latest version of code and then I applied v2 patch.1) Once applying patch, When I re-started pgAdmin4 server again, I got below error (Screenshot is also attached),( FYI, I was not able to re-produce it again second time. )File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/__init__.py", line 37, in create_module_preference
self.preference = Preferences(self.name, None)
File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/preferences.py", line 261, in __init__
db.session.commit()
…..…..cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (OperationalError) database is locked 'INSERT INTO module_preference (name) VALUES (?)' ('NODE-foreign-table’,)2) I am not able to create/open Foreign table node as I am getting errors from JS side (when I expand the schema node & do not get Create context menu as well)Please find screenshots for both scenario.On 06-May-2016, at 3:55 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,<pgAdmin4_Foreign_tables_ver2.patch>Please find the attached patch for the Foreign Table Node with fixed issues.Thanks,KhushbooOn Fri, Apr 29, 2016 at 12:20 PM, Neel Patel <neel.patel@enterprisedb.com> wrote:Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULLI think if its NOT NULL, then it should be NULL and it is default, so this should be okay.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
Done
- When we create any foreign table then same foreign table is also listed under "Tables" node.
This bug is related to Table node and Harshal is working on this issue.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;Done
- When we create the new foreign table with security label then no SQL is generated for security label.
Done
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;Done
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefinedDone
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a functionDone
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is nullDone
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;Done
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;Done
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of rangeDone
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');Done
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).Done
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();Done
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
Done
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"Done
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');Done
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSAs per the discussion, we will add these functionality into the next phase.Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachment
On 09-May-2016, at 10:43 am, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,No I did not. let me apply it and try again.Thanks,MurtuzaOn 06-May-2016, at 10:15 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi Murtuza,
Have you applied Dependent Cell patch on this? As the Foreign table is dependent on that.
Thanks,
KhushbooOn 6 May 2016 20:39, "Murtuza Zabuawala" <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,Please find comments as below,I pulled latest version of code and then I applied v2 patch.1) Once applying patch, When I re-started pgAdmin4 server again, I got below error (Screenshot is also attached),( FYI, I was not able to re-produce it again second time. )File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/__init__.py", line 37, in create_module_preference
self.preference = Preferences(self.name, None)
File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/preferences.py", line 261, in __init__
db.session.commit()
…..…..cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (OperationalError) database is locked 'INSERT INTO module_preference (name) VALUES (?)' ('NODE-foreign-table’,)2) I am not able to create/open Foreign table node as I am getting errors from JS side (when I expand the schema node & do not get Create context menu as well)Please find screenshots for both scenario.<Screenshot from 2016-05-06 08-00-19.png><Screenshot from 2016-05-06 07-59-45.png><Screen Shot 2016-05-06 at 8.18.12 pm.png>On 06-May-2016, at 3:55 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,<pgAdmin4_Foreign_tables_ver2.patch>Please find the attached patch for the Foreign Table Node with fixed issues.Thanks,KhushbooOn Fri, Apr 29, 2016 at 12:20 PM, Neel Patel <neel.patel@enterprisedb.com> wrote:Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULLI think if its NOT NULL, then it should be NULL and it is default, so this should be okay.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
Done
- When we create any foreign table then same foreign table is also listed under "Tables" node.
This bug is related to Table node and Harshal is working on this issue.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;Done
- When we create the new foreign table with security label then no SQL is generated for security label.
Done
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;Done
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefinedDone
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a functionDone
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is nullDone
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;Done
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;Done
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of rangeDone
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');Done
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).Done
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();Done
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
Done
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"Done
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');Done
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSAs per the discussion, we will add these functionality into the next phase.Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Hi Khushboo,Please find comments as below,(Tested with Python3)1) Default string value is not quoted properly which causing SQL to break, here default string should be 'my test string' for myCol2.CREATE FOREIGN TABLE "Test123"."test1_Server"("myCol" bigint NOT NULL DEFAULT 213 COLLATE pg_catalog."C","myCol2" character varying(50) NOT NULL DEFAULT my test string COLLATE pg_catalog."C.UTF-8")INHERITS ("Test123".abc, pem.chart)SERVER test_fw_server;
2) When Length & Precision, does not clear when user selects another data type- First select Numeric provide Length & Precision and then choose abstimedata type which have neither Length & Precision- It will not clear/ not allow user to clear old values & generates wrong SQLALTER FOREIGN TABLE "Test123"."test1_TT1"ADD COLUMN col1 abstime(50 , 2) NOT NULL COLLATE pg_catalog."C";
3) I am allowed to select self table as inherited tableALTER FOREIGN TABLE pem."test1_TT1" INHERIT pem."test1_TT1";
4) Wrong SQL generated for array like data typesALTER FOREIGN TABLE pem."test1_TT1"ADD COLUMN name character[](50 ) NOT NULL COLLATE pg_catalog."POSIX";Correct SQL:ALTER FOREIGN TABLE pem."test1_TT1"ADD COLUMN name character(50)[] NOT NULL COLLATE pg_catalog."POSIX";
5) I am allowed to enter duplicate options but as per postgres documentationwe should not allow duplicate optionsALTER FOREIGN TABLE pem."test1_TT1"OPTIONS (ADD op1 'val1');ALTER FOREIGN TABLE pem."test1_TT1"OPTIONS (ADD op1 'val1');ALTER FOREIGN TABLE pem."test1_TT1"OPTIONS (ADD op1 'val2');
6) Created table with Special name (eg: table name => "@Test#" ) & it breaks when we clicks on it.File "/home/murtuza/projects/pgadmin4/web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py", line 414, in propertiesdata = self._fetch_properties(gid, sid, did, scid, foid)File "/home/murtuza/projects/pgadmin4/web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py", line 982, in _fetch_propertiesc['typlen'] = int(typlen)TypeError: int() argument must be a string, a bytes-like object or a number, not 'list'
7) While dropping any foreign table gives this error but table gets deleted from browser tree.s/databases/schemas/foreign_tables/__init__.py", line 414, in propertiesdata = self._fetch_properties(gid, sid, did, scid, foid)File "/home/murtuza/projects/pgadmin4/web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py", line 982, in _fetch_propertiesc['typlen'] = int(typlen)TypeError: int() argument must be a string, a bytes-like object or a number, not 'list'
Can be added into TODO:=====================1) We should not allowed user to Inherits from catalog tables like pg_catalog.pg_type;2) Minor SQL alignment when only server & table name was givenCREATE FOREIGN TABLE "Test123"."test1_Server"()SERVER test_fw_server;Expected:---------CREATE FOREIGN TABLE "Test123"."test1_Server" ()SERVER test_fw_server;3) Collation client side validation missing for columns, not every data type support Collations,For other data types it should be disable just like Length & Precision.Regards,MurtuzaOn 09-May-2016, at 10:43 am, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,No I did not. let me apply it and try again.Thanks,MurtuzaOn 06-May-2016, at 10:15 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi Murtuza,
Have you applied Dependent Cell patch on this? As the Foreign table is dependent on that.
Thanks,
KhushbooOn 6 May 2016 20:39, "Murtuza Zabuawala" <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,Please find comments as below,I pulled latest version of code and then I applied v2 patch.1) Once applying patch, When I re-started pgAdmin4 server again, I got below error (Screenshot is also attached),( FYI, I was not able to re-produce it again second time. )File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/__init__.py", line 37, in create_module_preference
self.preference = Preferences(self.name, None)
File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/preferences.py", line 261, in __init__
db.session.commit()
…..…..cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (OperationalError) database is locked 'INSERT INTO module_preference (name) VALUES (?)' ('NODE-foreign-table’,)2) I am not able to create/open Foreign table node as I am getting errors from JS side (when I expand the schema node & do not get Create context menu as well)Please find screenshots for both scenario.<Screenshot from 2016-05-06 08-00-19.png><Screenshot from 2016-05-06 07-59-45.png><Screen Shot 2016-05-06 at 8.18.12 pm.png>On 06-May-2016, at 3:55 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,<pgAdmin4_Foreign_tables_ver2.patch>Please find the attached patch for the Foreign Table Node with fixed issues.Thanks,KhushbooOn Fri, Apr 29, 2016 at 12:20 PM, Neel Patel <neel.patel@enterprisedb.com> wrote:Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULLI think if its NOT NULL, then it should be NULL and it is default, so this should be okay.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
Done
- When we create any foreign table then same foreign table is also listed under "Tables" node.
This bug is related to Table node and Harshal is working on this issue.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;Done
- When we create the new foreign table with security label then no SQL is generated for security label.
Done
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;Done
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefinedDone
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a functionDone
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is nullDone
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;Done
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;Done
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of rangeDone
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');Done
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).Done
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();Done
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
Done
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"Done
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');Done
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSAs per the discussion, we will add these functionality into the next phase.Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachment
On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Thanks,KhushbooOn Mon, May 9, 2016 at 1:46 PM, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,Please find comments as below,(Tested with Python3)1) Default string value is not quoted properly which causing SQL to break, here default string should be 'my test string' for myCol2.CREATE FOREIGN TABLE "Test123"."test1_Server"("myCol" bigint NOT NULL DEFAULT 213 COLLATE pg_catalog."C","myCol2" character varying(50) NOT NULL DEFAULT my test string COLLATE pg_catalog."C.UTF-8")INHERITS ("Test123".abc, pem.chart)SERVER test_fw_server;I think this behavior is perfect as we can't add single quotes for all the data-types. User should have to add himself if required.
--
Thanks & Regards,
Ashesh Vashi
EnterpriseDB INDIA: Enterprise PostgreSQL Company
2) When Length & Precision, does not clear when user selects another data type- First select Numeric provide Length & Precision and then choose abstimedata type which have neither Length & Precision- It will not clear/ not allow user to clear old values & generates wrong SQLALTER FOREIGN TABLE "Test123"."test1_TT1"ADD COLUMN col1 abstime(50 , 2) NOT NULL COLLATE pg_catalog."C";Done3) I am allowed to select self table as inherited tableALTER FOREIGN TABLE pem."test1_TT1" INHERIT pem."test1_TT1";Done4) Wrong SQL generated for array like data typesALTER FOREIGN TABLE pem."test1_TT1"ADD COLUMN name character[](50 ) NOT NULL COLLATE pg_catalog."POSIX";Correct SQL:ALTER FOREIGN TABLE pem."test1_TT1"ADD COLUMN name character(50)[] NOT NULL COLLATE pg_catalog."POSIX";Done5) I am allowed to enter duplicate options but as per postgres documentationwe should not allow duplicate optionsALTER FOREIGN TABLE pem."test1_TT1"OPTIONS (ADD op1 'val1');ALTER FOREIGN TABLE pem."test1_TT1"OPTIONS (ADD op1 'val1');ALTER FOREIGN TABLE pem."test1_TT1"OPTIONS (ADD op1 'val2');Done6) Created table with Special name (eg: table name => "@Test#" ) & it breaks when we clicks on it.File "/home/murtuza/projects/pgadmin4/web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py", line 414, in propertiesdata = self._fetch_properties(gid, sid, did, scid, foid)File "/home/murtuza/projects/pgadmin4/web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py", line 982, in _fetch_propertiesc['typlen'] = int(typlen)TypeError: int() argument must be a string, a bytes-like object or a number, not 'list'Couldn't reproduce but I think while fixing above issues it is resolved.7) While dropping any foreign table gives this error but table gets deleted from browser tree.s/databases/schemas/foreign_tables/__init__.py", line 414, in propertiesdata = self._fetch_properties(gid, sid, did, scid, foid)File "/home/murtuza/projects/pgadmin4/web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py", line 982, in _fetch_propertiesc['typlen'] = int(typlen)TypeError: int() argument must be a string, a bytes-like object or a number, not 'list'Couldn't reproduce but I think while fixing above issues it is resolved.Can be added into TODO:=====================1) We should not allowed user to Inherits from catalog tables like pg_catalog.pg_type;2) Minor SQL alignment when only server & table name was givenCREATE FOREIGN TABLE "Test123"."test1_Server"()SERVER test_fw_server;Expected:---------CREATE FOREIGN TABLE "Test123"."test1_Server" ()SERVER test_fw_server;3) Collation client side validation missing for columns, not every data type support Collations,For other data types it should be disable just like Length & Precision.Regards,MurtuzaOn 09-May-2016, at 10:43 am, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,No I did not. let me apply it and try again.Thanks,MurtuzaOn 06-May-2016, at 10:15 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi Murtuza,
Have you applied Dependent Cell patch on this? As the Foreign table is dependent on that.
Thanks,
KhushbooOn 6 May 2016 20:39, "Murtuza Zabuawala" <murtuza.zabuawala@enterprisedb.com> wrote:Hi Khushboo,Please find comments as below,I pulled latest version of code and then I applied v2 patch.1) Once applying patch, When I re-started pgAdmin4 server again, I got below error (Screenshot is also attached),( FYI, I was not able to re-produce it again second time. )File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/__init__.py", line 37, in create_module_preference
self.preference = Preferences(self.name, None)
File "/Users/murtuza/Desktop/pgadmin4/web/pgadmin/utils/preferences.py", line 261, in __init__
db.session.commit()
…..…..cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (OperationalError) database is locked 'INSERT INTO module_preference (name) VALUES (?)' ('NODE-foreign-table’,)2) I am not able to create/open Foreign table node as I am getting errors from JS side (when I expand the schema node & do not get Create context menu as well)Please find screenshots for both scenario.<Screenshot from 2016-05-06 08-00-19.png><Screenshot from 2016-05-06 07-59-45.png><Screen Shot 2016-05-06 at 8.18.12 pm.png>On 06-May-2016, at 3:55 pm, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,<pgAdmin4_Foreign_tables_ver2.patch>Please find the attached patch for the Foreign Table Node with fixed issues.Thanks,KhushbooOn Fri, Apr 29, 2016 at 12:20 PM, Neel Patel <neel.patel@enterprisedb.com> wrote:Hi Khushboo,Below are the observations.
- When we create the new Foreign Table with column name and types then it shows NULL along with column name and type in properties tab.
e.g. column_1 xml[] NULLI think if its NOT NULL, then it should be NULL and it is default, so this should be okay.
- Once we inherits the table from another table then column and another parameters of inherited table should not allowed to change.
Done
- When we create any foreign table then same foreign table is also listed under "Tables" node.
This bug is related to Table node and Harshal is working on this issue.
- SQL is not generated properly. Please find below SQL which gives error during execution.
CREATE FOREIGN TABLE public.test_2(id1 integer NOT NULL DEFAULT12 COLLATEpg_catalog."POSIX")SERVER fsrv;Done
- When we create the new foreign table with security label then no SQL is generated for security label.
Done
- In Edit mode, when we provide security label with both value "provider" and "security label" then security label is displayed NULL
e.g. SECURITY LABEL FOR frgn_table ON FOREIGN TABLE public.fsrv_table IS NULL;Done
- During creation of the column, when we remove the collation then it gives below error.
TypeError: item is undefinedDone
- Delete/Drop cascade functionality is not working, we are getting below error.
TypeError: self.canDrop.apply is not a functionDone
- When we edit the foreign table and try to remove the existing "Data Type" of column then it gives below error.
TypeError: this.dataAdapter is nullDone
- Create the new foreign table and click on ADD button in Column tab and do not provide any column name and data type. Need to do proper validation in Column tab for all parameters. Currently if user do not provide any value then wrong SQL is getting generated.
CREATE FOREIGN TABLE public.test_4(None None NULL)SERVER test_fsrv;Done
- When we do not provide the Check parameters in constraint then it gives SQL syntax error.
CREATE FOREIGN TABLE public.test_5()SERVER test_fsrv;ALTER FOREIGN TABLE public.test_5ADD CONSTRAINT test CHECK () NOT VALID;Done
- If we edit foreign table and change the schema then it gives below error.
IndexError: list index out of rangeDone
- We should have proper indentation in the SQL tab once we give the parameters. Currently it looks like below for "Options" value.
CREATE FOREIGN TABLE "1_test"."5_test"()SERVER asasOPTIONS (test1 'test2', test3 'test4');Done
- If user provide foreign table name and do not provide foreign server and click on SQL tab then we are getting error on browser side as below. We should have proper error handling in this case.
Couldn't find the required parameter (ftsrvname).Done
- Create the foreign table, add the constraint and do not provide any constraint information then SQL generated is wrong.
CREATE FOREIGN TABLE "1_test"."9_test"()SERVER test_fsrv;ALTER FOREIGN TABLE "1_test"."9_test"ADD CONSTRAINT None CHECK ();Done
- When we click on the foreign table collection node then "Comment" column is blank even though we have comment in the foreign table.
Done
- Create the foreign table on PG 9.1 and after pressing Save button we are getting below error.
"the JSON object must be str, not 'list'"Done
- When we delete the options parameters then it gives SQL error because DROP statement does not include the value.
ALTER FOREIGN TABLE public.test_12OPTIONS ( DROP ser2 'val2');Done
- There are some new functionality added in PG 9.5. Do we really need to implement ? Need to discuss with Dave/Ashesh. Below are the new functionality.
- In create foreign table,we have added column constraint but "table constraint" is added from 9.5.Do we really require to add table constraint ?- In alter foreign table, below are the new functionality added.1. ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }2. DISABLE TRIGGER [ trigger_name | ALL | USER ]3. ENABLE TRIGGER [ trigger_name | ALL | USER ]4. ENABLE REPLICA TRIGGER trigger_name5. ENABLE ALWAYS TRIGGER trigger_name6. SET WITH OIDS7. SET WITHOUT OIDSAs per the discussion, we will add these functionality into the next phase.Do let us know in case of any queries.Thanks,Neel PatelOn Tue, Apr 5, 2016 at 2:27 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find updated patch for the Foreign Table Module.This patch is dependent on1. Backgrid Depscell Patch, (submitted by me)2. NodeAjaxOptionsCell Transform change patch, on which Ashesh and Murtuza are workingThanks,KhushbooOn Wed, Feb 24, 2016 at 2:57 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,I have updated the Foreign Table module as below:- Used 'NodeByListControl' to get schemas, in the foreign_table.js file as suggested by Ashesh to avoid code redundancy.- Applied 'Security Label Macro' Patch (Implemented by Harshal).
To test the Foreign Table patch, 'Security Label Macro' patch must be applied first as that is not committed yet.Please find attached Foreign Table Patch.Thanks,KhushbooOn Tue, Feb 23, 2016 at 6:53 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,
Please find attached patch for the Foreign Table Module.
The patch will be modified after Types module implementation as we need to populate Base Type and some Type related validations from the Types module.
Please review it and let me know the feedback.
Thanks,
Khushboo
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
On Mon, May 9, 2016 at 1:23 PM, Ashesh Vashi <ashesh.vashi@enterprisedb.com> wrote:On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Feedback from my initial testing:- Owner is missing from the New dialogue.
- The Properties list shows "Select from the list" in a combo box for Owner andInherits.
- s/Oid/OID
- s/Foreign Server/Foreign server
- SQL Help filenames are not defined.
- SQL formatting is weird, e.g.CREATE FOREIGN TABLE public.redis_table(id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');instead of:CREATE FOREIGN TABLE public.redis_table (id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');
- In the validation error messages, please replace ! with . and "can not" with"cannot" for consistency with recently reviewed strings.
- s/mulitple/multiple (in the js).
- How do I manage the ACL?
Thanks.--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Attachment
Hi,Please find the attached updated patch for the Foreign Table module.Thanks,KhushbooOn Tue, May 10, 2016 at 4:33 PM, Dave Page <dpage@pgadmin.org> wrote:On Mon, May 9, 2016 at 1:23 PM, Ashesh Vashi <ashesh.vashi@enterprisedb.com> wrote:On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Feedback from my initial testing:- Owner is missing from the New dialogue.Done- The Properties list shows "Select from the list" in a combo box for Owner andInherits.This is a generalize issue, I will create a new Kanban card for the same.- s/Oid/OIDDone- s/Foreign Server/Foreign serverDone- SQL Help filenames are not defined.Done- SQL formatting is weird, e.g.CREATE FOREIGN TABLE public.redis_table(id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');instead of:CREATE FOREIGN TABLE public.redis_table (id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');Done- In the validation error messages, please replace ! with . and "can not" with"cannot" for consistency with recently reviewed strings.Done- s/mulitple/multiple (in the js).Done- How do I manage the ACL?Done. I missed this as I was following pgAdmin-3 as usual.Thanks.--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
1) If we delete one inherited table and add another oneIt generated drop columns sql for that inherited table which throws error,for example "Test123"."TEST" has col1, col2 in it, once we remove tablesee the wrong drop column sql.SQL:----ALTER FOREIGN TABLE pem.asdasDROP COLUMN col1;ALTER FOREIGN TABLE pem.asdasDROP COLUMN col2;ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Expected:---------ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";
2) In EDIT mode, Changing just column name of existing column first drops the entire columnand adds it again, instead of just renaming column name(*** Consider a case when user have data in the table & just want to rename column col1 to col2or any other attribute like default value/not null etc, why do we need to drop entire column in that case? ***)SQL:----ALTER FOREIGN TABLE test.test_ftDROP COLUMN c1;ALTER FOREIGN TABLE test.test_ftADD COLUMN c12 bigint NOT NULL;Expected:---------ALTER FOREIGN TABLE test.test_ftRENAME c1 TO c12;
3) We should not allow user to delete columns inherited fromother table in edit mode from UI
4) We should not allow user to delete constraint inherited fromother table in edit mode from UI
5) Issue from my last email still exists, changing type of columncreates wrong sql if it has Length/Precision.eg: col12 was numeric(12) which I changed to aclitemSee the wrong sqlALTER FOREIGN TABLE pem."test-2"DROP COLUMN col12;ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem(12) NOT NULL COLLATE pg_catalog."default";Expected:---------ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem;
6) EDIT mode, clearing Data Type from column throws Error on consoleTypeError: this.dataAdapter is null
7) EDIT mode, If i have blank column row and clicks on SQL tab throws errorapp_iter = app(environ, start_response)TypeError: 'KeyError' object is not callable
8) User can clear Owner which we should not allow to clear OR we have to generate SQL for that opration
9) I do not have option to provide Statistics attribute for column
--Regards,On Wed, May 11, 2016 at 3:17 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find the attached updated patch for the Foreign Table module.Thanks,KhushbooOn Tue, May 10, 2016 at 4:33 PM, Dave Page <dpage@pgadmin.org> wrote:On Mon, May 9, 2016 at 1:23 PM, Ashesh Vashi <ashesh.vashi@enterprisedb.com> wrote:On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Feedback from my initial testing:- Owner is missing from the New dialogue.Done- The Properties list shows "Select from the list" in a combo box for Owner andInherits.This is a generalize issue, I will create a new Kanban card for the same.- s/Oid/OIDDone- s/Foreign Server/Foreign serverDone- SQL Help filenames are not defined.Done- SQL formatting is weird, e.g.CREATE FOREIGN TABLE public.redis_table(id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');instead of:CREATE FOREIGN TABLE public.redis_table (id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');Done- In the validation error messages, please replace ! with . and "can not" with"cannot" for consistency with recently reviewed strings.Done- s/mulitple/multiple (in the js).Done- How do I manage the ACL?Done. I missed this as I was following pgAdmin-3 as usual.Thanks.--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Attachment
Hi,Please find the attached updated patch for the foreign table module.Thanks,KhushbooOn Fri, May 13, 2016 at 10:50 AM, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:1) If we delete one inherited table and add another oneIt generated drop columns sql for that inherited table which throws error,for example "Test123"."TEST" has col1, col2 in it, once we remove tablesee the wrong drop column sql.SQL:----ALTER FOREIGN TABLE pem.asdasDROP COLUMN col1;ALTER FOREIGN TABLE pem.asdasDROP COLUMN col2;ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Expected:---------ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Done2) In EDIT mode, Changing just column name of existing column first drops the entire columnand adds it again, instead of just renaming column name(*** Consider a case when user have data in the table & just want to rename column col1 to col2or any other attribute like default value/not null etc, why do we need to drop entire column in that case? ***)SQL:----ALTER FOREIGN TABLE test.test_ftDROP COLUMN c1;ALTER FOREIGN TABLE test.test_ftADD COLUMN c12 bigint NOT NULL;Expected:---------ALTER FOREIGN TABLE test.test_ftRENAME c1 TO c12;Done3) We should not allow user to delete columns inherited fromother table in edit mode from UIDone4) We should not allow user to delete constraint inherited fromother table in edit mode from UIDone5) Issue from my last email still exists, changing type of columncreates wrong sql if it has Length/Precision.eg: col12 was numeric(12) which I changed to aclitemSee the wrong sqlALTER FOREIGN TABLE pem."test-2"DROP COLUMN col12;ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem(12) NOT NULL COLLATE pg_catalog."default";Expected:---------ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem;Done6) EDIT mode, clearing Data Type from column throws Error on consoleTypeError: this.dataAdapter is nullCouldn't reproduce.7) EDIT mode, If i have blank column row and clicks on SQL tab throws errorapp_iter = app(environ, start_response)TypeError: 'KeyError' object is not callableDone8) User can clear Owner which we should not allow to clear OR we have to generate SQL for that oprationDone9) I do not have option to provide Statistics attribute for columnDone--Regards,On Wed, May 11, 2016 at 3:17 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find the attached updated patch for the Foreign Table module.Thanks,KhushbooOn Tue, May 10, 2016 at 4:33 PM, Dave Page <dpage@pgadmin.org> wrote:On Mon, May 9, 2016 at 1:23 PM, Ashesh Vashi <ashesh.vashi@enterprisedb.com> wrote:On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Feedback from my initial testing:- Owner is missing from the New dialogue.Done- The Properties list shows "Select from the list" in a combo box for Owner andInherits.This is a generalize issue, I will create a new Kanban card for the same.- s/Oid/OIDDone- s/Foreign Server/Foreign serverDone- SQL Help filenames are not defined.Done- SQL formatting is weird, e.g.CREATE FOREIGN TABLE public.redis_table(id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');instead of:CREATE FOREIGN TABLE public.redis_table (id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');Done- In the validation error messages, please replace ! with . and "can not" with"cannot" for consistency with recently reviewed strings.Done- s/mulitple/multiple (in the js).Done- How do I manage the ACL?Done. I missed this as I was following pgAdmin-3 as usual.Thanks.--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Hi,One last otherwise rest of functionality looks good.- We are not able to drop/delete any constraints, not even empty blank row once added.
Regards,Murtuza--Regards,On Fri, May 13, 2016 at 3:25 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find the attached updated patch for the foreign table module.Thanks,KhushbooOn Fri, May 13, 2016 at 10:50 AM, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:1) If we delete one inherited table and add another oneIt generated drop columns sql for that inherited table which throws error,for example "Test123"."TEST" has col1, col2 in it, once we remove tablesee the wrong drop column sql.SQL:----ALTER FOREIGN TABLE pem.asdasDROP COLUMN col1;ALTER FOREIGN TABLE pem.asdasDROP COLUMN col2;ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Expected:---------ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Done2) In EDIT mode, Changing just column name of existing column first drops the entire columnand adds it again, instead of just renaming column name(*** Consider a case when user have data in the table & just want to rename column col1 to col2or any other attribute like default value/not null etc, why do we need to drop entire column in that case? ***)SQL:----ALTER FOREIGN TABLE test.test_ftDROP COLUMN c1;ALTER FOREIGN TABLE test.test_ftADD COLUMN c12 bigint NOT NULL;Expected:---------ALTER FOREIGN TABLE test.test_ftRENAME c1 TO c12;Done3) We should not allow user to delete columns inherited fromother table in edit mode from UIDone4) We should not allow user to delete constraint inherited fromother table in edit mode from UIDone5) Issue from my last email still exists, changing type of columncreates wrong sql if it has Length/Precision.eg: col12 was numeric(12) which I changed to aclitemSee the wrong sqlALTER FOREIGN TABLE pem."test-2"DROP COLUMN col12;ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem(12) NOT NULL COLLATE pg_catalog."default";Expected:---------ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem;Done6) EDIT mode, clearing Data Type from column throws Error on consoleTypeError: this.dataAdapter is nullCouldn't reproduce.7) EDIT mode, If i have blank column row and clicks on SQL tab throws errorapp_iter = app(environ, start_response)TypeError: 'KeyError' object is not callableDone8) User can clear Owner which we should not allow to clear OR we have to generate SQL for that oprationDone9) I do not have option to provide Statistics attribute for columnDone--Regards,On Wed, May 11, 2016 at 3:17 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find the attached updated patch for the Foreign Table module.Thanks,KhushbooOn Tue, May 10, 2016 at 4:33 PM, Dave Page <dpage@pgadmin.org> wrote:On Mon, May 9, 2016 at 1:23 PM, Ashesh Vashi <ashesh.vashi@enterprisedb.com> wrote:On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Feedback from my initial testing:- Owner is missing from the New dialogue.Done- The Properties list shows "Select from the list" in a combo box for Owner andInherits.This is a generalize issue, I will create a new Kanban card for the same.- s/Oid/OIDDone- s/Foreign Server/Foreign serverDone- SQL Help filenames are not defined.Done- SQL formatting is weird, e.g.CREATE FOREIGN TABLE public.redis_table(id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');instead of:CREATE FOREIGN TABLE public.redis_table (id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');Done- In the validation error messages, please replace ! with . and "can not" with"cannot" for consistency with recently reviewed strings.Done- s/mulitple/multiple (in the js).Done- How do I manage the ACL?Done. I missed this as I was following pgAdmin-3 as usual.Thanks.--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Attachment
Hi,Please find the updated patch for the foreign table.Thanks,KhushbooOn Sat, May 14, 2016 at 10:36 PM, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:Hi,One last otherwise rest of functionality looks good.- We are not able to drop/delete any constraints, not even empty blank row once added.FixedRegards,Murtuza--Regards,On Fri, May 13, 2016 at 3:25 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find the attached updated patch for the foreign table module.Thanks,KhushbooOn Fri, May 13, 2016 at 10:50 AM, Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com> wrote:1) If we delete one inherited table and add another oneIt generated drop columns sql for that inherited table which throws error,for example "Test123"."TEST" has col1, col2 in it, once we remove tablesee the wrong drop column sql.SQL:----ALTER FOREIGN TABLE pem.asdasDROP COLUMN col1;ALTER FOREIGN TABLE pem.asdasDROP COLUMN col2;ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Expected:---------ALTER FOREIGN TABLE pem.asdas INHERIT pemdata.number_of_wal_files;ALTER FOREIGN TABLE pem.asdas NO INHERIT "Test123"."TEST";Done2) In EDIT mode, Changing just column name of existing column first drops the entire columnand adds it again, instead of just renaming column name(*** Consider a case when user have data in the table & just want to rename column col1 to col2or any other attribute like default value/not null etc, why do we need to drop entire column in that case? ***)SQL:----ALTER FOREIGN TABLE test.test_ftDROP COLUMN c1;ALTER FOREIGN TABLE test.test_ftADD COLUMN c12 bigint NOT NULL;Expected:---------ALTER FOREIGN TABLE test.test_ftRENAME c1 TO c12;Done3) We should not allow user to delete columns inherited fromother table in edit mode from UIDone4) We should not allow user to delete constraint inherited fromother table in edit mode from UIDone5) Issue from my last email still exists, changing type of columncreates wrong sql if it has Length/Precision.eg: col12 was numeric(12) which I changed to aclitemSee the wrong sqlALTER FOREIGN TABLE pem."test-2"DROP COLUMN col12;ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem(12) NOT NULL COLLATE pg_catalog."default";Expected:---------ALTER FOREIGN TABLE pem."test-2"ADD COLUMN col12 aclitem;Done6) EDIT mode, clearing Data Type from column throws Error on consoleTypeError: this.dataAdapter is nullCouldn't reproduce.7) EDIT mode, If i have blank column row and clicks on SQL tab throws errorapp_iter = app(environ, start_response)TypeError: 'KeyError' object is not callableDone8) User can clear Owner which we should not allow to clear OR we have to generate SQL for that oprationDone9) I do not have option to provide Statistics attribute for columnDone--Regards,On Wed, May 11, 2016 at 3:17 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:Hi,Please find the attached updated patch for the Foreign Table module.Thanks,KhushbooOn Tue, May 10, 2016 at 4:33 PM, Dave Page <dpage@pgadmin.org> wrote:On Mon, May 9, 2016 at 1:23 PM, Ashesh Vashi <ashesh.vashi@enterprisedb.com> wrote:On Mon, May 9, 2016 at 5:50 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Hi,Please find the attached updated patch for the Foreign Tables module.Feedback from my initial testing:- Owner is missing from the New dialogue.Done- The Properties list shows "Select from the list" in a combo box for Owner andInherits.This is a generalize issue, I will create a new Kanban card for the same.- s/Oid/OIDDone- s/Foreign Server/Foreign serverDone- SQL Help filenames are not defined.Done- SQL formatting is weird, e.g.CREATE FOREIGN TABLE public.redis_table(id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');instead of:CREATE FOREIGN TABLE public.redis_table (id text NOT NULL COLLATE pg_catalog."default",value text NULL COLLATE pg_catalog."default")SERVER redis_server1OPTIONS (database '0');Done- In the validation error messages, please replace ! with . and "can not" with"cannot" for consistency with recently reviewed strings.Done- s/mulitple/multiple (in the js).Done- How do I manage the ACL?Done. I missed this as I was following pgAdmin-3 as usual.Thanks.--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company