Open
Description
My configuration is MantisBT 1.2.12 with SQL Server 2008
An error occurs when opening repositories management page :
operand text is not valid for count operator
the query is
SELECT COUNT(DISTINCT filename) FROM mantis_plugin_Source_file_table AS f
JOIN mantis_plugin_Source_changeset_table AS c
ON c.id=f.change_id
WHERE c.repo_id=?
My workaround is to use VARCHAR column type instead of TEXT
ALTER TABLE mantis_plugin_Source_file_table
ALTER COLUMN filename VARCHAR(250) NOT NULL
Maybe VARCHAR(MAX) would be better ?
Metadata
Metadata
Assignees
Labels
No labels