Fixed an issue where the user is not able to insert the data if the table and columns name contains special characters. Fixes #4387

This commit is contained in:
Yogesh Mahajan
2020-08-06 12:30:10 +05:30
committed by Akshay Joshi
parent 6a406f466d
commit e3dfe03a2a
5 changed files with 11 additions and 3 deletions

View File

@@ -54,6 +54,7 @@ class TestViewDataTemplates(BaseTestGenerator):
select_template_path='sqleditor/sql/default/select.sql',
select_parameters=dict(
object_name='test_table',
pgadmin_alias=pgadmin_alias,
nsp_name='test_schema',
primary_keys=OrderedDict([('id', 'int4')]),
has_oids=False
@@ -87,6 +88,7 @@ class TestViewDataTemplates(BaseTestGenerator):
select_parameters=dict(
object_name='test_table',
nsp_name='test_schema',
pgadmin_alias=pgadmin_alias,
primary_keys=OrderedDict([('id', 'int4'),
('text', 'text')]),
has_oids=False