Viewing profile — yipenghuang
yipenghuang
HN member- Joined
- Thu, Nov 23, 2017, 12:26 PM UTC
- HN karma
- 6
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About yipenghuang
No profile information was provided.
Recent public activity
-
comment
Comment #15764977
A sequential scan could also be faster if the join selectivity is poor. As an extreme example say if every id in event_type appeared in prop_keys for a given app. So scanning the i…
-
comment
Comment #15764616
The time complexity for sequential scan takes O(r), because every row must be read once. Of course rows are made up of columns so you can also specify it as O(rc) where c is the av…