Skip to content

Commit 12096dc

Browse files
committed
Try to fix CI
1 parent 493177b commit 12096dc

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

settings/request.go

+48-48
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
11
// Package settings is a collection of requests to set a connection session setting
22
// or get current session configuration.
33
//
4-
// +============================+=========================+
5-
// | Setting | Meaning |
6-
// | | |
7-
// +============================+=========================+
8-
// | ErrorMarshalingEnabled | Defines whether error |
9-
// | | objectshave a special |
10-
// | | structure. |
11-
// +----------------------------+-------------------------+
12-
// | SQLDefaultEngine | Defines default storage |
13-
// | | engine for new SQL |
14-
// | | tables. |
15-
// +----------------------------+-------------------------+
16-
// | SQLDeferForeignKeys | Defines whether |
17-
// | | foreign-key checks can |
18-
// | | wait till commit. |
19-
// +----------------------------+-------------------------+
20-
// | SQLFullColumnNames | Defines whether full |
21-
// | | column names is |
22-
// | | displayed in SQL result |
23-
// | | set metadata. |
24-
// +----------------------------+-------------------------+
25-
// | SQLFullMetadata | Defines whether SQL |
26-
// | | result set metadata |
27-
// | | will have more than | | |
28-
// | | just name and type. | | |
29-
// +----------------------------+-------------------------+---------+---------------------------+
30-
// | SQLParserDebug | Defines whether to show | false | Since 2.3.1 (only if |
31-
// | | parser steps for | | built with |
32-
// | | following statements. | | -DCMAKE_BUILD_TYPE=Debug) |
33-
// +----------------------------+-------------------------+---------+---------------------------+
34-
// | SQLRecursiveTriggers | Defines whether a | true | Since 2.3.1. |
35-
// | | triggered statement can | | |
36-
// | | activate a trigger. | | |
37-
// +----------------------------+-------------------------+---------+---------------------------+
38-
// | SQLReverseUnorderedSelects | Defines defines whether | false | Since 2.3.1. |
39-
// | | result rows are usually | | |
40-
// | | in reverse order if | | |
41-
// | | there is no ORDER BY | | |
42-
// | | clause. | | |
43-
// +----------------------------+-------------------------+---------+---------------------------+
44-
// | SQLSelectDebug | Defines whether to show | false | Since 2.3.1 (only if |
45-
// | | to show execution steps | | built with |
46-
// | | during SELECT. | | -DCMAKE_BUILD_TYPE=Debug) |
47-
// +----------------------------+-------------------------+---------+---------------------------+
48-
// | SQLVDBEDebug | Defines whether VDBE | false | Since 2.3.1 (only if |
49-
// | | debug mode is enabled. | | built with |
50-
// | | | | -DCMAKE_BUILD_TYPE=Debug) |
51-
// +----------------------------+-------------------------+---------+---------------------------+
4+
// +============================+=========================+=========+===========================+
5+
// | Setting | Meaning | Default | Supported in |
6+
// | | | | Tarantool versions |
7+
// +============================+=========================+=========+===========================+
8+
// | ErrorMarshalingEnabled | Defines whether error | false | Since 2.4.1 till 2.10.0, |
9+
// | | objectshave a special | | replaced with IPROTO_ID |
10+
// | | structure. | | feature flag. |
11+
// +----------------------------+-------------------------+---------+---------------------------+
12+
// | SQLDefaultEngine | Defines default storage | "memtx" | Since 2.3.1. |
13+
// | | engine for new SQL | | |
14+
// | | tables. | | |
15+
// +----------------------------+-------------------------+---------+---------------------------+
16+
// | SQLDeferForeignKeys | Defines whether | false | Since 2.3.1 till master |
17+
// | | foreign-key checks can | | commit 14618c4 (possible |
18+
// | | wait till commit. | | 2.10.5 or 2.11.0) |
19+
// +----------------------------+-------------------------+---------+---------------------------+
20+
// | SQLFullColumnNames | Defines whether full | false | Since 2.3.1. |
21+
// | | column names is | | |
22+
// | | displayed in SQL result | | |
23+
// | | set metadata. | | |
24+
// +----------------------------+-------------------------+---------+---------------------------+
25+
// | SQLFullMetadata | Defines whether SQL | false | Since 2.3.1. |
26+
// | | result set metadata | | |
27+
// | | will have more than | | |
28+
// | | just name and type. | | |
29+
// +----------------------------+-------------------------+---------+---------------------------+
30+
// | SQLParserDebug | Defines whether to show | false | Since 2.3.1 (only if |
31+
// | | parser steps for | | built with |
32+
// | | following statements. | | -DCMAKE_BUILD_TYPE=Debug) |
33+
// +----------------------------+-------------------------+---------+---------------------------+
34+
// | SQLRecursiveTriggers | Defines whether a | true | Since 2.3.1. |
35+
// | | triggered statement can | | |
36+
// | | activate a trigger. | | |
37+
// +----------------------------+-------------------------+---------+---------------------------+
38+
// | SQLReverseUnorderedSelects | Defines defines whether | false | Since 2.3.1. |
39+
// | | result rows are usually | | |
40+
// | | in reverse order if | | |
41+
// | | there is no ORDER BY | | |
42+
// | | clause. | | |
43+
// +----------------------------+-------------------------+---------+---------------------------+
44+
// | SQLSelectDebug | Defines whether to show | false | Since 2.3.1 (only if |
45+
// | | to show execution steps | | built with |
46+
// | | during SELECT. | | -DCMAKE_BUILD_TYPE=Debug) |
47+
// +----------------------------+-------------------------+---------+---------------------------+
48+
// | SQLVDBEDebug | Defines whether VDBE | false | Since 2.3.1 (only if |
49+
// | | debug mode is enabled. | | built with |
50+
// | | | | -DCMAKE_BUILD_TYPE=Debug) |
51+
// +----------------------------+-------------------------+---------+---------------------------+
5252
//
5353
// Since: 1.10.0
5454
package settings

0 commit comments

Comments
 (0)