G-2310: Avoid using CHAR data type.
Major
Reliability
Reason
char is a fixed length data type, which should only be used when appropriate. char columns/variables are always filled to its specified lengths; this may lead to unwanted side effects and undesired results.
Example (bad)
1 2 3 4 5 | |
Example (good)
1 2 3 4 5 | |