-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
sql: allowing add missing tables from json file #66560
Conversation
Thank you for contributing to CockroachDB. Please ensure you have followed the guidelines for creating a PR. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is otan. |
ad6137e
to
5e4736e
Compare
Thank you for updating your pull request. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is otan. |
5e4736e
to
e4f9838
Compare
Previously, we could only add missing tables on information_schema or pg_catalog from dump json file This was inadequate because sometimes we need to manually decide how columns data types are going to be To address this, this patch adds a flag that allows to specify the json file where to find the missing tables Release note: None
e4f9838
to
6a117a4
Compare
bors r+ |
66560: sql: allowing add missing tables from json file r=RichardJCai a=mnovelodou Previously, we could only add missing tables on information_schema or pg_catalog from dump json file This was inadequate because sometimes we need to manually decide how columns data types are going to be To address this, this patch adds a flag that allows to specify the json file where to find the missing tables Release note: None 67375: roachtest: ensure privileges stay consistent after version upgrades r=rafiss a=RichardJCai roachtest: ensure privileges stay consistent after version upgrades Release note: None Resolves #65011 67548: roachtest: fix typeorm apt-get update r=rail a=RichardJCai Release note: None 67550: authors: add xinhaoz to AUTHORS r=xinhaoz a=xinhaoz Release note: None 67560: authors: add [email protected] to authors. r=rharding6373 a=rharding6373 Release note: None Co-authored-by: MiguelNovelo <[email protected]> Co-authored-by: richardjcai <[email protected]> Co-authored-by: Xin Hao Zhang <[email protected]> Co-authored-by: rharding6373 <[email protected]>
Build failed (retrying...): |
Build succeeded: |
Previously, we could only add missing tables on information_schema or
pg_catalog from dump json file
This was inadequate because sometimes we need to manually decide how
columns data types are going to be
To address this, this patch adds a flag that allows to specify the json
file where to find the missing tables
Release note: None