# File test/src/sql_test.rb, line 77 def testRelationWithSimpleJoin verify_relation('select * from table1 t1 inner join table2 t2 on t1.a=t2.b where x=1', 'select * from table1 AS t1 inner join table2 AS t2 on t1.a = t2.b where x = 1') end