tst750.stable.out

来自「一个内存数据库的源代码这是服务器端还有客户端」· OUT 代码 · 共 41 行

OUT
41
字号
stdout of test 'tst750` in directory 'src/mal` itself:# 08:01:29 >  # 08:01:29 >  Mtimeout -timeout 60 Mserver "--config=/ufs/mk/monet5/Linux/etc/MonetDB5.conf" --debug=10 --set "monet_mod_path=/ufs/mk/monet5/Linux/lib/MonetDB5:/ufs/mk/opensource/MonetDB/Linux/lib/MonetDB" --set "gdk_dbfarm=/ufs/mk/monet5/Linux/var/MonetDB5/dbfarm" --set "sql_logdir=/ufs/mk/monet5/Linux/var/MonetDB5/log" --set mapi_port=42158 --set sql_port=55708 --set monet_prompt= --trace "--config=/ufs/mk/monet5/src/mal/Tests/All.conf" --dbname=mTests_src_mal  tst750.mal </dev/null# 08:01:29 >  # Monet Database Server V4.99.19# Copyright (c) 1993-2004, CWI. All rights reserved.# Compiled for i686-redhat-linux-gnu/32bit; dynamically linked.# config:/ufs/mk/monet5/Linux/etc/MonetDB5.conf# dbfarm:/ufs/mk/monet5/Linux/var/MonetDB5/dbfarm# dbname:mTests_src_mal# Visit http://monetdb.cwi.nl/ for further information.## Polymorphic function tests## Cloning two versions of a single function#function test(b:bat[:any,:any$2],c:any$2);#	k:= 1+c;#	print(k);#end test;function user.test(b:bat[:any_1,:any_2],c:any_2):void;	# 0  (test:void)<-(b:bat[:any_1,:any_2])(c:any_2)    k := calc.+(1,c);	# 1  (k:any)<-(_4:int)(c:any_2)    io.print(k);	# 2 IOprint_val (_5:void)<-(k:any)end test;	# 3  ##b:=new(:int,:int);#test(b,2);#function user.main():void;	# 0  (main:void)# Polymorphic function tests 	# 1  (_1:str)# Cloning two versions of a single function 	# 2  (_2:str)    b := bat.new(:int,:int);	# 3 CMDBATnew (b:bat[:int,:int])<-(_4:int)(_4:int)    user.test(b,2);	# 4  (_5:void)<-(b:bat[:int,:int])(_6:int)end main;	# 5  [ 3 ]# 08:01:29 >  # 08:01:29 >  Done.# 08:01:29 >  

⌨️ 快捷键说明

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