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

Add verbose feature to favorite_query command #100

Open
wants to merge 1 commit into
base: master
from

Conversation

@zzl0
Copy link
Contributor

@zzl0 zzl0 commented Oct 9, 2020

Description

Add verbose feature to favorite_query command.

  • \f query will not show the full SQL.
  • \f+ query will show the full SQL.
playground/test.db> \f simple
+---------+-----+
| one     | two |
+---------+-----+
| hello!  | 10  |
| goodbye | 20  |
+---------+-----+

playground/test.db> \f+ simple
> select * from tbl1
+---------+-----+
| one     | two |
+---------+-----+
| hello!  | 10  |
| goodbye | 20  |
+---------+-----+

Related issue: #99

Checklist

  • I've added this contribution to the changelog.md file.
@zzl0 zzl0 force-pushed the zzl0:favorite branch from 683667d to bb0f9c4 Oct 9, 2020
@codecov-io
Copy link

@codecov-io codecov-io commented Oct 9, 2020

Codecov Report

Merging #100 into master will increase coverage by 0.01%.
The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #100      +/-   ##
==========================================
+ Coverage   62.36%   62.38%   +0.01%     
==========================================
  Files          23       23              
  Lines        1937     1938       +1     
==========================================
+ Hits         1208     1209       +1     
  Misses        729      729              
Impacted Files Coverage Δ
litecli/packages/special/iocommands.py 50.78% <100.00%> (+0.19%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 11c87db...bb0f9c4. Read the comment docs.

@zzl0 zzl0 requested a review from amjith Oct 9, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked issues

Successfully merging this pull request may close these issues.

None yet

2 participants
You can’t perform that action at this time.