⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 generator09.mal

📁 一个内存数据库的源代码这是服务器端还有客户端
💻 MAL
字号:
# the generator optimizer# The flow graph becomes a little more complex # it requires the result of the select to be accumulated# because there is a blocking instruction inbetweenmdb.list();	io.print("start");	b:bat[:oid,:int]:= pbm.generator("Sales2005");	a:bat[:oid,:int]:= pbm.generator("Areas");	low:= 0;	high:= 3;	s:= algebra.select(b,low,high);	i:= aggr.count(s);	io.print("Result is:");	io.print(i);	io.print("go-on");	t:= algebra.select(s,low,high);	ar:= bat.reverse(a);	j:= algebra.join(t,ar);	c:= aggr.count(j);	io.print(c);	io.print("finished");optimizer.generators();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -