Nao Yonashiro

Results 19 comments of Nao Yonashiro

benchstat: ``` goos: linux goarch: amd64 pkg: github.com/bodgit/sevenzip cpu: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz │ base.txt │ xz#55.txt │ xz#55_xz#56_sevenzip#95.txt │ │ sec/op │ sec/op vs base │ sec/op...

benchstat: ``` goos: linux goarch: amd64 pkg: github.com/bodgit/sevenzip cpu: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz │ base.txt │ xz#55.txt │ │ sec/op │ sec/op vs base │ LargeLZMA2-8 10.775 ±...

Does this issue occur with the latest version of sqlc? You can test it in the playground: https://play.sqlc.dev/

The TiDB parser does not support the CREATE EVENT statement, which poses an issue (sqlc's MySQL engine relies on the TiDB parser). There is no workaround other than removing or...

Can this be reproduced in the playground: https://play.sqlc.dev/ ?

Can this be reproduced in the playground: https://play.sqlc.dev/ ?

SQLite does not have a DATETIME type, which is why it behaves this way. However, a string should be returned. We need to add the definition of the DATETIME function...

The change itself is simple; you just need to modify `import { BaseClient } from '../../clients';` to `import { BaseClient } from '../../clients/baseClient';`. You can see it here: https://github.com/MrRefactoring/jira.js/blob/0d76aad0ca74b8f135ae1d3306c71a2fcf312613/src/version3/client/version3Client.ts#L1 What...