← Back to context

Comment by IshKebab

2 months ago

There are trivial ways around all of those. `LIMIT 1`, `SELECT .. FROM information_schema...`, etc.

> There are trivial ways around all of those. `LIMIT 1`

LIMIT 1 limits row count. The issue here was columns. Like a giant blob someone might've stored in there.

> `SELECT .. FROM information_schema...`

no such table: information_schema.columns

> etc.

https://news.ycombinator.com/item?id=43181799

  • > no such table: information_schema.columns

    Oh I guess I will try the other very small number of options that it could be.

    > LIMIT 1 limits row count. The issue here was columns. Like a giant blob someone might've stored in there.

    Come on, this is pure nonsense.