Navigation Menu

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

[BUG] Create partition should be failed if partition tag existed #399

Closed
del-zhenwu opened this issue Nov 18, 2019 · 1 comment
Closed
Assignees
Labels
kind/bug Issues or changes related a bug
Projects

Comments

@del-zhenwu
Copy link
Contributor

Describe the bug
Partition A has been created, with tag "a", then create another partition with the same tag name "a", create still success

Steps/Code to reproduce behavior

        partition_name = gen_unique_str()
        status = connect.create_partition(table, partition_name, tag)
        assert status.OK()
        new_partition_name = gen_unique_str()
        status = connect.create_partition(table, new_partition_name, tag)
        assert not status.OK()

Expected behavior
create partition failed

Environment details
0.6.0

Screenshots

Additional context

@cydrain cydrain added this to To do in v0.6.0 via automation Nov 19, 2019
@yhmo yhmo added the kind/bug Issues or changes related a bug label Nov 20, 2019
@yhmo
Copy link
Contributor

yhmo commented Nov 20, 2019

Fixed by PR426

@yhmo yhmo closed this as completed Nov 20, 2019
v0.6.0 automation moved this from To do to Done Nov 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Issues or changes related a bug
Projects
No open projects
v0.6.0
  
Done
Development

No branches or pull requests

2 participants