digitalcourage.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Diese Instanz wird betrieben von Digitalcourage e.V. für die Allgemeinheit. Damit wir das nachhaltig tun können, erheben wir einen jährlichen Vorausbeitrag von 1€/Monat per SEPA-Lastschrifteinzug.

Server stats:

819
active users

Had an interesting bug involving #postgresql today.

Identifiers (table names, column names, other named things) can only be 63 characters long. We had some materialized views that were longer, some of which shared the same prefix. So like: "calculations_for_xxxx" and "calculations_for_yyyy" but much longer. Still unique though.

We didn't know this and changed the name of the view. "What could go wrong?" we thought.

@sjstoelting I listed column names and other things in the original post 🙂

We saw that we could recompile and raise the limit, but we didn’t want to do that. It’s a bunch of work and we didn’t want to run into edge cases.

I didn’t know the limits for other RDBMS. That’s interesting, thanks!