Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:123236 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 3AA041A009C for ; Tue, 30 Apr 2024 12:42:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1714480980; bh=9vGrdlKr2pjtx29tddihSQR/+SdWjgQK8QZgiqcKi34=; h=From:Subject:Date:References:Cc:In-Reply-To:To:From; b=EZV1QdUvG+Ms0uEfiMupIGBJN/oE2UvcFQa9v61KI4cdOHDnBi/kJpPyKXfX3pWJD D7eyh4SZerxHtWbxCf66OGI/VNbgW8NT3x9VNBGKMieKcJ010KtKX652gPw2/vkQWW 2eXAMxyRUyOIJN97+KFvq5Eh/uCQWblRfZ8xz6xgwIS25kFgd3chkf9LCJJwa4tkZv /IKhgfdeYKBpgbd60K06ohTG3hXolOM1ZixNJeEvCOHLxlRdequHxiRrUYhj8oSlnN dzl69QqZc1g6xl8qYmACBcXaQtg1gfGWyGI+pMWd8z112RIXEe3q4vFaSGdV2yHuPF zbAAIYILRT9xQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id B8B7418005F for ; Tue, 30 Apr 2024 12:42:59 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,DMARC_PASS, SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from mail.sakiot.com (mail.sakiot.com [160.16.227.216]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Tue, 30 Apr 2024 12:42:59 +0000 (UTC) Received: from smtpclient.apple (unknown [117.55.37.250]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by mail.sakiot.com (Postfix) with ESMTPSA id DEEAE401FD; Tue, 30 Apr 2024 21:42:12 +0900 (JST) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net Mime-Version: 1.0 (1.0) Subject: Re: [PHP-DEV] PDO subclass names Date: Tue, 30 Apr 2024 21:41:58 +0900 Message-ID: References: Cc: Matteo Beccati , internals@lists.php.net In-Reply-To: To: Arvids Godjuks X-Mailer: iPhone Mail (21E236) From: saki@sakiot.com (Saki Takamachi) Hi Arv=C4=ABds, > I wasn't proposing rolling a separate driver or anything like that, just a= n alias that would reserve a namespace for MariaDB and if there's ever a nee= d to actually roll the driver, that alias be replaced with actual driver. > The thing is at this point MySQL and MariaDB have a different set of addit= ional capabilities that are not compatible between the two. Doctrine, at thi= s point, actually makes a distinction between MariaDB and MySQL - those are c= onsidered different databases. > This would allow people to use MariaDB and MySQL-specific functionality by= using the respective driver namespace and remove any confusion about if thi= s works with both or only one of them. >=20 > I know it seems to be out of scope, but this deals with PDO subclass names= and this seems to be a thing to consider here. Sure, we can have a separate= RFC about it, but I think this is the right moment to handle this question.= It's a very interesting subject, but off-topic for this thread. The purpose o= f this thread is to make a correction based on the Namespace RFC, since the R= FC regarding namespaces and the RFC regarding PDO subclasses are in conflict= with each other. That is, the PDO subclass RFC was passed in violation of the namespace RFC, a= nd we are proposing the appropriate fix for it. (However, this is a very grey area. The Namespaces RFC "recommends" the use o= f namespaces, rather than mandating it.) Personally, I believe this fix does not require a new RFC. Regards, Saki=