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
2 changes: 1 addition & 1 deletion get_started/tutorial_multi_tenant.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ say you want to delete a campaign and all its associated ads, you could do it at
.. code-block:: sql

BEGIN;
DELETE FROM campaigns WHERE id = 46 AND company_id = 5;
DELETE FROM ads WHERE campaign_id = 46 AND company_id = 5;
DELETE FROM campaigns WHERE id = 46 AND company_id = 5;
COMMIT;

Each statement in a transactions causes roundtrips between the coordinator and
Expand Down