Live data from Hacker News

Viewing profile — tkejser

tkejser

HN member
Joined
Thu, Feb 05, 2026, 11:21 AM UTC
HN karma
8
Public activity
12 items

About tkejser

No profile information was provided.

Recent public activity

  1. comment
  2. story
  3. story
  4. comment
    Comment #47037439

    That's fair feedback and I shall take that into account in future blogs. Thanks for letting me know - you can stare yourself blind on that stuff

  5. comment
    Comment #47036804

    INFORMATION_SCHEMA is a good start, but it does not get you to full metadata flexibility. The columns you need just aren't there. It is good to have a standard for the metadata - b…

  6. comment
    Comment #47036547

    Merging to PostgreSQL core for something that needs to run on top of a Petabytes of data in the cloud, on Iceberg, with an advanced query planner and a high speed SIMD engine.... A…

  7. comment
    Comment #47034277

    To clarify a point: We store the row count of each operator in the query - not the actual row (that would indeed be madness!). Though we DO have tracing you can control that allow …

  8. comment
    Comment #47033868

    @da_chicken: You can read more about Snowflake ID in the Wiki page linked in the article. The short story: They are bit like UUID in that you can generate them across a system in a…

  9. comment
    Comment #47033848

    Thank you and yes! By making the entire architecture of the database visible via system objects - you allow the user to form a mental model of how the database itself works. Instea…

  10. comment
    Comment #47033754

    There are reasons for not USING. First, you need to be aware of the implicit disambiguration. When you join with USING, you are introducing a hidden column that represents both sid…

  11. comment
    Comment #47033700

    I didn't really write USING in anger until around 10 years ago, and I have been around a long time too. Not all databases support it. But once you start using it (pun) - a lot of n…

  12. comment
    Comment #47033629

    Hi All Original author here (no, I am not an LLM). First, a clarifying point on INFORMATION_SCHEMA. In the post I make it clear that this interface is supported by pretty much ever…