changed tx.errors column type from text to text[]

This commit is contained in:
GroovieGermanikus 2023-10-26 15:38:27 +02:00
parent 3c11b3a142
commit 37db5f522b
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ def run_query():
print("...")
for row in maprows:
row['errors_array'] = row['errors'].rstrip().split(';')
# note: type changed from 'text' to 'text[]'
row['errors_array'] = row['errors']
return maprows