Skip to content

Commit

Permalink
Pass identifier to function using %L
Browse files Browse the repository at this point in the history
  • Loading branch information
jonels-msft committed Apr 9, 2020
1 parent d56769e commit 06a0154
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion develop/reference_propagation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ A useful companion to :code:`run_command_on_placements` is :code:`run_command_on
'big_vals',
$cmd$
CREATE TRIGGER after_insert AFTER INSERT ON %s
FOR EACH ROW EXECUTE PROCEDURE embiggen(%s)
FOR EACH ROW EXECUTE PROCEDURE embiggen(%L)
$cmd$
);
Expand Down
2 changes: 1 addition & 1 deletion extra/triggers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Suppose that for every value inserted into ``little_vals`` we want to insert one
'big_vals',
$cmd$
CREATE TRIGGER after_insert AFTER INSERT ON %s
FOR EACH ROW EXECUTE PROCEDURE embiggen(%s)
FOR EACH ROW EXECUTE PROCEDURE embiggen(%L)
$cmd$
);
Expand Down

0 comments on commit 06a0154

Please sign in to comment.