mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
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:
committed by
Akshay Joshi
parent
6a406f466d
commit
e3dfe03a2a
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user