From 9d882a3a7f2765c500eb7d821c2ac8eb46b41d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Wed, 5 Apr 2023 14:08:43 +0200 Subject: [PATCH] Checked in IDE and the calls are minimal. Removing print. --- .../Database/0.0.0-dev/src/Internal/JDBC_Connection.enso | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/distribution/lib/Standard/Database/0.0.0-dev/src/Internal/JDBC_Connection.enso b/distribution/lib/Standard/Database/0.0.0-dev/src/Internal/JDBC_Connection.enso index c3525763b4111..ed8226546ca39 100644 --- a/distribution/lib/Standard/Database/0.0.0-dev/src/Internal/JDBC_Connection.enso +++ b/distribution/lib/Standard/Database/0.0.0-dev/src/Internal/JDBC_Connection.enso @@ -103,10 +103,7 @@ type JDBC_Connection sql_type = SQL_Type.from_metadata metadata ix+1 [name, sql_type] - # FIXME [RW] remove the print statement but first try running IDE with it - res = Vector.new metadata.getColumnCount resolve_column - #IO.println "Fetched columns for "+statement.to_text+": "+res.to_text - res + Vector.new metadata.getColumnCount resolve_column ## PRIVATE Checks that the query has no holes, and if it does, throws an error.