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

moveTableToSchema is executed regardless of the input of the user #18

Closed
rodrigo-morales-1 opened this issue Aug 18, 2021 · 1 comment
Closed

Comments

@rodrigo-morales-1
Copy link
Contributor

Regardless of the user inputting any character, the function moveTableToSchema is executed, the only condition is that the schema specified through the --schema-name argument is different than public (see relevant code below)

choice = input("This will drop the {} table. Are you sure [y/n]?".format(table))
if len(choice) > 0 and choice[0].lower() == "y":
handleTable(
table, args.insert_json, args.foreign_keys, args.file, dbConnectionParam
)
else:
six.print_("Cancelled.")
if args.schema_name != "public":
moveTableToSchema(table, args.schema_name, dbConnectionParam)

@rodrigo-morales-1
Copy link
Contributor Author

With #21, moveTableToSchema is no longer needed because all operations are done in the specified schema.

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