mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-14 05:30:51 +00:00
* 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
630 B
SQL
27 lines
630 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'ChildWithNullable' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `ChildWithNullable`
|
|
--
|
|
SELECT `type`, `nullableProperty`, `otherProperty` FROM `ChildWithNullable` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `ChildWithNullable`
|
|
--
|
|
INSERT INTO `ChildWithNullable`(`type`, `nullableProperty`, `otherProperty`) VALUES (?, ?, ?);
|
|
|
|
--
|
|
-- UPDATE template for table `ChildWithNullable`
|
|
--
|
|
UPDATE `ChildWithNullable` SET `type` = ?, `nullableProperty` = ?, `otherProperty` = ? WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `ChildWithNullable`
|
|
--
|
|
DELETE FROM `ChildWithNullable` WHERE 0;
|
|
|