From 06d8edf3bd4c73ab72b00a5649c02b37428ea696 Mon Sep 17 00:00:00 2001 From: Carson Full Date: Mon, 11 Mar 2024 16:15:23 -0500 Subject: [PATCH] Add test schema to expose failure --- integration-tests/lts/dbschema/default.esdl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/integration-tests/lts/dbschema/default.esdl b/integration-tests/lts/dbschema/default.esdl index 6db426ae4..380a6baf5 100644 --- a/integration-tests/lts/dbschema/default.esdl +++ b/integration-tests/lts/dbschema/default.esdl @@ -220,4 +220,17 @@ module User { scalar type Status extending enum<"Active", "Disabled">; type User extending default::User; + + type Profile { + property address -> User::Profile::MailingAddress; + } + + module Profile { + type MailingAddress { + property street -> str; + property city -> str; + property state -> str; + property zip -> str; + } + } }