public void testCreateSqlStatementWithQuotesInValue() throws Exception {
JdbcDataContext dataContext = new JdbcDataContext(getTestDbConnection());
Table table = dataContext.getTableByQualifiedLabel("PUBLIC.EMPLOYEES");
JdbcUpdateCallback updateCallback = new JdbcSimpleUpdateCallback(dataContext);
JdbcUpdateBuilder updateBuilder = new JdbcUpdateBuilder(updateCallback, table, new DefaultQueryRewriter(
dataContext), true);
assertEquals("[EMPLOYEENUMBER, LASTNAME, FIRSTNAME, EXTENSION, EMAIL, OFFICECODE, REPORTSTO, JOBTITLE]",
Arrays.toString(table.getColumnNames()));