nope its still alpha I just think the new storage engine got called beta in the api or whatever 🤷
nope its still alpha I just think the new storage engine got called beta in the api or whatever 

500mb per database * 10 databases does add up to 5gb admittedlyThis one ^



wrangler 3.9.0 is the latest as well.INSERT INTO ... SELECT with a bunch of JOINsDELETE FROM offers WHERE price=5 LIMIT 1near "LIMIT": syntax error
UPDATE users SET balance = balance + 10 WHERE id = 'test' LIMIT 1near "LIMIT": syntax error
wrangler 3.9.0INSERT INTO ... SELECTJOINBEGIN;
-- Check if a record with the specified car_id and owner_id exists in the cars table
DECLARE @car_matches INTEGER;
SET @car_matches = (SELECT COUNT(*) FROM cars WHERE car_id = 'car1' AND owner_id = 'bob');
-- Only insert into the tickets table if we find a match for that car and owner
IF @car_matches > 0 THEN
-- Insert data into the tickets table
INSERT INTO tickets (ticket_description, owner_id, car_id)
VALUES ('Speeding', 'bob', 'car1');
ELSE
-- The car does not exist, or the owner has changed
ROLLBACK;
END IF;
COMMIT;