I have a table in redshift with following columns in create statement
ExpiryDate Timestamp without time zone NULL Encode zstd,
IssueDate Timestamp without time zone NULL Encode zstd,
RewardNumber varchar(64) NULL Encode zstd,
VoucherIdentifier varchar(64) NULL Encode zstd
Once I insert data into my table I can see NULL value for "ExpiryDate" and "IssueDate" but I have no clue why I am not able to see any NULL value for "RewardNumber" and "VoucherIdentifier". It simply shows blank for the two columns. I am using DBvisualizer to connect to redshift.
Am I doing something wrong when I am creating my tables