2.11BSD/ingres/source/decomp/ret_unique.c

Compare this file to the similar file:
Show the results in this format:

# include	"../ingres.h"
# include	"../symbol.h"
# include	"../tree.h"
# include	"decomp.h"


mk_unique(root)
struct querytree	*root;

/*
**	create a result relation for a ret_unique
*/

{
	register int			i, domcnt;
	register struct querytree	*r;

	r = root;

	/* verify that target list is within range */
	domcnt = r->left->sym.type != TREE ? ((struct qt_res *)r->left)->resno : 0;
	if (findwid(r) > MAXTUP || domcnt > MAXDOM)
		derror(4620);
	i = MAXRANGE - 1;
	Rangev[i].relnum = mak_t_rel(r, "u", -1);
	Resultvar = i;

	/* don't count retrieve into portion as a user query */
	((struct qt_root *)r)->rootuser = 0;
}


pr_unique(root1, var1)
struct querytree	*root1;
int			var1;

/*
**	Retrieve all domains of the variable "var".
**	This routine is used for ret_unique to retrieve
**	the result relation. First duplicates are removed
**	then the original tree is converted to be a
**	retrieve of all domains of "var", and then
**	ovqp is called to retrieve the relation.
*/

{
	register struct querytree	*root, *r;
	register int			var;
	extern struct querytree		*makavar();

	root = root1;
	var = var1;

	/* remove duplicates from the unopened relation */
	removedups(var);

	/* remove the qual from the tree */
	root->right = Qle;

	/* make all resdoms refer to the result relation */
	for (r = root->left; r->sym.type != TREE; r = r->left)
		r->right = makavar(r, var, ((struct qt_res *)r)->resno);

	/* count as a user query */
	((struct qt_root *)root)->rootuser = TRUE;

	/* run the retrieve */
	Sourcevar = var;
	Newq = Newr = TRUE;
	call_ovqp(root, mdRETR, NORESULT);
}