This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/arrow-flight-sql-postgresql.git
The following commit(s) were added to refs/heads/main by this push:
new 2b14234 Fix session key size (#41)
2b14234 is described below
commit 2b142341d583dcd0b6524ea332b2a4784cb86220
Author: Sutou Kouhei <[email protected]>
AuthorDate: Tue May 30 17:46:01 2023 +0900
Fix session key size (#41)
Closes GH-40
---
src/afs.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/afs.cc b/src/afs.cc
index 92b7e10..3cd0009 100644
--- a/src/afs.cc
+++ b/src/afs.cc
@@ -354,7 +354,7 @@ class SessionReleaser {
};
static dshash_parameters SessionsParams = {
- sizeof(uint32_t),
+ sizeof(uint64_t),
sizeof(SessionData),
dshash_memcmp,
dshash_memhash,