William Cheng 56da2c00ca
Migrate schema samples to use OAS3 samples instead (#6294)
* 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
2020-05-14 17:24:19 +08:00

27 lines
565 B
SQL

--
-- OpenAPI Petstore.
-- Prepared SQL queries for 'inline_response_default' definition.
--
--
-- SELECT template for table `inline_response_default`
--
SELECT `string` FROM `inline_response_default` WHERE 1;
--
-- INSERT template for table `inline_response_default`
--
INSERT INTO `inline_response_default`(`string`) VALUES (?);
--
-- UPDATE template for table `inline_response_default`
--
UPDATE `inline_response_default` SET `string` = ? WHERE 1;
--
-- DELETE template for table `inline_response_default`
--
DELETE FROM `inline_response_default` WHERE 0;