-
Notifications
You must be signed in to change notification settings - Fork 72
new module ts_simple_percentile #1270
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
Changes from 7 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
d55b8f4
Test for group by time.
f06173d
ts_simple_percentile: new module
hmmr 8af3212
`git --local config` doesn't work as expected
hmmr 2c147fe
whitespace cleanup
hmmr 89a3e4b
ta_simple_invdist_funs: test both backends
hmmr 9aa132c
Add the time function to the select clause.
07f2288
support PERCENTILE_DISC, _CONT
hmmr 4ead64e
tests for MODE
hmmr e689e42
ts_simple_invdist_funs: externally verify percentile calculations
hmmr 94bbcc5
rtdev-setup-releases: fix compatibility issues with older git versions
hmmr 659f26f
further simplify and explain what we do git config for
hmmr b0f4b07
Jenkins - update locked-deps for riak_ee-2.3.0nightly20170222
d80cc7c
Merge pull request #1266 from basho/at-group-by-time
eb223d3
Merge branch 'riak_ts-develop' into feature-az-percentile
hmmr 21040da
Merge branch 'develop' into feature-az-percentile
hmmr 958e628
ts_simple_invdist_funs: fix error messages to match updates to riak_kv
hmmr aa4b672
ts_simple_invdist_funs: also test on tables with desc keys
hmmr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,20 +39,16 @@ cd $RT_DEST_DIR | |
| git init | ||
|
|
||
| ## Some versions of git and/or OS require these fields | ||
| HAS_LOCAL=$(git config --local 2>&1 | grep unknown) | ||
| if [ -z "$HAS_LOCAL" ]; then | ||
| git config --local user.name "Riak Test" | ||
| git config --local user.email "[email protected]" | ||
| git config --local core.autocrlf input | ||
| git config --local core.safecrlf false | ||
| git config --local core.filemode true | ||
| fi | ||
| git config --local user.name "Riak Test" | ||
| git config --local user.email "[email protected]" | ||
| git config --local core.autocrlf input | ||
| git config --local core.safecrlf false | ||
| git config --local core.filemode true | ||
|
|
||
| ## this prevents priv/*.so files from being deleted by git clean -fd | ||
| ## (the latter is executed in rtdev-current.sh): | ||
| echo "priv/" >.gitignore | ||
|
|
||
| git add --all --force . | ||
| git commit -a -m "riak_test init" > /dev/null | ||
|
|
||
| echo " - Successfully completed initial git commit of $RT_DEST_DIR" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please revert these changes to this script? It is supposed to work on different versions of git now