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

Ignore an undefined column in --column-names when execute ordering #2

Closed
kazuki43zoo opened this issue Dec 9, 2021 · 0 comments
Closed

Comments

@kazuki43zoo
Copy link
Owner

--command=ordering-column --column-names=b,a,c,d

Pattern 1

Specify column name that not include header names in --column-names (d in this case)

a,b,c
value1,value2,value3

Current behavior

Skip ordering.

Support behavior by this issue

Can order columns.

b,a,c
value2,value1,value3

Pattern 2

all columns include in --column-names

a,b,c,d
value1,value2,value3,value4

Current behavior

Can order columns.

b,a,c,d
value2,value1,value3,value4

Support behavior by this issue

No changes (= Keep current behavior)

Pattern 3

exists only in header names (e in this case)

a,b,c,d,e
value1,value2,value3,value4,value5

Current behavior

Skip ordering.

Support behavior by this issue

No changes (= Keep current behavior)

@kazuki43zoo kazuki43zoo changed the title Ignore an unused column when execute ordering Ignore an undefined column in --column-names when execute ordering Dec 9, 2021
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

1 participant