mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Resolved a typo in the psycopg2 driver, qtTypeIdent checking the wrong
list, because - in specific type match comma (,) was missing.
This commit is contained in:
parent
8f18ff04ae
commit
0a21beca17
@ -843,16 +843,16 @@ class Driver(BaseDriver):
|
|||||||
valNoArray = value[:-2]
|
valNoArray = value[:-2]
|
||||||
|
|
||||||
if forTypes and valNoArray.lower() in [
|
if forTypes and valNoArray.lower() in [
|
||||||
u"bit varying"
|
u'bit varying',
|
||||||
u"\"char\"",
|
u'"char"',
|
||||||
u"character varying",
|
u'character varying',
|
||||||
u"double precision"
|
u'double precision',
|
||||||
u"timestamp without time zone"
|
u'timestamp without time zone',
|
||||||
u"timestamp with time zone"
|
u'timestamp with time zone',
|
||||||
u"time without time zone"
|
u'time without time zone',
|
||||||
u"time with time zone"
|
u'time with time zone',
|
||||||
u"\"trigger\""
|
u'"trigger"',
|
||||||
u"\"unknown\""
|
u'"unknown"'
|
||||||
]:
|
]:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user