public void xtestPutDocumentBig() throws XQueryException, DbException, FileNotFoundException {
DbCollection xmark = DbCollection.getRootCollection().createCollection(COL_NAME);
assert (xmark.getDirectory().exists());
File file = new File(TEST_FILE);
IDocumentTable doc = new BigDocumentTable();
final DocumentTableModel dtm = new DocumentTableModel(doc);
dtm.loadDocument(new FileInputStream(file));
xmark.putDocument(new Transaction(), file.getName(), doc);
}