SC grid app SQL is:
SELECT log_text, log_text AS log_text2 FROM view_log
‘log_text’ is a MEDIUMTEXT field in a mariadb database
Given the above, SC will automatically create two fields in the app:
log_text SQL Type MEDIUMTEXT
log_text2 SQL Type BLOB
Why does SC create log_text2 as a BLOB?
This is wrong and quick search will not work on that field.
It seems that TEXT fields with AS in the SELECT. i.e.
fieldname AS new_fieldname
will make SC wrongly treat them as a BLOB fields