-
I have a complex model design.
Say, the Tag model here uses single-table inheritance for different type of categories. The Tagging model use polymorphic assocation for taggings of different category…
-
```
The following code fails with an error
'foo.b:xx: spurious cyclic qualifier for field link of adt Node[T]'
Node: adt[T] {
new: fn(): ref Node[T];
x: T;
link: cyclic ref Node[T];
};
N…
-
```
In my mind there's two ways to go about this:
1) Create a class structure that mirrors the class structure of the entities to
be queried.
-This could cause compile errors if there are hidden (i.…
-
```haskell
data Test a = Test { test :: a } deriving (Generic, ToSchema)
```
Results in this error
```
* Overlapping instances for Data.Swagger.Internal.Schema.GToSchema
…
-
Hi,
I am trying to validate a json payload with polymorphic objects in an array type field, my JSON string is below, changed property name lastSuccess to **lasttSuccess** to test validation fails b…
-
| --- | --- |
| Bugzilla Link | [521852](https://bugs.eclipse.org/bugs/show_bug.cgi?id=521852) |
| Status | NEW |
| Importance | P3 normal |
| Reported | Sep 05, 2017 03:36 EDT |
| Modified | Apr…
-
## minimized code
dotty version: `0.23.0-bin-20200304-16c30fb-NIGHTLY`
```Scala
package example
object Main {
def main(args: Array[String]): Unit = {
val f = [A1, A2, A3, A4, A5, A6,…
-
Admin form with polymorphic inlines is not multipart when you use an ImageField or a FileField, which results in the files not being uploaded to the server.
This issue can be replicated by implemen…
-
```
What steps will reproduce the problem?
1. Specify: for structs {IsLockable : Boolean (default:false);} in
DeploySpec.fdepl
2. Specify: for arrays {IsLockable : Boolean (default:false);} in
Deplo…
-
### Describe the bug
In Java, construct `QueueProcessingFargateService` exposes a `protected` method `configureAutoscalingForService`. Ostensible, this access allows subtypes to override the behavior…