-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Range operator for Filter #939
Conversation
Awesome @schdub. 😁 @MKleusberg You ok to review? |
@justinclift, not sure why its so much commits in PR. How to remove merge commits? |
@schdub This should work. I think. 😄
|
Either way, not to worry. We can squash the commits into a single one when we merge it. 😄 |
@justinclift I thought to do so, but it didnt happened. How am I going to create a second PR? |
The way I personally do things, is to keep my master branch in sync with the sqlitebrowser/sqlitebrowser master branch. Then, when I want to create a PR I make a new branch from that and do the commits there. Your repo seems a bit messy 😁, so lets try a different approach. First, create a totally new branch, then we can get it in sync with the upstream (sqlitebrowser) master branch. After that, add your patch to it then push it to a new PR. So:
Note - This is a cheating approach, but it works 😁
In theory, number 4 should create a new "temp_master" branch in your repo on GitHub, with just that single commit added on top of the main "master" branch. If that works, then you should be able to create a new PR from it. Once that's done, I can show you how to rewind your PR here (#939) so it doesn't include that last commit. 😄 |
Heh Heh Heh, just noticed you have figured it out already. So, the way to remove the last commit in this PR is:
In theory 😄, that should work. |
@justinclift added to bookmarks. Thank you so much. |
You're welcome. 😄 |
Thanks @schdub! 😃 Looks like you have put a lot of thought into this already. I'll have a closer look tomorrow or the day after tomorrow but I don't expect to find any problems 😃 |
Looks good! Thank you for adding this :D |
Support of operator 'BETWEEN'. For example for column with filter '400~500' will be generated WHERE statement 'BETWEEN 400 AND 500'.
Example of wrong filters:
#935