-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#201 #202 Update data-h2.sql, data-mysql.sql & persons.sql #249
Conversation
@@ -1,5 +1,4 @@ | |||
--h2 | |||
-- h2 initial data load INSERTS |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET NOCOUNT ON near top of file Warning
@@ -1,5 +1,4 @@ | |||
--h2 | |||
-- h2 initial data load INSERTS |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET QUOTED_IDENTIFIER ON near top of file Warning
@@ -1,5 +1,4 @@ | |||
--h2 | |||
-- h2 initial data load INSERTS |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET ANSI_NULLS ON near top of file Warning
@@ -1,5 +1,4 @@ | |||
--h2 | |||
-- h2 initial data load INSERTS |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED near top of file Warning
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1001, "Mr", "Conor", "Heffron", 43); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1002, "Mr", "Joe", "Bloggs", 44); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1003, "Dr", "John", "Jones", 29); | ||
-- ** MySQL Test INSERTS for DEBUG & TESTING PURPOSES ONLY ** |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET QUOTED_IDENTIFIER ON near top of file Warning
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1001, "Mr", "Conor", "Heffron", 43); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1002, "Mr", "Joe", "Bloggs", 44); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1003, "Dr", "John", "Jones", 29); | ||
-- ** MySQL Test INSERTS for DEBUG & TESTING PURPOSES ONLY ** |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET NOCOUNT ON near top of file Warning
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1001, "Mr", "Conor", "Heffron", 43); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1002, "Mr", "Joe", "Bloggs", 44); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1003, "Dr", "John", "Jones", 29); | ||
-- ** MySQL Test INSERTS for DEBUG & TESTING PURPOSES ONLY ** |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET ANSI_NULLS ON near top of file Warning
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1001, "Mr", "Conor", "Heffron", 43); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1002, "Mr", "Joe", "Bloggs", 44); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1003, "Dr", "John", "Jones", 29); | ||
-- ** MySQL Test INSERTS for DEBUG & TESTING PURPOSES ONLY ** |
Check warning
Code scanning / Tsqllint (reported by Codacy)
Expected SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED near top of file Warning
No description provided.