mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-27 17:31:44 -06:00
Fix auto-complete. Fixes #3374
This commit is contained in:
parent
d1ecba56b8
commit
88a2309a26
@ -35,5 +35,6 @@ Bug fixes
|
||||
| `Bug #3333 <https://redmine.postgresql.org/issues/3333>`_ - Ensure the runtime core application is setup before trying to access any settings
|
||||
| `Bug #3342 <https://redmine.postgresql.org/issues/3342>`_ - Set SESSION_COOKIE_SAMESITE='Lax' per Flask recommendation to prevents sending cookies with CSRF-prone requests from external sites, such as submitting a form
|
||||
| `Bug #3353 <https://redmine.postgresql.org/issues/3353>`_ - Handle errors properly if they occur when renaming a database
|
||||
| `Bug #3374 <https://redmine.postgresql.org/issues/3374>`_ - Fix autocomplete
|
||||
| `Bug #3392 <https://redmine.postgresql.org/issues/3392>`_ - Fix IPv6 support in the container build.
|
||||
| `Bug #3409 <https://redmine.postgresql.org/issues/3409>`_ - Avoid an exception on GreenPlum when retrieving RE-SQL on a table.
|
||||
| `Bug #3409 <https://redmine.postgresql.org/issues/3409>`_ - Avoid an exception on GreenPlum when retrieving RE-SQL on a table
|
@ -73,7 +73,7 @@ TableReference = namedtuple(
|
||||
# This code is borrowed from sqlparse example script.
|
||||
# <url>
|
||||
def is_subselect(parsed):
|
||||
if not parsed.is_group():
|
||||
if not parsed.is_group:
|
||||
return False
|
||||
sql_type = ('SELECT', 'INSERT', 'UPDATE', 'CREATE', 'DELETE')
|
||||
for item in parsed.tokens:
|
||||
|
Loading…
Reference in New Issue
Block a user