nがひとつ多い。

えぬなおの技術的なことを書いていくとこ。

2021-01-01から1年間の記事一覧

【SQL】集約関数でまとめるとき論理和が取れるboolor()とかboolor_agg()って便利ね

こんなデータがあります こうする postgresとかだとboolorでできるみたいだけどsnowflakeでもboolor_aggで出来る。 www.fixes.pub こんなデータがあります create temp table test_boolean_agg( id integer, c1 boolean ); insert into test_boolean_agg (id…

【WSL2】WSL2でgitが遅いのをなんとかする

WSLとgit 理由は単純 どうする? デモ WSLとgit WSL2を普段使っているが、大きなプロジェクトになるとgit statusが非常に遅いのがストレスになってきた。 ❯❯❯ time git status git status 0.05s user 2.60s system 44% cpu 6.010 total ❯❯❯ date '+%Y-%m-%dT…