At this point of development LDBI and SQLi have the following bugs:

- in WHERE clauses if a key is given twice and we use AND as logical operator,
  only the last key matches:

  	SELECT * FROM testtable WHERE id >= 11 AND id <= 20
  	will return all records matching id <= 20

- because of some bug in the indices generation, not all the wildcard searches
  match
- sequences always start from START + INCREMENT
