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

Omit part of the query result if the result is too long #941

Closed
acquamarin opened this issue Nov 8, 2022 · 0 comments
Closed

Omit part of the query result if the result is too long #941

acquamarin opened this issue Nov 8, 2022 · 0 comments
Assignees

Comments

@acquamarin
Copy link
Collaborator

If the query result is too long, we are outputing it in multiple lines:

graphflowdb> match (o:org1) retURN lpad("123", 100, ">")
>> Number of output tuples: 4
>> Compiling time: 0.93ms
>> Executing time: 0.47ms
--------------------------------------------------------------------------------------------------------
| >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>123 |
--------------------------------------------------------------------------------------------------------
| >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>123 |
--------------------------------------------------------------------------------------------------------
| >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>123 |
--------------------------------------------------------------------------------------------------------
| >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>123 |
--------------------------------------------------------------------------------------------------------

duckdb:

D select lpad('123', 100, '>');
┌────────────────────────────────────────────────────────────────────────────────────┐
│                               lpad('123', 100, '>')                                │
├────────────────────────────────────────────────────────────────────────────────────┤
│ >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>... │
└────────────────────────────────────────────────────────────────────────────────────┘

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants