forked from loafle/openapi-generator-original
* migrate mysql samples to oas 3.0 * update apache2 to use oas3 spec * migrate graphql samples to use oas3 spec * move avro script under bin * update protobuf samples to use openapi3 spec * add new files
27 lines
538 B
SQL
27 lines
538 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'HealthCheckResult' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `HealthCheckResult`
|
|
--
|
|
SELECT `NullableMessage` FROM `HealthCheckResult` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `HealthCheckResult`
|
|
--
|
|
INSERT INTO `HealthCheckResult`(`NullableMessage`) VALUES (?);
|
|
|
|
--
|
|
-- UPDATE template for table `HealthCheckResult`
|
|
--
|
|
UPDATE `HealthCheckResult` SET `NullableMessage` = ? WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `HealthCheckResult`
|
|
--
|
|
DELETE FROM `HealthCheckResult` WHERE 0;
|
|
|