Files
CS-Classes/CS457/hw4/PA4_test PA1pt2.sql
2025-06-17 14:42:22 -07:00

40 lines
748 B
SQL

-- CS 457/657 PA4
-- This script includes the commands to be executed by two processes (or terminals), P1 and P2
-- On P1:
commit; --persist the change to disk
select * from Flights;
---------------------
-- Expected output --
---------------------
-- On P1:
-- Database CS457_PA4 created.
-- Using database CS457_PA4.
-- Table Flights created.
-- 1 new record inserted.
-- 1 new record inserted.
-- Transaction starts.
-- 1 record modified.
-- Transaction committed.
-- seat int|status int
-- 22|1
-- 23|1
-- On P2:
-- Using database CS457_PA4.
-- seat int|status int
-- 22|0
-- 23|1
-- Transaction starts.
-- Error: Table Flights is locked!
-- Transaction abort.
-- seat int|status int
-- 22|0
-- 23|1
-- seat int|status int
-- 22|1
-- 23|1