assertEquals("\"sch\"\"ema\".\"ta\"\"ble\".\"col\"\"umn\"",
db.quoteAttribute(new Attribute("sch\"ema", "ta\"ble", "col\"umn")));
}
public void testAttributeQuotingMySQL() {
Vendor db = Vendor.MySQL;
assertEquals("`table`.`column`",
db.quoteAttribute(new Attribute(null, "table", "column")));
}