We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6111b79 commit fde83aeCopy full SHA for fde83ae
CHANGELOG.md
@@ -36,6 +36,8 @@ flag handling, and fixes watcher panic.
36
Now you can check this error with `errors.Is(err, tarantool.ErrConcurrentSchemaUpdate)`.
37
- Implemented support for `IPROTO_IS_SYNC` flag in stream transactions,
38
added `IsSync(bool)` method for `BeginRequest`/`CommitRequest` (#447).
39
+- - Added missing IPROTO feature flags to greeting negotiation
40
+ (iproto.IPROTO_FEATURE_IS_SYNC, iproto.IPROTO_FEATURE_INSERT_ARROW) (#466).
41
42
### Fixed
43
dial_test.go
@@ -343,7 +343,7 @@ var (
343
testDialSalt = genSalt()
344
345
idRequestExpected = []byte{
346
- 0xce, 0x00, 0x00, 0x00, 29, // Length.
+ 0xce, 0x00, 0x00, 0x00, 31, // Length.
347
0x82, // Header map.
348
0x00, 0x49,
349
0x01, 0xce, 0x00, 0x00, 0x00, 0x00,
@@ -352,7 +352,8 @@ var (
352
0x54,
353
0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, // Version.
354
0x55,
355
- 0x97, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, // Features.
+ 0x99, // Fixed arrау with 9 elements.
356
+ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x0b, 0x0c, // Features (9 elements).
357
}
358
359
idResponseTyped = tarantool.ProtocolInfo{
protocol.go
@@ -58,6 +58,8 @@ var clientProtocolInfo ProtocolInfo = ProtocolInfo{
58
iproto.IPROTO_FEATURE_PAGINATION,
59
iproto.IPROTO_FEATURE_SPACE_AND_INDEX_NAMES,
60
iproto.IPROTO_FEATURE_WATCH_ONCE,
61
+ iproto.IPROTO_FEATURE_IS_SYNC,
62
+ iproto.IPROTO_FEATURE_INSERT_ARROW,
63
},
64
65
0 commit comments