Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed gross bug in info expected, which just was not triggered so far. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | schema |
Files: | files | file ages | folders |
SHA3-256: |
910d0dbb65f7e985d3f0d56ba3c3d509 |
User & Date: | rolf 2020-05-20 14:01:27 |
Context
2020-05-27
| ||
00:20 | For a domunique constraint now the key value of an empty fieldset node set result can be given. check-in: 426dea4ca8 user: rolf tags: schema | |
2020-05-20
| ||
14:01 | Fixed gross bug in info expected, which just was not triggered so far. check-in: 910d0dbb65 user: rolf tags: schema | |
2020-05-15
| ||
01:34 | Fixed element start event in case of a complex content as child of interleave which isn't optional by quant but is because all of its constituents are optional. check-in: 748fb8a432 user: rolf tags: schema | |
Changes
Changes to generic/schema.c.
3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 |
if (recursivePattern (se, jc)) {
break;
}
/* Fall through */
case SCHEMA_CTYPE_INTERLEAVE:
Tcl_CreateHashEntry (seenCPs, jc, &hnew);
if (hnew) {
se1 = getStackElement (sdata, ic);
mayskip = getNextExpectedWorker (
sdata, se1, interp, seenCPs, rObj,
expectedFlags
);
repoolStackElement (sdata, se1);
}
break;
|
| |
3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 |
if (recursivePattern (se, jc)) {
break;
}
/* Fall through */
case SCHEMA_CTYPE_INTERLEAVE:
Tcl_CreateHashEntry (seenCPs, jc, &hnew);
if (hnew) {
se1 = getStackElement (sdata, jc);
mayskip = getNextExpectedWorker (
sdata, se1, interp, seenCPs, rObj,
expectedFlags
);
repoolStackElement (sdata, se1);
}
break;
|