I have a simple Postgres table audit
with the following columns
audit
date varchar
record text
The table was autogenerated by Spring Data on the application startup (I did not prepare DDL).
Now when I'm creating dataclip
select * from audit
it's returning me for example:
2021-11-24 22836979
2021-11-23 22785154
2021-11-25 22845754
2021-11-26 22858755
2021-11-27 22864701
however there are some text values in record
column (my Spring Boot application is able to parse it and display on front end of my application)
Why is this happening? Is it specific to Heroku Dataclips tool?