Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions src/main/resources/brapi/sql/R__species.sql
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ BEGIN
('Blueberry'), ('Salmon'), ('Grape'), ('Alfalfa'),
('Sweet Potato'), ('Trout'), ('Soybean'), ('Cranberry'),
('Cucumber'), ('Oat'), ('Citrus'), ('Sugar Cane'),
('Strawberry'), ('Pecan'), ('Lettuce'), ('Cotton'),
('Sorghum'), ('Hemp'), ('Hop'), ('Hydrangea'),
('Red Clover'), ('Potato'), ('Blackberry'), ('Raspberry'),
('Sugar Beet'), ('Coffee')
('Strawberry'), ('Honey Bee'), ('Pecan'), ('Lettuce'),
('Cotton'), ('Sorghum'), ('Hemp'), ('Hop'),
('Hydrangea'), ('Red Clover'), ('Potato'), ('Blackberry'),
('Raspberry'), ('Sugar Beet'), ('Coffee')
) AS src(crop_name)
ON CONFLICT (id) DO
-- want case changes or space changes to overwrite existing
Expand Down
8 changes: 4 additions & 4 deletions src/test/resources/sql/brapi/species.sql
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ FROM (VALUES
('Blueberry'), ('Salmon'), ('Grape'), ('Alfalfa'),
('Sweet Potato'), ('Trout'), ('Soybean'), ('Cranberry'),
('Cucumber'), ('Oat'), ('Citrus'), ('Sugar Cane'),
('Strawberry'), ('Pecan'), ('Lettuce'), ('Cotton'),
('Sorghum'), ('Hemp'), ('Hop'), ('Hydrangea'),
('Red Clover'), ('Potato'), ('Blackberry'), ('Raspberry'),
('Sugar Beet'), ('Coffee')
('Strawberry'), ('Honey Bee'), ('Pecan'), ('Lettuce'),
('Cotton'), ('Sorghum'), ('Hemp'), ('Hop'),
('Hydrangea'), ('Red Clover'), ('Potato'), ('Blackberry'),
('Raspberry'), ('Sugar Beet'), ('Coffee')
) AS src(crop_name)
ON CONFLICT (id) DO
UPDATE SET crop_name = EXCLUDED.crop_name
Expand Down
Loading