Hello,
I have a table in Hana with type CLOB. When I do a select query from python to fetch data from the table, only part of the string stored in the column is getting fetched. if I debug I can see this:
<Clob length: 27499 (currently loaded from hana: 1024)>
How to load full length Clob?
I changed catalog settings in Hana workbench as shown below:

My python code is:
cursor = connection.cursor()
cursor.execute('select * from IMAGE_TOOL.digitalist_images')
rows=cursor.fetchall()