Skip to content

Commit

Permalink
add data to break ties
Browse files Browse the repository at this point in the history
  • Loading branch information
wongjingping authored and rishsriv committed Jun 3, 2024
1 parent 3834a3a commit 15852b5
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions defog_data/scholar/scholar.sql
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ INSERT INTO public.author (authorid, authorname) VALUES
(2, 'Emily Johnson'),
(3, 'Michael Brown'),
(4, 'Sarah Davis'),
(5, 'David Wilson')
(5, 'David Wilson'),
(6, 'Jennifer Lee'),
(7, 'Robert Moore'),
(8, 'Linda Taylor'),
(9, 'William Anderson'),
(10, 'Karen Martinez')
;

INSERT INTO public.cite (citingpaperid, citedpaperid) VALUES
Expand Down Expand Up @@ -177,7 +182,11 @@ INSERT INTO public.writes (paperid, authorid) VALUES
(4, 5),
(5, 1),
(2, 1),
(4, 3)
(4, 3),
(4, 6),
(2, 7),
(2, 8),
(2, 9)
;


Expand Down

0 comments on commit 15852b5

Please sign in to comment.