Hi, I would like to know if there is a way to keep identifiers fully qualified, for example:
sql = parse("SELECT t1.field FROM t1")
rel = sql2rel(sql)
sql2 = rel2sql(rel)
sql2 obtained:
"SELECT field FROM t1"
expected:
"SELECT t1.field FROM t1"
If I'm working on a join query, identifiers are kept.
Thanks,
Guillaume
