Tetsuya Morimoto

Results 8 issues of Tetsuya Morimoto

I implemented _GROUP BY_ clause referring _ORDER BY_ clause. To be useful with GroupBy, I think we need to give the built in function in sql with columns. genmai already...

According to [RSS 2.0 Specification](http://cyber.law.harvard.edu/rss/rss.html#ltcategorygtSubelementOfLtitemgt), _category_ item may include multiple values. ``` You may include as many category elements as you need to, for different domains, and to have an...

I implemented `export_balances` command to output balances from addresses in blocks/transactions. There are three addresses as below. * block.miner * transaction.from_address * transaction.to_address The `export_balances` command uses [eth_getbalance](https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getbalance) to get...

According to https://datatracker.ietf.org/doc/html/rfc7643#section-10.2.1, there is no `param` in the type definition. > type > The entity type, which is either "schemas" or "api".

I can run with dev mode, but I cannot run with preview (production) mode. Is there any workaround? ```bash $ make preview ... building go binary... run test_program 2023/11/16 11:31:37...

mapslice-json cannot parse below JSON data. ```json {"a":[{"s":"test","i":3,"b":true},{"b":false,"f":3.14}]} ```

I found a DATA RACE error when I wrote some test code using mapslice-json. You can reproduce quickly by invoking a test function included in this PR. ``` $ go...

I am trying to implement the delta query to track user changes. For example, I changed `First name` and `Last name` to empty on https://entra.microsoft.com/ . ![スクリーンショット 2024-06-06 14 21...