G-2320: Never use VARCHAR data type.
Blocker
Portability, Reliability
Reason
Do not use the varchar data type. Use the varchar2 data type instead. Although the varchar data type is currently synonymous with varchar2, the varchar data type is scheduled to be redefined as a separate data type used for variable-length character strings compared with different comparison semantics.
Example (bad)
1 2 3 4 | |
Example (good)
1 2 3 4 | |