Fix how empdump rejects attempt to split table sect

Split tables require the record index in the leftmost column.
defellipsis() correctly rejects "..." when the table doesn't have one.
It fails to reject it when it has one that is NSC_EXTRA, and thus not
permitted in a dump.  This is the case for table sect.  defellipsis()
happily succeeds, then chkflds() demands column "uid" if it's missing,
and rejects it if its present.
This commit is contained in:
Markus Armbruster 2011-05-08 12:40:56 +02:00
parent b40741dc5f
commit bd453cd821

View file

@ -392,7 +392,7 @@ defellipsis(void)
{ {
struct castr *ca = ef_cadef(cur_type); struct castr *ca = ef_cadef(cur_type);
if (ca[0].ca_table != cur_type) if (ca[0].ca_table != cur_type || (ca[0].ca_flags & NSC_EXTRA))
return gripe("Table %s doesn't support ...", ef_nameof(cur_type)); return gripe("Table %s doesn't support ...", ef_nameof(cur_type));
ellipsis = is_partial = 1; ellipsis = is_partial = 1;
return 0; return 0;