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

39 lines
711 B
SQL

-- CS 457/657 PA4
-- This script includes the commands to be executed by two processes (or terminals), P1 and P2
-- On P2:
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