Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
bb455cd
feat(mysql): clean-room MySQL authentication codec
rajvarun77 Jun 4, 2026
91c9df8
feat(mysql): full MySQL text protocol with transactions and prepared …
rajvarun77 Jun 4, 2026
a292dbc
test(mysql): clean-room integration tests + prepared-stmt error fix +…
rajvarun77 Jun 4, 2026
9c4c1f2
refactor(mysql): consolidate sources under policy/mysql/; drop inheri…
rajvarun77 Jun 4, 2026
0bb55ee
fix(mysql): address code-review findings (binary protocol, auth, edge…
rajvarun77 Jun 4, 2026
f152fcb
fix(mysql): address review findings — license header, flag typo, head…
rajvarun77 Jun 6, 2026
679e73e
fix(mysql): use the standard ASF license header on new example/test f…
rajvarun77 Jun 6, 2026
0fac6c5
chore(mysql): add diagnostic error logs on silent failure paths
rajvarun77 Jun 9, 2026
a4aef4c
chore(mysql): demote non-fatal diagnostic logs to LOG(WARNING)
rajvarun77 Jun 9, 2026
7e79601
fix(test): make AuthCase a C++11 aggregate so push_back{...} compiles
rajvarun77 Jun 9, 2026
34f6807
Merge remote-tracking branch 'origin/master' into mysql-text-protocol…
rajvarun77 Jun 9, 2026
bf59627
fix(mysql,ci): run integration tests against a real CI-provisioned my…
rajvarun77 Jun 9, 2026
d1e259f
address review comments: bind-sock flag, non-copyable response, naming
rajvarun77 Jun 9, 2026
b6aedc9
test(mysql): move unittests from mysql/ subdir into test/
rajvarun77 Jun 10, 2026
3386fff
test(mysql): drop run_tests.sh mysql/ subdir entry after move
rajvarun77 Jun 10, 2026
523b9de
Merge remote-tracking branch 'origin/master' into mysql-text-protocol…
rajvarun77 Jun 12, 2026
0b9c902
Merge remote-tracking branch 'origin/master' into mysql-text-protocol…
rajvarun77 Jun 15, 2026
1f1852f
Fix backup/retry call hang: default-initialize bind_sock_action
rajvarun77 Jun 15, 2026
530e112
Initialize Call::bind_sock_action explicitly in every constructor
varuntinkle Jun 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ JSON2PB_DIRS = src/json2pb
JSON2PB_SOURCES = $(foreach d,$(JSON2PB_DIRS),$(wildcard $(addprefix $(d)/*,$(SRCEXTS))))
JSON2PB_OBJS = $(addsuffix .o, $(basename $(JSON2PB_SOURCES)))

BRPC_DIRS = src/brpc src/brpc/details src/brpc/builtin src/brpc/policy src/brpc/rdma
BRPC_DIRS = src/brpc src/brpc/details src/brpc/builtin src/brpc/policy src/brpc/policy/mysql src/brpc/rdma
THRIFT_SOURCES = $(foreach d,$(BRPC_DIRS),$(wildcard $(addprefix $(d)/thrift*,$(SRCEXTS))))
EXCLUDE_SOURCES = $(foreach d,$(BRPC_DIRS),$(wildcard $(addprefix $(d)/event_dispatcher_*,$(SRCEXTS))))
BRPC_SOURCES_ALL = $(foreach d,$(BRPC_DIRS),$(wildcard $(addprefix $(d)/*,$(SRCEXTS))))
Expand Down
Loading
Loading