Skip to content

Commit

Permalink
really fix conflict function names
Browse files Browse the repository at this point in the history
  • Loading branch information
nevs committed Jan 16, 2010
1 parent b293697 commit a9b1620
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,6 +1,6 @@

-- returns events followed by another event without a break in between
CREATE OR REPLACE FUNCTION conflict.conflict_event_no_break_after( INTEGER ) RETURNS SETOF conflict.conflict_event_event AS $$
CREATE OR REPLACE FUNCTION conflict.conflict_event_without_break_after( INTEGER ) RETURNS SETOF conflict.conflict_event_event AS $$
-- Loop through all events
SELECT
e2.event_id AS event_id1,
Expand Down
@@ -1,6 +1,6 @@

-- returns events preceded by another event without a break in between
CREATE OR REPLACE FUNCTION conflict.conflict_event_no_break_before( INTEGER ) RETURNS SETOF conflict.conflict_event_event AS $$
CREATE OR REPLACE FUNCTION conflict.conflict_event_without_break_before( INTEGER ) RETURNS SETOF conflict.conflict_event_event AS $$
-- Loop through all events
SELECT
e1.event_id AS event_id1,
Expand Down

0 comments on commit a9b1620

Please sign in to comment.