HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hans_castorp

721 karmajoined 12 anni fa

Submissions

Commodore 64 Basic for PostgreSQL

thombrown.blogspot.com
72 points·by hans_castorp·8 giorni fa·11 comments

comments

hans_castorp
·ieri·discuss
Their license only disallows publishing the result of a benchmark

But you were always allowed to run your own benchmarks internally.

Back then, you could have installed 10gR1 and 10gR2 and compare the sort performance on identical data sets and queries.
hans_castorp
·l’altro ieri·discuss
> Maps and satnav require a web connection.

No they don't require a network at all. The only drawback if there is no network is that the initial finding of the position takes longer. And maps can be downloaded so that they are available offline.

GPS receiver have been working without a "web connection" for ages (e.g. Garmins outdoor devices).

I use my smartphone in "airplane" mode but GPS enabled when hiking. No problems whatsoever.
hans_castorp
·2 mesi fa·discuss
A side note on pgBackRest: PGX created a fork and announced to maintain it under the name pgxbackup:

https://thebuild.com/blog/2026/05/01/pgxbackup-continuity-su...
hans_castorp
·3 mesi fa·discuss
German citizen as well.

So with a Jolla phone and Linux laptop, I am left in the cold.
hans_castorp
·3 mesi fa·discuss
> If you want something that is more like actual recursion (I.e., depth-first), Oracle has CONNECT BY which does not require the same kind of tracking. It also comes with extra features to help with cycle detection, stack depth reflection, etc.

All that is supported with CTEs as well. And both Postgres and Oracle support the SQL standard for these things.

You can't choose between breadth first/depth first using CONNECT BY in Oracle. Oracle's manual even states that CTE are more powerful than CONNECT BY
hans_castorp
·4 mesi fa·discuss
Ah, didn't see the caching part.

Plans for prepared statements are cached though.
hans_castorp
·4 mesi fa·discuss
> and it has no way to serialize a query plan to some form that can be shared between processes

https://www.postgresql.org/docs/current/parallel-query.html

"PostgreSQL can devise query plans that can leverage multiple CPUs in order to answer queries faster."
hans_castorp
·5 mesi fa·discuss
This is simply not true.

Some people are investigated because they spread lies, insults and threats. Things that would be investigated (and punished) as well, if done "off line".

The freedom of speech does not mean "freedom to harass, threat or insult people".

The oppression of free speech seems to be happening much more in the USA, where you are not allowed to criticize the politics of the ruling party any more.
hans_castorp
·6 mesi fa·discuss
Postgres does index de-duplication. So it's likely that even if you change the strings to enums, the index won't be that much smaller.

> Furthermore, why have two indexes with the same leading field (status)?

That indeed is a valid question.
hans_castorp
·6 mesi fa·discuss
Can we please stop calling it "sideloading"? It's simply "installing" software on hardware that I own, and that I should have full control over.
hans_castorp
·6 mesi fa·discuss
No relational database implements syntax highlighting. The tools you use to write and execute SQL queries implement that.
hans_castorp
·6 mesi fa·discuss
Or use a hand as a 5-bit integer, then you can count to 31 :)
hans_castorp
·6 mesi fa·discuss
I was going to refer to the new Jolla Phone, but then I realized that it doesn't have a headphone jack.
hans_castorp
·6 mesi fa·discuss
It does if you look into the README for Firefox

https://github.com/corbindavenport/just-the-browser/tree/mai...
hans_castorp
·6 mesi fa·discuss
Graphene only runs on Pixel phones
hans_castorp
·6 mesi fa·discuss
So what's his "Drill, baby, drill" about? He thinks renewable energy is the something sent by the anti-christ. The only energy source he accepts is burning fossil fuels or nuclear power.
hans_castorp
·6 mesi fa·discuss
The convicted felon in the White House doesn't give a shit about drug criminals - he just pardoned one. He is after Venezuela's oil.
hans_castorp
·7 mesi fa·discuss
Would be cool if that could be integrated into Postgres :)
hans_castorp
·7 mesi fa·discuss
With the latest Postgres version (>= 18) you do NOT need a plugin
hans_castorp
·7 mesi fa·discuss
I have seen a lot of people sort by (generated) integer values to return the rows "in creation order" assuming that sorting by an integer is somehow magically faster than sorting by a proper timestamp value (which give a more robust "creation order" sorting than a generated integer value).