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 TIME format for binary columns #818

Merged
merged 3 commits into from
Jun 12, 2018

Conversation

methane
Copy link
Member

@methane methane commented Jun 12, 2018

fixes #817

Description

Split formatBinaryDateTime and formatBinaryTime

Checklist

  • Code compiles correctly
  • Created tests which fail without the change (if possible)
  • All tests passing
  • Extended the README / documentation, if necessary
  • Added myself / the copyright holder to the AUTHORS file

@methane methane force-pushed the fix-formatBinaryTime branch from ee43fdd to dc3665b Compare June 12, 2018 12:30
@methane methane force-pushed the fix-formatBinaryTime branch from dc3665b to f09c12c Compare June 12, 2018 12:35
@methane methane changed the title [WIP] Fix TIME format for binary columns Fix TIME format for binary columns Jun 12, 2018
@julienschmidt
Copy link
Member

This should definitely have some sort of (regression) test

expect("12:34:56.00", []byte{0, 0, 0, 0, 0, 12, 34, 56}, 11)
expect("24:34:56", []byte{0, 1, 0, 0, 0, 0, 34, 56}, 8)
expect("-99:34:56", []byte{1, 4, 0, 0, 0, 3, 34, 56}, 8)
expect("103079215103:34:56", []byte{0, 255, 255, 255, 255, 23, 34, 56}, 8)
Copy link
Member Author

Choose a reason for hiding this comment

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

These three inputs are regression test.

Copy link
Member

Choose a reason for hiding this comment

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

Oh, sorry. I missed the changes in this file

@julienschmidt julienschmidt added this to the v1.5.0 milestone Jun 12, 2018
@methane methane merged commit 2307b45 into go-sql-driver:master Jun 12, 2018
@methane methane deleted the fix-formatBinaryTime branch June 12, 2018 15:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Over 24h (and less 100h) TIME type SELECT result
2 participants