You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, behavior for non-UTF-8 strings is undefined; some providers might error out, others might replace non-UTF-8 characters with unicode.ReplacementChar, etc.
Perhaps we should have the concrete type check for valid UTF-8 strings so we can consistently return an error.
The text was updated successfully, but these errors were encountered:
Per https://github.com/google/go-cloud/blob/master/internal/docs/design.md#strings, Go CDK supports all UTF-8 strings, and drivers are required to do escaping if needed.
Currently, behavior for non-UTF-8 strings is undefined; some providers might error out, others might replace non-UTF-8 characters with
unicode.ReplacementChar
, etc.Perhaps we should have the concrete type check for valid UTF-8 strings so we can consistently return an error.
The text was updated successfully, but these errors were encountered: