transaction.mal

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

MAL
42
字号
#line 28 "/export/scratch0/monet/monet.GNU.64.64.d.14791/MonetDB5/src/modules/mal/transaction.mx"module transaction;command sync() :bitaddress TRNglobal_synccomment "Save all persistent BATs";command commit() :bitaddress TRNglobal_commitcomment "Global commit on all BATs";command abort() :bitaddress TRNglobal_abortcomment "Global abort on all BATs";command subcommit(b:bat[:any_1,:str]):bitaddress TRNsubcommitcomment "commit only a set of BATnames, passed in the tail (to which you must have exclusive access!)";pattern commit(c:any...) address TRNtrans_commitcomment "Commit changes in certain BATs.";pattern abort(c:any...) address TRNtrans_abortcomment "Abort changes in certain BATs.";pattern clean(c:any...) address TRNtrans_cleancomment "Declare a BAT clean without flushing to disk.";command prev(b:bat[:any_1,:any_2]):bat[:any_1,:any_2]address TRNtrans_prevcomment "The previous stae of this BAT";command alpha(b:bat[:any_1,:any_2]) :bat[:any_1,:any_2] address TRNtrans_alphacomment	"List insertions since last commit.";command delta(b:bat[:any_1,:any_2]) :bat[:any_1,:any_2] address TRNtrans_deltacomment	"List deletions since last commit.";#line 64 "/export/scratch0/monet/monet.GNU.64.64.d.14791/MonetDB5/src/modules/mal/transaction.mx"

⌨️ 快捷键说明

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