Slashdot Mirror


Is MySQL Slowly Turning Closed Source?

mpol writes "Sergei from MariaDB speculated on some changes within MySQL 5.5.27. It seems new testcases aren't included with MySQL any more, which leaves developers depending on it in the cold. 'Does this mean that test cases are no longer open source? Oracle did not reply to my question. But indeed, there is evidence that this guess is true. For example, this commit mail shows that new test cases, indeed, go in this "internal" directory, which is not included in the MySQL source distribution.' On a similar note, updates for the version history on Launchpad are not being updated anymore. What is Oracle's plan here? And is alienating the developer community just not seen as a problem at Oracle?"

13 of 336 comments (clear)

  1. Oracle doesn't care about developer people by Anonymous Coward · · Score: 5, Insightful

    And is alienating the developer community just not seen as a problem at Oracle?

    Pretty much exactly this.

    1. Re:Oracle doesn't care about developer people by kimvette · · Score: 4, Insightful

      Anyone asking this question has obviously never dealt with Oracle.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    2. Re:Oracle doesn't care about developer people by Anonymous Coward · · Score: 5, Insightful

      Indeed. This has been obvious for some time (InnoDB) which is why many needing similar functionality have moved on to PostgreSQL. Of course there so many options these days, and as usual the choice depends on the application.

      Oracle: ZFS, MySQL, VirtualBox, Java...

      And quite frankly ZFS and Java do not integrate well with many Linux distributions. Avoid oracle or face a never ending string of hidden costs.

      I know many X-Sun employees, Oracle is not earning a good reputation with the science and engineering folks. Once their brand dries up like Cisco's is, it will be all down hill from there.

    3. Re:Oracle doesn't care about developer people by Anonymous Coward · · Score: 5, Insightful

      Exactly. Anybody asking this question is obviously not aware of the OpenOffice saga.

    4. Re:Oracle doesn't care about developer people by erroneus · · Score: 5, Insightful

      That's to be expected. The people at Oracle are selling to MBA/Executives who believe the fact that they have heard the brand name and see it everywhere they go means something. It doesn't matter that it's over-priced or that their sales model is not presentative of what they actually deliver, the MBAs see value in expensive things and believe it is worth it. Meanwhile, MySQL had been gaining market share and living in areas where Oracle wants to live. So they buy the product thinking they are buying the real estate it sits on. They know at some level they aren't buying the territory but they think that by boiling the frog, they can somehow get more out of it.

      While Postgres is probably the obvious choice to migrtate into, especially for new projects, I still kind of want to have an M in my LAMP. Stupid, I know, but it's true. I don't want LAPP... bad childhood memories.

      Oracle demonstrated what dumbasses they are with OpenOffice. The community proved there is less value in a name than Oracle want to believe.

      So go ahead, Oracle... buy more names and see what it gets you. In the end we still see everything associated with you as an extension of you and we don't actually LIKE you because of who you are, not what your name is. You'd think with a name like Oracle they would be more insightful than they are.

    5. Re:Oracle doesn't care about developer people by c0lo · · Score: 5, Insightful

      While Postgres is probably the obvious choice to migrtate into, especially for new projects, I still kind of want to have an M in my LAMP. Stupid, I know, but it's true. I don't want LAPP... bad childhood memories.

      Well, MariaDB is still M, is is not?

      --
      Questions raise, answers kill. Raise questions to stay alive.
  2. MariaDB by euxneks · · Score: 5, Insightful

    MariaDB is a drop in replacement for MySQL which was forked a while ago: http://mariadb.org/

    --
    in girum imus nocte et consumimur igni
  3. Re:IMHO... by Anonymous Coward · · Score: 5, Insightful

    You mean, like MariaDB, as mentioned in the summary (hint: 3rd word) ?

  4. Re:MySQL sweet spot by hobarrera · · Score: 4, Insightful

    MySQL is lighter than PostgreSQL.
    SQLite is an embeded database; it's really a different sort of tool altogether.

  5. WHY is still anyone using mysql, when there is PG? by someones · · Score: 5, Insightful

    WHY is still anyone using mysql, when there is Postgresql?

  6. Re:Just use Postgresql by fisted · · Score: 4, Insightful

    I've tried numerous times to drive a car, and every time i found it less easy than the motorcycle which i'm used to for 10 years.

    Therefore, from an objective point of view it can be concluded that cars are more difficult to drive than motorcycles.

    Thanks for listening, so where's my +5 Insightful like parent has?

  7. Re:Just use Postgresql by Anonymous Coward · · Score: 5, Insightful

    You are very right. MySQL is like PHP. That's why people shouldn't use both.

    Avoid stuff where you can have bugs like this:
    http://bugs.mysql.com/bug.php?id=31001
    http://pwnhome.wordpress.com/2011/08/22/php-crypt-bug/
    http://me.veekun.com/blog/2012/04/09/php-a-fractal-of-bad-design/

    And watch the MySQL jokers try to fix this:
    http://bugs.mysql.com/bug.php?id=65111
    And somehow cause this:
    http://bugs.mysql.com/bug.php?id=65745

    I'm a crap programmer, but I prefer to use libraries, tools and languages that are less crap than my stuff. That way at least I spend more time dealing with my own incompetence than someone else's.

  8. Re:Just use Postgresql by mlwmohawk · · Score: 4, Insightful

    The database really isn't that important. It only becomes important once a DBA gets their hands on it and starts implementing LOGIC at the database instead of doing the logic in the application and fast, dumb, simple queries at the database.

    That is not true at all. In fact wildly wrong. A good database is the tool you use to manage your data. If your system is properly designed, it is part of your application. A good database will manage concurrency, data integrity, and more. The idea that you move this out into the application geometrically increases complexity, or more likely, is ignored at your peril.

    Just a simple query:
    select * from songs where name like 'love%';
    Assuming you have a non-trivial amount of songs, i.e. a song web site, this query can show a poorly implemented index. Once you start getting into sub-selects and joins, a good database can do quite well, a bad database, i.e. MySQL will fall down.

    People who view the database as nothing but dumb storage usually end up implementing similar features in their code. They won't be as efficient, won't be standard, will cause the data to be processed more than it needs to be, and can't be tested as well as the database's system.

    A good architect will know where and when it makes sense to do something in a database verses the application. Ignoring the capabilities of a database for some idealogical purity is ridiculous.