handle composed schemas in InlineModelResolver (#2112)

* handle composed schemas in InlineModelResolver

* fix unit test -> TestUtils.parseSpec

* update samples

* fix samples

* update samples

* update samples

* add new files
This commit is contained in:
Matthieu Berthomé
2019-05-08 04:19:15 +02:00
committed by William Cheng
parent 7eb2be9c99
commit ee43cc1520
412 changed files with 17001 additions and 101 deletions

View File

@@ -165,6 +165,14 @@ CREATE TABLE IF NOT EXISTS `Cat` (
`declawed` TINYINT(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Table structure for table `Cat_allOf` generated from model 'CatUnderscoreallOf'
--
CREATE TABLE IF NOT EXISTS `Cat_allOf` (
`declawed` TINYINT(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Table structure for table `Category` generated from model 'Category'
--
@@ -201,6 +209,14 @@ CREATE TABLE IF NOT EXISTS `Dog` (
`breed` TEXT DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Table structure for table `Dog_allOf` generated from model 'DogUnderscoreallOf'
--
CREATE TABLE IF NOT EXISTS `Dog_allOf` (
`breed` TEXT DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Table structure for table `EnumArrays` generated from model 'EnumArrays'
--