Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r1Edx-00A8nO-UM for pgsql-hackers@arkaria.postgresql.org; Thu, 09 Nov 2023 23:41:01 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1r1Edw-0004LF-D5 for pgsql-hackers@arkaria.postgresql.org; Thu, 09 Nov 2023 23:41:00 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r1Edw-0004L6-3F for pgsql-hackers@lists.postgresql.org; Thu, 09 Nov 2023 23:41:00 +0000 Received: from momjian.us ([72.94.173.45]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r1Edt-004oXu-7j for pgsql-hackers@postgresql.org; Thu, 09 Nov 2023 23:40:58 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2023062407; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description; bh=bc6Cz6WcE80msleI4gLveTrqb9MGKfmRH7mXdRT/jKE=; b=l/4xi YepIMXl6pBUP8s3f93FkJEBByjYFjUhuC6vvwglkeHb9Yh6xik+bJzHjyZYRYos6CdaZd3y4jW2Jz S77yrB7iU19YGcqSU3BBLMllIMb3bU1Y8V7hX0pxu8S0+2Zk9pU8JQPvQWxZkxmJvU1hg79c0Z+Cb RonZUBYeEb/QaU9A3tVBbZ7qUNRFgW2AcoyOeLhJXgWVhhUSPZu6kZc9s7HwiMu1cUa8B4EEt4d3n TZ6uHu5k1UrGSEjo6/ur3qEv2LL57huEmURcsjo4iFiCC1cTVsfAM77e62+GhRixsFD4+duBpMICk ZlNpYulI2oeUmmHKrsR266xjCWayQ==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1r1Edr-00327s-1S; Thu, 09 Nov 2023 18:40:55 -0500 Date: Thu, 9 Nov 2023 18:40:55 -0500 From: Bruce Momjian To: Tom Lane Cc: Oleg Bartunov , Pgsql Hackers Subject: Re: remove deprecated @@@ operator ? Message-ID: References: <18739.1540153456@sss.pgh.pa.us> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="j9ux/T+jNaRrZcvZ" Content-Disposition: inline In-Reply-To: <18739.1540153456@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --j9ux/T+jNaRrZcvZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Oct 21, 2018 at 04:24:16PM -0400, Tom Lane wrote: > Oleg Bartunov writes: > > The commit 9b5c8d45f62bd3d243a40cc84deb93893f2f5122 is now 10+ years > > old, may be we could remove deprecated @@@ operator ? > > Is it actually causing any problem? AFAICS it's just a couple extra > pg_operator entries, so why not leave it? > > I'd be +1 for removing it from the docs, though ... Done in the attached patch. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --j9ux/T+jNaRrZcvZ Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="oper.diff" diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index d963f0a0a0..e39c815532 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -13124,24 +13124,6 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple - - - tsvector @@@ tsquery - boolean - - - tsquery @@@ tsvector - boolean - - - This is a deprecated synonym for @@. - - - to_tsvector('fat cats ate rats') @@@ to_tsquery('cat & rat') - t - - - tsvector || tsvector diff --git a/doc/src/sgml/gin.sgml b/doc/src/sgml/gin.sgml index d68d12d515..be02966e77 100644 --- a/doc/src/sgml/gin.sgml +++ b/doc/src/sgml/gin.sgml @@ -129,9 +129,6 @@ tsvector_ops @@ (tsvector,tsquery) - - @@@ (tsvector,tsquery) - --j9ux/T+jNaRrZcvZ--