Loading the Smartling Submissions view on a database other than MySQL, e.g. PostgreSQL, results in the following error:

ERROR: operator does not exist: character varying = bigint

This is because the "submitter" column, a varchar(255), is being compared to the users.uid column, an integer. The solution is to change this to an integer.

CommentFileSizeAuthor
#2 smartling-n2893690-2.patch1.02 KBdamienmckenna

Comments

DamienMcKenna created an issue. See original summary.

damienmckenna’s picture

Status: Active » Needs review
StatusFileSize
new1.02 KB

This change the column to an integer.