Rafal Piotrowski

Results 10 comments of Rafal Piotrowski

README mentions `CaseClass1Rep` which is not explained (and it is specific for kebs). IMHO, it should be described and explained how it is used in kebs.

If we would like to use GitHub Pages for it, we can use: * [mdoc](https://scalameta.org/mdoc/) - that can process markdown files into markdown files, benefits: * it has ability to...

I'm having the same issue in PostgreSQL (in 3.5.0 as well as in 3.6.0-RC3) :disappointed:

As a workaround you can make join(s) and distinct (if needed). The query is different than the desired one, but it should do the same job.

Query plans looks the same for `IN (...)` and `EXISTS (...)` versions of this query. IMHO it is better to have simpler implementation, remove `Query[T].contains` to not produce possible confusion...

Any "news" regarding this issue?

Yes, That's quite odd, but I already know the answer. The column name in database is 'ID', not 'id'. Database is set to be case-insensitive to column names, but somehow...

There is one more thing considering this script. I needed to add invocation of establish_connection method before anonymization part. Without it I get still connection errors. Is it the desired...

Still an issue, I found it for a different ticker: ```bash curl "https://api.polygon.io/v2/aggs/ticker/X:SUSHIUSD/range/1/second/1627369825000/1627370725000?adjusted=true&sort=desc&limit=1&apiKey=${POLYGON_API_KEY}" ``` ```json {"ticker":"X:SUSHIUSD","queryCount":1,"resultsCount":1,"adjusted":true,"results":[{"v":0,"vw":NaN,"o":7.07,"c":7.07,"h":7.07,"l":7.07,"t":1627370700000,"n":1}],"status":"OK","request_id":"15f662dd8e24f6e1f0d45de77c03df09","count":1,"next_url":"https://api.polygon.io/v2/aggs/ticker/X:SUSHIUSD/range/1/second/1627369825000/1627370699999?cursor=bGltaXQ9MSZzb3J0PWRlc2M"} ```