| Ticket Hash: | fc428d2107d6b810fff67892896137c66abd3484 | ||
| Title: | fossil extras generates SQL error after c193d2c2e0 | ||
| Status: | Fixed | Type: | Code_Defect |
| Severity: | Important | Priority: | |
| Subsystem: | Resolution: | Fixed | |
| Last Modified: |
2010-05-12 14:09:08 15.89 years ago |
Created: |
2010-05-12 11:56:26 15.89 years ago |
| Version Found In: | trunk | ||
| Description: | ||||
|
Running `fossil extras` on seemingly any repository generates this error:
fossil: SQLITE_ERROR: near ",": syntax error
fossil: near ",": syntax error
SELECT x FROM sfile WHERE x NOT GLOB ('manifest','manifest.uuid','_FOSSIL_','_FOSSIL_-journal','.fos','.fos-journal'); AND NOT 0 ORDER BY 1
Reverting the GLOB function back to IN as it was before seems to fix the issue: - " WHERE x NOT GLOB ('manifest','manifest.uuid','_FOSSIL_'," + " WHERE x NOT IN ('manifest','manifest.uuid','_FOSSIL_'," rwilson added on 2010-05-12 14:09:08: | ||||