Announcement

Collapse
No announcement yet.

PostgreSQL 12 Due Out Tomorrow With Better Performance

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • PostgreSQL 12 Due Out Tomorrow With Better Performance

    Phoronix: PostgreSQL 12 Due Out Tomorrow With Better Performance

    Tomorrow is when PostgreSQL 12.0 should meet the world for this popular open-source SQL database server...

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    Is it possible to include a comparison with the latest versions of MariaDB, Percona and MySQL too?

    Comment


    • #3
      Originally posted by nkukard View Post
      Is it possible to include a comparison with the latest versions of MariaDB, Percona and MySQL too?
      Unlikely unless someone submits test profiles for Percona and MySQL. Plus my current MariaDB test profile is situated differently from my PostgreSQL test profile, so not a direct comparison, and too much time/resources involved unless there was enough tips to cover costs.
      Michael Larabel
      https://www.michaellarabel.com/

      Comment


      • #4
        It's been tagged in git, I'm already testing it on my gitlab instance

        Comment


        • #5
          PostgreSQL really is very full of features. Feature-wise it is really good.
          I wish it has a real license, instead of a vanity license though, and a better more sane userspace (the user space is inconsistent, unpredictable and confusing with lots of scattered binaries), and good administration utilities.

          Comment


          • #6
            Originally posted by uid313 View Post
            PostgreSQL really is very full of features. Feature-wise it is really good.
            I wish it has a real license, instead of a vanity license though, and a better more sane userspace (the user space is inconsistent, unpredictable and confusing with lots of scattered binaries), and good administration utilities.
            How is the PostgreSQL license not a real license? The license lets you do anything you want with it so long as you don't hold U of C accountable. It's extremely short and readable:


            What specifically is "inconsistent" or "unpredictable" about interacting with PostgreSQL?


            Comment


            • #7
              Originally posted by alcalde View Post

              How is the PostgreSQL license not a real license? The license lets you do anything you want with it so long as you don't hold U of C accountable. It's extremely short and readable:


              What specifically is "inconsistent" or "unpredictable" about interacting with PostgreSQL?
              Possibly he calls the historical accidents (that are "createdb", "createuser" and so on) inconsistent, comparing with newer utilities in PostgreSQL that are prefixed with "pg_". And yes, it's actually inconsistent but they are long set in stone. Historical accidents happen that seemed like a good idea at the time, like the "creat" function in C. You can't rename it to "create" now.

              The original utility names were already there in Postgres95 (this was the version in 1995 that replaced the query language POSTQUEL with standard SQL) and I suspect even before that when the project was still called POSTGRES, in capitals, no SQL, those utilities existed. You can't change a habit with over 30 years of history. It's called tradition at this point and newcomers should just accept the way it is without calling names.
              Last edited by zboszor; 03 October 2019, 01:12 AM.

              Comment


              • #8
                Originally posted by alcalde View Post

                How is the PostgreSQL license not a real license? The license lets you do anything you want with it so long as you don't hold U of C accountable. It's extremely short and readable:


                What specifically is "inconsistent" or "unpredictable" about interacting with PostgreSQL?
                Because it is a license created by PostgreSQL instead of using an already existing widely spread, common license that states the same thing, such as the BSD License, ISC license or the MIT license.

                Some utilities are prefixed with pg_ while others are not. It is confusing because "createuser" sounds like something that adds a user to the system, not PostgreSQL. It is confusing because if I have MongoDB and PostgreSQL installed, then how am I supposed to know which database "createdb" creates a database for?

                Originally posted by zboszor View Post

                Possibly he calls the historical accidents (that are "createdb", "createuser" and so on) inconsistent, comparing with newer utilities in PostgreSQL that are prefixed with "pg_". And yes, it's actually inconsistent but they are long set in stone. Historical accidents happen that seemed like a good idea at the time, like the "creat" function in C. You can't rename it to "create" now.

                The original utility names were already there in Postgres95 (this was the version in 1995 that replaced the query language POSTQUEL with standard SQL) and I suspect even before that when the project was still called POSTGRES, in capitals, no SQL, those utilities existed. You can't change a habit with over 30 years of history. It's called tradition at this point and newcomers should just accept the way it is without calling names.
                Yeah, that. But the tooling is also non-modern with dozens of scattered binaries, compared to tools like dotnet, apt and git. With Git you do all Git-related operations using the "git" tool.

                Comment


                • #9
                  Originally posted by uid313 View Post
                  Yeah, that. But the tooling is also non-modern with dozens of scattered binaries, compared to tools like dotnet, apt and git. With Git you do all Git-related operations using the "git" tool.
                  You can just use "psql" and run the SQL commands that are exposed in those utilities. See, PostgreSQL does have a consistent interface.

                  Comment


                  • #10
                    Originally posted by uid313 View Post
                    Some utilities are prefixed with pg_ while others are not. It is confusing because "createuser" sounds like something that adds a user to the system, not PostgreSQL. It is confusing because if I have MongoDB and PostgreSQL installed, then how am I supposed to know which database "createdb" creates a database for?
                    Fair point.
                    Tho, you could check through commandline where's the binary located at or just try "man createuser" and see what would be written in it's 'man' file.

                    Comment

                    Working...
                    X