tst037.stable.out

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

OUT
46
字号
stdout of test 'tst037` in directory 'src/mal` itself:# 07:58:42 >  # 07:58:42 >  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  tst037.mal </dev/null# 07:58:42 >  # 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.## testing pattern matching against strings##b:= match("Hello world","Hello");#print(b);#b:= match("Hello world",".*lo.*");#print(b);#b:= match("Hello world","^lo.*or");#print(b);#b:= match("Hello world","[ABHW]");#print(b);#function user.main():void;	# 0  (main:void)# testing pattern matching against strings 	# 1  (_1:str)    b := pcre.match("Hello world","Hello");	# 2 PCREmatch (b:bit)<-(_3:str)(_4:str)    io.print(b);	# 3 IOprint_val (_5:void)<-(b:bit)    b := pcre.match("Hello world",".*lo.*");	# 4 PCREmatch (b:bit)<-(_3:str)(_6:str)    io.print(b);	# 5 IOprint_val (_7:void)<-(b:bit)    b := pcre.match("Hello world","^lo.*or");	# 6 PCREmatch (b:bit)<-(_3:str)(_8:str)    io.print(b);	# 7 IOprint_val (_9:void)<-(b:bit)    b := pcre.match("Hello world","[ABHW]");	# 8 PCREmatch (b:bit)<-(_3:str)(_10:str)    io.print(b);	# 9 IOprint_val (_11:void)<-(b:bit)end main;	# 10  [ true ][ true ][ false ][ true ]# 07:58:42 >  # 07:58:42 >  Done.# 07:58:42 >  

⌨️ 快捷键说明

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