Ticket #3656 (closed defect: fixed)
Default reports in db_default.py have invalid operators for MySQL for concat operations
| Reported by: | jnanney@… | Owned by: | mgood |
|---|---|---|---|
| Priority: | low | Milestone: | 0.10.1 |
| Component: | report system | Version: | devel |
| Severity: | minor | Keywords: | mysql |
| Cc: |
Description
While not critical to 0.10 release, there are several reports in
db_default.py that use the operator
In MySQL 4.1.12 this operator is not supported. You have to use this.
concat(owner, '*')
instead of
owner||' *'


