From b483e3c7491cb65827710c59ce5e2702abdfbfdf Mon Sep 17 00:00:00 2001 From: Martin Vahlensieck Date: Tue, 30 Apr 2024 08:58:16 +0200 Subject: [PATCH] Remove outdated comment --- .../org/polypheny/db/crossmodel/RelationalOnDocumentTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/dbms/src/test/java/org/polypheny/db/crossmodel/RelationalOnDocumentTest.java b/dbms/src/test/java/org/polypheny/db/crossmodel/RelationalOnDocumentTest.java index 4fb020b35d..4f450a071b 100644 --- a/dbms/src/test/java/org/polypheny/db/crossmodel/RelationalOnDocumentTest.java +++ b/dbms/src/test/java/org/polypheny/db/crossmodel/RelationalOnDocumentTest.java @@ -57,7 +57,6 @@ public static void tearDown() { public void simpleSelectTest() { executeStatements( ( s, c ) -> { ResultSet result = s.executeQuery( String.format( "SELECT * FROM %s.%s", DATABASE_NAME, COLLECTION_NAME ) ); - // todo gartens || hafner there seems to be an error with the deserialization of the protovalue of type document List doc = TestHelper.convertResultSetToList( result ); // contents of documents are non-deterministic, and we cannot compare them as usual through TestHelper.checkResultSet PolyDocument document = (PolyDocument) doc.get( 0 )[0];