Skip to content
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

Feature/oo 1380/split h2 #6

Open
wants to merge 48 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
78ac419
fix issue:
ieiayaobb Dec 29, 2016
30047b2
Add test for DELETE action with index
mhart Dec 29, 2016
1a57569
Merge branch 'ieiayaobb-master'
mhart Dec 29, 2016
e510c59
1.0.4
mhart Dec 29, 2016
d239121
Update peg.js to 0.10.0
mhart Dec 29, 2016
074abe9
Update all dev deps
mhart Dec 29, 2016
efbf1ba
Update all deps inc leveldb/levelup/etc
mhart Dec 29, 2016
86cf869
1.1.0
mhart Dec 29, 2016
e41ee7e
Allow SIGINT to exit if we're PID 1 (as in Docker)
mhart Feb 5, 2017
2d41ab1
1.1.1
mhart Feb 5, 2017
0eb4fff
Do not reuse item var in index insertion. Fixes #72
mhart Feb 28, 2017
862127b
1.1.2
mhart Feb 28, 2017
5c013d0
Don't supply location for memdown
mhart Mar 1, 2017
7aa897c
1.2.0
mhart Mar 1, 2017
61ca991
update and introduce trireme
Nov 6, 2017
ea40c88
jdbcdown
Nov 6, 2017
57a8206
optional jdbc / leveldown
Nov 6, 2017
219401c
some more tweaks
Nov 6, 2017
9b623bf
merge with latest mhart changes
Nov 6, 2017
78b8ffd
upgrade
Nov 8, 2017
95d8a0c
support multiple tables
Nov 8, 2017
3d244eb
optional leveldown
Nov 8, 2017
ab0d4bb
missing dependencies
Nov 8, 2017
5191b76
add inherits dependency
Nov 12, 2017
2e8aca7
Upgrade dynalite to levelup v2
mervyn2017 Nov 12, 2017
43a047a
Upgrade dynalite to levelup v2
mervyn2017 Nov 12, 2017
b1d7e53
pass table to iterator
Nov 13, 2017
cb4e785
fix tableName
Nov 13, 2017
a80b1db
fix wrong args count
Nov 13, 2017
8fd93d3
better logging
Nov 14, 2017
ef375a6
minor fixes
davidlevanon Nov 22, 2017
14c8719
some ops
davidlevanon Nov 28, 2017
7dc275b
empty settings.gradle
davidlevanon Nov 28, 2017
e10c129
add run.sh
davidlevanon Nov 28, 2017
81e270e
Fix run
davidlevanon Nov 28, 2017
8f1a7e7
dolast
davidlevanon Nov 28, 2017
e58cf72
Merge pull request #3 from takipi/feature/dynalite-java-jdbc-i/trirem…
davidlevanon Nov 29, 2017
73ffb20
Merge pull request #4 from takipi/feature/8847/upgrade-dynalite-to-le…
davidlevanon Nov 30, 2017
e3578ed
merge from master
davidlevanon Dec 3, 2017
d6d3d78
Merge pull request #2 from takipi/feature/dynalite-java-jdbc
davidlevanon Dec 3, 2017
af7af88
add packages lock file
davidlevanon Dec 31, 2017
01d3142
Merge pull request #5 from takipi/feature/add-packages-lock-file
davidlevanon Dec 31, 2017
1146604
add stack trace to errors
davidlevanon Jan 17, 2018
f9f1ac2
Merge pull request #6 from takipi/feature/print-stacktrace-on-error
davidlevanon Jan 17, 2018
d1bfb3e
fix iterator limit
Jan 17, 2018
ba427d6
add stack trace to the log
davidlevanon Jan 18, 2018
0d2f841
Merge pull request #7 from takipi/feature/fix-iterator-limit
davidlevanon Jan 18, 2018
ab08e6f
split tables
davidlevanon May 10, 2018
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
4 changes: 4 additions & 0 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ if (argv.help) {
].join('\n'))
}

// If we're PID 1, eg in a docker container, SIGINT won't end the process as usual
if (process.pid == 1) process.on('SIGINT', process.exit)

process.on('uncaughtException', function (exception) {
console.log("an Uncaught Exception occurred");
console.log(exception);
console.log(exception.stack);
process.exit(125);
});

Expand Down
Loading