forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.sql
58 lines (48 loc) · 1.97 KB
/
init.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
CREATE TABLE IF NOT EXISTS "clientes" (
"id" serial PRIMARY KEY NOT NULL,
"nome" text NOT NULL,
"saldo" integer DEFAULT 0 NOT NULL,
"limite" integer DEFAULT 0 NOT NULL
);
CREATE INDEX clientes_id_idx ON "clientes" USING HASH(id);
CREATE TABLE IF NOT EXISTS "transacoes" (
"id" serial PRIMARY KEY NOT NULL,
"cliente_id" integer NOT NULL ,
"valor" integer NOT NULL,
"tipo" char(1) NOT NULL,
"descricao" varchar(10) NOT NULL,
"realizado_em" timestamp NOT NULL DEFAULT now()
);
CREATE INDEX transacoes_id_idx ON "transacoes" USING HASH(id);
CREATE INDEX transacoes_cliente_id_idx ON "transacoes" USING HASH(cliente_id);
create or replace procedure criar_transacao(
id_cliente INTEGER,
valor integer,
tipo text,
descricao text,
inout saldo_atualizado integer default null,
inout limite_atualizado integer default null
)
language plpgsql
as $$
begin
UPDATE clientes
set saldo = saldo + valor
where id = id_cliente and saldo + valor >= - limite
returning saldo, limite into saldo_atualizado, limite_atualizado;
if saldo_atualizado is null or limite_atualizado is null then return; end if;
commit;
INSERT INTO transacoes (valor, tipo, descricao, cliente_id)
VALUES (ABS(valor), tipo, descricao, id_cliente);
end;
$$;
DO $$
BEGIN
INSERT INTO clientes (nome, limite)
VALUES
('o barato sai caro', 1000 * 100),
('zan corp ltda', 800 * 100),
('les cruders', 10000 * 100),
('padaria joia de cocaia', 100000 * 100),
('kid mais', 5000 * 100);
END; $$