Skip to content

Commit

Permalink
Update sp_QuickieStore.sql
Browse files Browse the repository at this point in the history
Closes #395
  • Loading branch information
erikdarlingdata committed Apr 2, 2024
1 parent 67ed9ee commit db77a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sp_QuickieStore/sp_QuickieStore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ Hold plan_ids for plans we want
CREATE TABLE
#include_plan_ids
(
plan_id bigint PRIMARY KEY
plan_id bigint PRIMARY KEY WITH (IGNORE_DUP_KEY = ON)
);

/*
Expand All @@ -460,7 +460,7 @@ Hold plan_ids for ignored plans
CREATE TABLE
#ignore_plan_ids
(
plan_id bigint PRIMARY KEY
plan_id bigint PRIMARY KEY WITH (IGNORE_DUP_KEY = ON)
);

/*
Expand Down

0 comments on commit db77a87

Please sign in to comment.