* @param instrNameDBName hasmap with the gdbms names a s the keys and the
* database name as the values.
*/
private void translateFromTables(Adapter adapter, HashMap<String, String> instrNameDBName) {
if (adapter instanceof TableRefAdapter) {
TableRefAdapter tra = (TableRefAdapter) adapter;
SimpleNode s = tra.getEntity();
if (s.first_token == s.last_token) {
String alias = "gdbms" + System.currentTimeMillis();
String name = s.first_token.image;
s.first_token.image = gdbmsNameViewName.get(name) + " " + alias;