-
Notifications
You must be signed in to change notification settings - Fork 0
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
Summary **AND** Description to App DB #331
Comments
@dmfalke, if you want to tackle the client change, it isn't blocked by anything on the backend, that can go out ahead of time or whenever. The only issue with it happening after the service change is the UX for when a user gets a 4xx error for the summary being too long. |
Is the length of description unbounded? |
Yes, Maybe we could have some sanity check limit in place though? 🤔 Like, is there a use case for more than 1M of text for example? |
We should probably only do this if we know we want to 🙂. Maybe something to consider as user datasets become more central. |
PR for VDI based changes #335 |
@steve-fischer-200 did we update the summaries/descriptions for existing datasets in the app dbs? I remember some work being done on this but I don't remember if it was finished. |
@dmfalke have the client changes been made for this already? |
Nope. I have a draft PR that I haven't looked at in a while. I can resurrect it, if needed. |
IDK what the priority on it is/was, I'm pretty sure the backend change is done and in on this already and was wondering if this ticket should be closed. Maybe the client handling of the response 422 error is good enough? |
Problems
Presently:
description
column in the App db is limited to 4k characters.Proposal
a. change the type of the
description
column toCLOB
through some series of changesb. add a new
summary
column typed asVARCHAR2(4000)
Concerns
Followup
The text was updated successfully, but these errors were encountered: