From 5528c2a83b902d8980ef641bf34cc04b3c91351f Mon Sep 17 00:00:00 2001 From: Timo Ley Date: Sat, 3 Jun 2023 09:57:34 +0000 Subject: [PATCH] feat: remove output from getLastBookings function --- SQL/PLSQL.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/SQL/PLSQL.sql b/SQL/PLSQL.sql index 092917b..712d1c2 100644 --- a/SQL/PLSQL.sql +++ b/SQL/PLSQL.sql @@ -39,7 +39,6 @@ BEGIN LOOP ids.extend; ids(ids.count) := booking.BOOKINGID; - DBMS_OUTPUT.PUT_LINE(booking.BOOKINGID); END LOOP; return ids; END;