-
Notifications
You must be signed in to change notification settings - Fork 695
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
support schema operations #805
Conversation
Also, you can optionally specify the "authorization" parameter when creating schema : val schema = Schema (name = "schema1",
authorization = "root")
SchemaUtils.createSchema(schema)
//To drop
SchemaUtils.dropSchema(schema ) |
Hi, thank you for a PR. I have some ideas and suggestions. If you could not/won't use slack I will share my thoughts there |
Great 🎉 I already inspired it from your last suggestions. And tell me if you have any change requests or improvements 😉
I'm not registred but it would be great to do that. Do I need to have an email (@jetbrains.com) to register to kotlin slack? (I'm not very familiar with slack 😄) . I tried to join kotlinlang workspace but it tells me to use @jetbrains.com mail to register |
I sent you an invitation. |
Closed, should be done with another design. |
Fixes #145 , #254 and #803
This PR is to support shemas creation,cross-joins from different schemas and make selects from different schemas. also make all operations(selects, drops and updates) with specific schema . Some examples of use
This PR could be a first step to resolve - #795