Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Micro optimization. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | schema |
Files: | files | file ages | folders |
SHA3-256: |
fd743f35c1e7f3cb7e106310008d645b |
User & Date: | rolf 2020-03-17 23:55:12 |
Context
2020-03-19
| ||
02:21 | Integrated so far done work: bug fixes in recoving, more work on sanitizing recovering, code gardening. check-in: 33ac16a9c2 user: rolf tags: schema | |
2020-03-17
| ||
23:55 | Micro optimization. check-in: fd743f35c1 user: rolf tags: schema | |
2020-03-14
| ||
03:25 | Added flag -ignorematched to the schema command submethod info expected. check-in: 0dc7c2f6cc user: rolf tags: schema | |
Changes
Changes to generic/schema.c.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
case SCHEMA_CTYPE_VIRTUAL: case SCHEMA_CTYPE_KEYSPACE: case SCHEMA_CTYPE_KEYSPACE_END: mayskip = 1; break; } if (cp->type == SCHEMA_CTYPE_INTERLEAVE) { if (minOne(cp->quants[ac])) mustMatch = 1; } else { if (!mayskip && !hm && minOne (cp->quants[ac])) break; } ac++; hm = 0; } if (cp->type == SCHEMA_CTYPE_NAME) { |
| |
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
case SCHEMA_CTYPE_VIRTUAL:
case SCHEMA_CTYPE_KEYSPACE:
case SCHEMA_CTYPE_KEYSPACE_END:
mayskip = 1;
break;
}
if (cp->type == SCHEMA_CTYPE_INTERLEAVE) {
if (!mustMatch && minOne(cp->quants[ac])) mustMatch = 1;
} else {
if (!mayskip && !hm && minOne (cp->quants[ac])) break;
}
ac++;
hm = 0;
}
if (cp->type == SCHEMA_CTYPE_NAME) {
|