Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion acid.tex
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,8 @@ \subsection{Write Skew}
\begin{lstlisting}[language=cypher,label=fig:ws2,caption=\tx{WS $T_\mathrm{R}$}.]
MATCH (p1:Person),
(p2:Person {id: p1.id+1})
WHERE p1.value + p2.value <= 0
WHERE p1.id % 2 = 1
AND p1.value + p2.value <= 0
RETURN
p1.id AS p1id,
p1.value AS p1value,
Expand Down