// For now it's never executed so we set those booleans to false.
OutputStream dbStream = null;
boolean createTablesAtDeploy = false;
boolean dropTablesAtDeploy = false;
if ((conn != null) && (createTablesAtDeploy || dropTablesAtDeploy)) {
dbStream = new DatabaseOutputStream(conn);
}
// XXX This is the end of the code that might be used in the future.
DDLGenerator.generateDDL(schema, dbVendorName, createDDLSql,
dropDDLSql, dropDDLTxt, createDDLTxt, dbStream, dropTablesAtDeploy);