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 1semV1-00BtxJ-KL for pgsql-general@arkaria.postgresql.org; Fri, 16 Aug 2024 02:15:31 +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 1semV0-002YAD-5J for pgsql-general@arkaria.postgresql.org; Fri, 16 Aug 2024 02:15:30 +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 1semUz-002YA5-Pe for pgsql-general@lists.postgresql.org; Fri, 16 Aug 2024 02:15:29 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1semUx-004x7R-3C for pgsql-general@lists.postgresql.org; Fri, 16 Aug 2024 02:15:28 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 47G2FNbw660367; Thu, 15 Aug 2024 22:15:23 -0400 From: Tom Lane To: Vivek Gadge cc: pgsql-general@lists.postgresql.org Subject: Re: PostgreSQL Upgrade Issue - Undefined Symbol Error In-reply-to: References: Comments: In-reply-to Vivek Gadge message dated "Thu, 15 Aug 2024 16:33:22 +0530" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <660365.1723774523.1@sss.pgh.pa.us> Date: Thu, 15 Aug 2024 22:15:23 -0400 Message-ID: <660366.1723774523@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Vivek Gadge writes: > I am encountering an error after completion of PostgreSQL upgradation from > version 13.8 to 15.6. Trying to describe a single table, I am receiving an > error. > psql: symbol lookup error: psql: undefined symbol: PQmblenBounded This indicates that your psql executable is linking to an old version of libpq.so. (Running "ldd" on the psql file should confirm that.) You may have a problem with the library search path being used by the dynamic loader. regards, tom lane