Skip to content
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

Merged
merged 2 commits into from
Jul 19, 2019
Merged

Fix int64 handling #19

merged 2 commits into from
Jul 19, 2019

Conversation

vvakame
Copy link
Member

@vvakame vvakame commented Jul 18, 2019

closes #17
refs #18

メ社の内部利用で問題になっているやつ(該当リポジトリからリンクさせておきます

JSONで数値周りの仕様というのは決まっていないんだけど、JavaScript環境で動作する必要はあると思っています。
SpannerのドキュメントとJSONの仕様とJSON Schemaの仕様を突き合わせた結果、このPRの通りの変更を加えるのが妥当そうだな…という気持ちです。

インラインでコメントを入れていきます。

@@ -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
Copy link
Member Author

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":
Copy link
Member Author

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")
Copy link
Member Author

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であることを主張してみる。

@vvakame
Copy link
Member Author

vvakame commented Jul 18, 2019

あれーCIオチてるなと思ったらmasterすら落ちとるやんけ…!

Copy link
Member

@tenntenn tenntenn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

なるほど。ありがとうございます。

@vvakame vvakame merged commit fbb3ad1 into master Jul 19, 2019
@vvakame vvakame deleted the fix-int64 branch July 19, 2019 06:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

int64データをstringにしていない
2 participants