We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Schema and data migration succeeds for source=postgresql and target dialect=postgresql for fields with the name order.
order
Schema and data migration fails for source=postgresql and target dialect=postgresql when there is a field named order.
Field names for postgresql should be surrounded by ".
"
pg_dump -U <user> -h <host> -p <port> <db_name> -n public --format=p > pg_dump.txt
harbourbridge schema-and-data -source=postgresql -target-profile="dialect=postgresql" < pg_dump.txt
can't migrate database: can't create/update database: can't create database: can't build UpdateDatabaseDdlRequest: rpc error: code = InvalidArgument desc = [ERROR] syntax error at or near \"order\"; failed to parse the DDL statements."}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Schema and data migration succeeds for source=postgresql and target dialect=postgresql for fields with the name
order
.Actual Behavior
Schema and data migration fails for source=postgresql and target dialect=postgresql when there is a field named
order
.Guess
Field names for postgresql should be surrounded by
"
.Steps to Reproduce the Problem
order
in a cloud SQL postgresql database.pg_dump -U <user> -h <host> -p <port> <db_name> -n public --format=p > pg_dump.txt
.harbourbridge schema-and-data -source=postgresql -target-profile="dialect=postgresql" < pg_dump.txt
.Specifications
The text was updated successfully, but these errors were encountered: