I have a table in H2 database.
In this table there are 2 columns like below:
CREATE TABLE mytable (id bigserial NOT NULL,lffo_file text);
id | value
--------------
I execute this query :
INSERT INTO mytable (value , id) VALUES ( '/resource/public/1555687199892.js','1555684557909')
After that when I execute this query:
select * from my table
It shows me :
id | value
-----------------------------------------
1555684557909 | clob4: '/resource/public/1555687199892.js'
Why does H2 append this prefix << clob4: >> ?
(I just know ,clob is data type for huge varchar)