dbName = dbName.toLowerCase();
tableName = tableName.toLowerCase();
MTable mtable = getMTable(dbName, tableName);
if( mtable == null ) {
throw new NoSuchObjectException("Specified database/table does not exist : "
+ dbName + "." + tableName);
}
Map<String, String> params = new HashMap<String, String>();
String queryFilterString =
makeQueryFilterString(mtable, filter, params);