It just says that you are using lc_collate for this column by default.
But what is the default match? Use SHOW to discover this.
SHOW lc_collate;
PostgreSQL allows you to create columns with different types of sorting:
CREATE TABLE collate_test ( default_collate text,
Have you seen the difference?
More info on matching on docs :
The sort function allows you to specify the sort order and classification of characters (...)
source share