8000 Use PREPARE/EXECUTE statements for applying DML in follow mode. by dimitri · Pull Request #420 · dimitri/pgcopydb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Use PREPARE/EXECUTE statements for applying DML in follow mode. #420

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ src/bin/lib/libs/** -citus-style
src/bin/lib/pg/** -citus-style
src/bin/lib/subcommands.c/** -citus-style
src/bin/lib/uthash/** -citus-style
src/bin/lib/jenkins/** -citus-style
src/bin/pgcopydb/pg_utils.c -citus-style
15 changes: 15 additions & 0 deletions src/bin/lib/jenkins/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
all: clean lookup3 test ;

test: lookup3
./lookup3

lookup3.o: lookup3.c
$(CC) -c -o $@ $<

lookup3: lookup3.c
$(CC) -D SELF_TEST -Wno-implicit-fallthrough -Wno-format -o $@ $<

clean:
rm -f lookup3.o lookup3

.PHONY: all clean test
12 changes: 12 additions & 0 deletions src/bin/lib/jenkins/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Jenkins hash function

This directory contain public domain code from Bob Jenkins. The code is used
to compute a hash value from a string.

References:

https://en.wikipedia.org/wiki/Jenkins_hash_function

Code origin:

http://burtleburtle.net/bob/c/lookup3.c
Loading
0