Don't complain that indices created by hsqldb are stale

This commit is contained in:
Charlie Groves
2011-01-05 20:24:29 +00:00
parent 1b21df9994
commit 63816b421c
@@ -233,8 +233,8 @@ public class HSQLBuilder
@Override
public boolean isPrivateIndex (String index, Map<String, FullTextIndex> fullTextIndexes)
{
// The HSQLDB builder does not yet have any private indexes;
return false;
// HSQLDB system indices start with SYS_IDX
return index.startsWith("SYS_IDX");
}
@Override