This commit is contained in:
lukaseder 2015-09-16 20:08:54 +02:00
parent d2db1503d7
commit 3277df1fca

View File

@ -1102,10 +1102,10 @@ class ResultImpl<R extends Record> implements Result<R>, AttachableInternal {
Schema schema = table.getSchema();
if (schema != null) {
attrs.addAttribute("", "", "schema", "CDATA", field.getName());
attrs.addAttribute("", "", "schema", "CDATA", schema.getName());
}
attrs.addAttribute("", "", "table", "CDATA", field.getName());
attrs.addAttribute("", "", "table", "CDATA", table.getName());
}
}