-
Notifications
You must be signed in to change notification settings - Fork 532
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
[Question][Blueprint] ScopeId field type #8237
Comments
The Changing If you decide to proceed with changing the data type, ensure that all related database fields and queries are updated accordingly to prevent further type mismatch errors. To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Changing A better solution might be to convert the Jira board ID to a string before comparison. Could you also please share the location of the query in question? |
How about replacing the last Final product:
|
@klesh perfect! this does the trick, I will open a PR, meanwhile I found another small issue with the scope config, where the regex fails to save most likely due to the escaping (will open a followup). |
Question: ScopeId as varchar in BlueprintScope causing Jira plugin issues
I'm working on fixing some PostgreSQL-related issues and noticed that the
ScopeId
field in theBlueprintScope
struct is defined as astring
:This is causing errors when configuring the Jira plugin, specifically when
ScopeId
(which is a string) is compared withboard_id
(which is auint64
in the Jira plugin's table)I'm currently working on a workaround that involves checking the database dialect, but a cleaner solution might be to change
ScopeId
touint64
.Before I pursue that route, I wanted to check if there's a specific reason why
ScopeId
is defined asstring
. Is there a plugin or use case that relies onScopeId
being a string? Otherwise we could possibly convert this field type?The text was updated successfully, but these errors were encountered: