We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f291c0 commit 78a8dc7Copy full SHA for 78a8dc7
+dj/Relvar.m
@@ -87,8 +87,9 @@ function cleanup(self)
87
self.schema.conn.tableToClass(child),list)), rels(i).children)
88
% and restrict them by it or its restrictions
89
if restrictByMe(i)
90
- fk_index = arrayfun(@(x) strcmp(x.from, rels(ix).fullTableName),...
91
- self.schema.conn.foreignKeys, 'uni', true);
+ fk_index = arrayfun(...
+ @(x) strcmp(x.from, rels(ix).fullTableName), ...
92
+ self.schema.conn.foreignKeys, 'uni', true);
93
fks = self.schema.conn.foreignKeys(fk_index);
94
if ~fks.aliased
95
rels(ix).restrict(proj(rels(i)));
0 commit comments