-
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
Fix int64 handling #19
Conversation
@@ -36,13 +35,20 @@ func (c *JSONColumn) marshal(t *gspanner.Type, v *structpb.Value) (interface{}, | |||
// See: https://godoc.org/google.golang.org/genproto/googleapis/spanner/v1#TypeCode | |||
switch t.Code { | |||
case gspanner.TypeCode_INT64: | |||
// JavaScript's integral part is 53bit. see Number.MAX_SAFE_INTEGER. | |||
return v.GetStringValue(), nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Goのint64だとJSで処理可能な範囲を超えて数値が勝手に丸められたりするので文字列で送る必要がある。
値によってエンコード方法を変えると辛いと思うので一括で文字列に。
if err != nil { | ||
return nil, err | ||
switch s { | ||
case "NaN", "Infinity", "-Infinity": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この辺はドキュメントに従って書いてあるとおりにコード書いた感じ(実環境での動作確認はしていない
case gspanner.TypeCode_INT64, gspanner.TypeCode_FLOAT64: | ||
case gspanner.TypeCode_INT64: | ||
o.Set("type", "string") | ||
o.Set("format", "int64") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stringと区別はしたいはずなので悩みつつこうした。
https://swagger.io/docs/specification/data-models/data-types/ を参考に、typeはstringにしformatでint64であることを主張してみる。
あれーCIオチてるなと思ったらmasterすら落ちとるやんけ…! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
なるほど。ありがとうございます。
closes #17
refs #18
メ社の内部利用で問題になっているやつ(該当リポジトリからリンクさせておきます
JSONで数値周りの仕様というのは決まっていないんだけど、JavaScript環境で動作する必要はあると思っています。
SpannerのドキュメントとJSONの仕様とJSON Schemaの仕様を突き合わせた結果、このPRの通りの変更を加えるのが妥当そうだな…という気持ちです。
インラインでコメントを入れていきます。