Skip to content

Commit

Permalink
Merge pull request #8642 from penehyba/fixSemicolon
Browse files Browse the repository at this point in the history
Fix: added 2 semicolons in sql
  • Loading branch information
gsmet authored Apr 17, 2020
2 parents 1461a10 + e47ff28 commit f4fa384
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/hibernate-search-elasticsearch.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ Let's create a `src/main/resources/import.sql` file with the following content:

[source,sql]
----
INSERT INTO author(id, firstname, lastname) VALUES (nextval('hibernate_sequence'), 'John', 'Irving')
INSERT INTO author(id, firstname, lastname) VALUES (nextval('hibernate_sequence'), 'Paul', 'Auster')
INSERT INTO author(id, firstname, lastname) VALUES (nextval('hibernate_sequence'), 'John', 'Irving');
INSERT INTO author(id, firstname, lastname) VALUES (nextval('hibernate_sequence'), 'Paul', 'Auster');
INSERT INTO book(id, title, author_id) VALUES (nextval('hibernate_sequence'), 'The World According to Garp', 1);
INSERT INTO book(id, title, author_id) VALUES (nextval('hibernate_sequence'), 'The Hotel New Hampshire', 1);
Expand Down

0 comments on commit f4fa384

Please sign in to comment.