Skip to content

Commit 016bccc

Browse files
committed
replace 1 with true
1 parent bb1f885 commit 016bccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/jdbc/SessionlessTransactions/src/test/resources/createSchema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ CREATE OR REPLACE PROCEDURE fetch_seats(
6060
) AS
6161
CURSOR c IS
6262
SELECT id FROM seats
63-
WHERE available = 1 AND flight_id = f_id
63+
WHERE available = true AND flight_id = f_id
6464
FOR UPDATE SKIP LOCKED;
6565
BEGIN
6666
OPEN c;

0 commit comments

Comments
 (0)