Skip to content

Commit

Permalink
increase default string length
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Jul 20, 2022
1 parent 98c18af commit d307e2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/sqlutilpy/sqlutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def __getDType(row, typeCodes, strLength):
pgTypeHash = {
16: bool,
18: str,
19: str, # name type used in information schema
19: str, # name type used in information schema
20: 'i8',
21: 'i2',
23: 'i4',
Expand Down Expand Up @@ -267,7 +267,7 @@ def get(query,
preamb=None,
conn=None,
port=None,
strLength=10,
strLength=20,
timeout=None,
notNamed=False,
asDict=False,
Expand Down

0 comments on commit d307e2f

Please sign in to comment.