forked from loafle/openapi-generator-original
* add nullable case to spring test spec * generate samples for changed spring input * add nullable case to general test spec * generate samples for changed general input * generate samples again * generates samples again * re-build from new sources, generates samples again
27 lines
581 B
SQL
27 lines
581 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'ParentWithNullable' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `ParentWithNullable`
|
|
--
|
|
SELECT `type`, `nullableProperty` FROM `ParentWithNullable` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `ParentWithNullable`
|
|
--
|
|
INSERT INTO `ParentWithNullable`(`type`, `nullableProperty`) VALUES (?, ?);
|
|
|
|
--
|
|
-- UPDATE template for table `ParentWithNullable`
|
|
--
|
|
UPDATE `ParentWithNullable` SET `type` = ?, `nullableProperty` = ? WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `ParentWithNullable`
|
|
--
|
|
DELETE FROM `ParentWithNullable` WHERE 0;
|
|
|