I just brought it up because we enforce that the data must match the schema.
If the data is coming back as VARCHAR but the schema is defined as CHAR, that can sometimes cause issues because of the difference in the data layouts.
Thus, if you specify CHAR in the schema, then your SELECT statement muct provide the data as a CHAR and not VARCHAR.
I just brought it up because we enforce that the data must match the schema.
If the data is coming back as VARCHAR but the schema is defined as CHAR, that can sometimes cause issues because of the difference in the data layouts.
Thus, if you specify CHAR in the schema, then your SELECT statement muct provide the data as a CHAR and not VARCHAR.