-
Notifications
You must be signed in to change notification settings - Fork 244
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
Add a Configuration for Default Schema #523
Comments
Dear reata: In actual production, different SQL statements have different schema name. 在设计中,各个类没有主基类,导致参数无法自由传递。 In the design, each class does not have a main base class, so parameters cannot be passed freely. |
May I ask if there is any multithreading code in the current code repository? |
Current code repository means sqlineage's repository? If yes, then no. 请问current code repository的意思是 sqlineage吗?如果是的话,那是没有的。 |
yes |
在sqllineage没有多进程的测试代码 如果需要的话,我可以写个范例。 |
Let me check the code first, thanks. If we can do it without being invasive, config through LineageRunner is without doubt the better approach. P.S: I like the Google Translate approach, thumb up! Currently we have more contributors who speak English only, so it's important we make sure every discussion is at least readable for them, thanks for your cooperation. If there's any details you'd like to talk, you can also reach me on email. |
Close this issue and move configure through LineageRunner to #536 |
Is your feature request related to a problem? Please describe.
When handling SQL like
SELECT * FROM tab
, sqllineage will assign<default>
as the schema name. It would be user-friendly to be able to set that default value.Describe the solution you'd like
Create a new environment variable as DEFAULT_SCHEMA.
Describe alternatives you've considered
Environment variable makes each process share the same default schema. It would be preferable to config through LineageRunner, but that requires a lot of change. So we'll start with environment variable.
The text was updated successfully, but these errors were encountered: