提交 323dab55 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Use >> syntax in scripts/functions/system

上级 1f445c27
......@@ -9,8 +9,5 @@ create memory table test(id int primary key, name varchar(255));
insert into test values(1, 'Hello');
> update count: 1
select autocommit() x_true from test;
> X_TRUE
> ------
> TRUE
> rows: 1
select autocommit() from test;
>> TRUE
......@@ -9,8 +9,5 @@ create memory table test(id int primary key, name varchar(255));
insert into test values(1, 'Hello');
> update count: 1
select right(database(), 6) x_script from test;
> X_SCRIPT
> --------
> SCRIPT
> rows: 1
select right(database(), 6) from test;
>> SCRIPT
......@@ -9,8 +9,5 @@ create memory table test(id int primary key, name varchar(255));
insert into test values(1, 'Hello');
> update count: 1
select readonly() x_false from test;
> X_FALSE
> -------
> FALSE
> rows: 1
select readonly() from test;
>> FALSE
......@@ -15,8 +15,5 @@ select user() x_sa, current_user() x_sa2 from test;
> SA SA
> rows: 1
select current_user() x_sa from test;
> X_SA
> ----
> SA
> rows: 1
select current_user() from test;
>> SA
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论