PostgreSQL 14 contains many new features and enhancements, including:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Stored procedures can now return data via OUT parameters.
The SQL-standard SEARCHandCYCLEoptionsfor common table expressions have been implemented.
Subscripting can now be applied toany data typefor which it is a useful notation, notonly arrays. In this release, the jsonband hstore types have gained subscripting operators.
Range types have been extended by adding multiranges, allowing representation of noncontiguous data ranges.
Numerous performance improvements have been made for parallel queries, heavily-concurrent workloads, partitioned tables, logical replication, and vacuuming.
B-tree index updates are managed more efficiently, reducing index bloat.
VACUUM automatically becomes more aggressive, and skips inessential cleanup, if the database starts to approach a transaction ID wraparound condition.
Extended statistics can now be collected on expressions, allowing better planning results for complex queries.
libpq now has the ability to pipeline multiple queries, which can boost throughput over high-latency connections.
The above items and other new features of PostgreSQL 14 are explained in more detail in the sections below.
A dump/restore using pg_dumpall or use of pg_upgrade or logical replication is required for those wishing to migrate data from any previous release. See Section 19.6 for general information on migrating to new major releases.
Version 14 contains a number of changes that may affect compatibility with previous releases. Observe the following incompatibilities:
User-defined objects that reference certain built-in array functions along with their argument types must be recreated (Tom Lane)
Specifically, array_append(), array_prepend(), array_cat(), array_position(), array_positions(), array_remove(), array_replace(), and width_bucket() used to take anyarray arguments but now take anycompatiblearray. Therefore, user-defined objects like aggregates and operators that reference those array function signatures must be dropped before upgrading, and recreated once the upgrade completes.
Remove deprecated containment operators @ and ~ for built-in geometric data types and contrib modules cube, hstore, intarray, and seg (Justin Pryzby)
The more consistently named <@ and @> have been recommended for many years.
Fix to_tsquery() and websearch_to_tsquery() to properly parse query text containing discarded tokens (Alexander Korotkov)
Certain discarded tokens, like underscore, caused the output of these functions to produce incorrect tsquery output, e.g., both websearch_to_tsquery('"pg_class pg"') and to_tsquery('pg_class <-> pg') used to output ( 'pg' & 'class' ) <-> 'pg', but now both output 'pg' <-> 'class' <-> 'pg'.
Fix websearch_to_tsquery() to properly parse multiple adjacent discarded tokens in quotes (Alexander Korotkov)
Previously, quoted text that contained multiple adjacent discarded tokens was treated as multiple tokens, causing incorrect tsquery output, e.g., websearch_to_tsquery('"aaa: bbb"') used to output 'aaa' <2> 'bbb', but now outputs 'aaa' <-> 'bbb'.
Change EXTRACT() to return type numeric instead of float8 (Peter Eisentraut)
This avoids loss-of-precision issues in some usages. The old behavior can still be obtained by using the old underlying function date_part().
Also, EXTRACT(date) now throws an error for units that are not part of the date data type.
Change var_samp() and stddev_samp() with numeric parameters to return NULL when the input is a single NaN value (Tom Lane)
Previously NaN was returned.
Return false for has_column_privilege() checks on non-existent or dropped columns when using attribute numbers (Joe Conway)
Previously such attribute numbers returned an invalid-column error.
Fix handling of infinite window function ranges (Tom Lane)
Previously window frame clauses like 'inf' PRECEDING AND 'inf' FOLLOWING returned incorrect results.
Remove factorial operators ! and !!, as well as function numeric_fac() (Mark Dilger)
The factorial() function is still supported.
Disallow factorial() of negative numbers (Peter Eisentraut)
Previously such cases returned 1.
Remove support for postfix (right-unary) operators (Mark Dilger)
pg_dump and pg_upgrade will warn if postfix operators are being dumped.
Allow \D and \W shorthands to match newlines in regular expression newline-sensitive mode (Tom Lane)
Previously they did not match newlines in this mode, but that disagrees with the behavior of other common regular expression engines. [^[:digit:]] or [^[:word:]] can be used to get the old behavior.
Disregard constraints when matching regular expression back-references (Tom Lane)
For example, in (^\d+).*\1, the ^ constraint should be applied at the start of the string, but not when matching \1.
Disallow \w as a range start or end in regular expression character classes (Tom Lane)
This previously was allowed but produced unexpected results.
Require custom server parameter names to use only characters that are valid in unquoted SQL identifiers (Tom Lane)
Change the default of the password_encryption server parameter to scram-sha-256 (Peter Eisentraut)
Previously it was md5. All new passwords will be stored as SHA256 unless this server setting is changed or the password is specified in MD5 format. Also, the legacy (and undocumented) Boolean-like values which were previously synonyms for md5 are no longer accepted.
Remove server parameter vacuum_cleanup_index_scale_factor (Peter Geoghegan)
This setting was ignored starting in PostgreSQL version 13.3.
Remove server parameter operator_precedence_warning (Tom Lane)
This setting was used for warning applications about PostgreSQL 9.5 changes.
Overhaul the specification of clientcert in pg_hba.conf (Kyotaro Horiguchi)
Values 1/0/no-verify are no longer supported; only the strings verify-ca and verify-full can be used. Also, disallow verify-ca if cert authentication is enabled since cert requires verify-full checking.
Remove support for SSL compression (Daniel Gustafsson, Michael Paquier)
This was already disabled by default in previous PostgreSQL releases, and most modern OpenSSL and TLS versions no longer support it.
Remove server and libpq support for the version 2 wire protocol (Heikki Linnakangas)
This was last used as the default in PostgreSQL 7.3 (released in 2002).
Disallow single-quoting of the language name in the CREATE/DROP LANGUAGE command (Peter Eisentraut)
Remove the composite types that were formerly created for sequences and toast tables (Tom Lane)
Process doubled quote marks in ecpg SQL command strings correctly (Tom Lane)
Previously 'abc''def' was passed to the server as 'abc'def', and "abc""def" was passed as "abc"def", causing syntax errors.
Prevent the containment operators (<@ and @>) for intarray from using GiST indexes (Tom Lane)
Previously a full GiST index scan was required, so just avoid that and scan the heap, which is faster. Indexes created for this purpose should be removed.
Remove contrib program pg_standby (Justin Pryzby)
Prevent tablefunc's function normal_rand() from accepting negative values (Ashutosh Bapat)
Negative values produced undesirable results.
Add predefined roles pg_read_all_data and pg_write_all_data (Stephen Frost)
These non-login roles can be used to give readorwrite permission toalltables, views, andsequences.
Add predefined role pg_database_owner that contains only the current database's owner (Noah Misch)
This is especially useful in template databases.
Remove temporary files after backend crashes (Euler Taveira)
Previously, such files were retained for debugging purposes. If necessary, deletion can be disabled with the new server parameter remove_temp_files_after_crash.
Allow long-running queries to be canceled if the client disconnects (Sergey Cherkashin, Thomas Munro)
The server parameter client_connection_check_interval allows control over whether loss of connection is checked for intra-query. (This is supported on Linux and a few other operating systems.)
Add an optional timeout parameter to pg_terminate_backend() (Magnus Hagander)
Allow wide tuples to be always added to almost-empty heap pages (John Naylor, Floris van Nee)
Previously tuples whose insertion would have exceeded the page's fill factor were instead added tonew pages.
AddServerName Indication (SNI) in SSL connection packets (Peter Eisentraut)
This can be disabled by turning off client connectionoption sslsni.
Allow vacuumto skip index vacuuming when the number of removable index entries is insignificant (Masahiko Sawada, Peter Geoghegan)
The vacuum parameter INDEX_CLEANUP has a newdefaultof auto that enables this optimization.
Allow vacuumto more eagerly add deleted btree pages to the free space map (Peter Geoghegan)
Previously vacuum could onlyadd pages to the free space map that were marked as deleted by previous vacuums.
Allow vacuumto reclaim space used by unused trailing heap line pointers (Matthias van de Meent, Peter Geoghegan)
Allow vacuumto be more aggressive in removing dead rows during minimal-locking index operations (Álvaro Herrera)
Specifically, CREATEINDEXCONCURRENTLYandREINDEXCONCURRENTLYno longer limit the dead row removal of other relations.
Speed up vacuuming of databases with many relations (Tatsuhito Kasahara)
Reduce the defaultvalueof vacuum_cost_page_miss to better reflect current hardware capabilities (Peter Geoghegan)
Add ability to skip vacuuming of TOAST tables (Nathan Bossart)
VACUUM now has a PROCESS_TOAST option which can be settofalsetodisable TOAST processing, and vacuumdb has a --no-process-toast option.
Have COPYFREEZE appropriately update page visibility bits (Anastasia Lubennikova, Pavan Deolasee, Jeff Janes)
Cause vacuum operations to be more aggressive if the tableis near xid or multixact wraparound (Masahiko Sawada, Peter Geoghegan)
This is controlled by vacuum_failsafe_age and vacuum_multixact_failsafe_age.
Increase warningtimeand hard limitbeforetransaction id and multi-transaction wraparound (Noah Misch)
This should reduce the possibility of failures that occur withouthaving issued warnings about wraparound.
Add per-index information to autovacuum logging output (Masahiko Sawada)
Partitioning
1 2 3 4 5 6 7 8 9 10 11
Improve the performance of updates and deletes on partitioned tables with many partitions (Amit Langote, Tom Lane)
This change greatly reduces the planner's overhead for such cases, and also allows updates/deletes on partitioned tables to use execution-time partition pruning.
Allow partitions to be detached in a non-blocking manner (Álvaro Herrera)
The syntax is ALTER TABLE ... DETACH PARTITION ... CONCURRENTLY, and FINALIZE.
Ignore COLLATE clauses in partition boundary values (Tom Lane)
Previously any such clause had to match the collation ofthe partition key; butit's more consistent to consider thatit's automatically coerced tothe collation ofthe partition key.
Indexes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Allow btree index additions toremove expired index entries to prevent page splits (Peter Geoghegan)
This is particularly helpful for reducing index bloat on tables whose indexed columns are frequently updated.
Allow BRIN indexes to record multiple min/max values per range (Tomas Vondra)
This is useful if there are groups of values in each page range.
Allow BRIN indexes to use bloom filters (Tomas Vondra)
This allows BRIN indexes to be used effectively with data that is not well-localized in the heap.
Allow some GiST indexes to be built by presorting the data (Andrey Borodin)
Presorting happens automatically and allows for faster index creation and smaller indexes.
Allow SP-GiST indexes to contain INCLUDE'd columns (Pavel Borisov)
Optimizer
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Allow hash lookup forIN clauses with many constants (James Coleman, David Rowley)
Previously the code always sequentially scanned the list ofvalues.
Increase the number of places extended statistics can be used forOR clause estimation (Tomas Vondra, Dean Rasheed)
This allows statisticson a groupof expressions andcolumns, rather than onlycolumnslike previously. Systemview pg_stats_ext_exprs reports such statistics.
Allow efficient heap scanning of a range of TIDs (Edmund Horner, David Rowley)
Previously a sequential scan was required for non-equality TID specifications.
Add ability to use LZ4 compression on TOAST data (Dilip Kumar)
This can be set at the column level, orset as a default via server parameter default_toast_compression. The server must be compiled with --with-lz4 to support this feature. The default setting is still pglz.
Monitoring
1 2 3 4 5 6 7 8 9
Ifserver parameter compute_query_id is enabled, display the query id in pg_stat_activity, EXPLAINVERBOSE, csvlog, and optionally in log_line_prefix (Julien Rouhaud)
A query id computed by an extension will also be displayed.
Improve logging of auto-vacuumand auto-analyze (Stephen Frost, Jakub Wartak)
This reports I/O timings for auto-vacuumand auto-analyzeif track_io_timing is enabled. Also, report buffer readand dirty rates for auto-analyze.
Add information about the original username supplied by the client to the output of log_connections (Jacob Champion)
Allow standby servers to be rewound via pg_rewind (Heikki Linnakangas)
Allow the restore_command setting to be changed during a server reload (Sergei Kornilov)
You can alsoset restore_command to an empty string and reload to force recovery toonlyreadfrom the pg_wal directory.
Addserver parameter log_recovery_conflict_waits to report long recovery conflict wait times (Bertrand Drouvot, Masahiko Sawada)
Pause recovery on a hot standby serverif the primary changes its parameters in a way that prevents replay on the standby (Peter Eisentraut)
Previously the standby would shut down immediately.
Addfunction pg_get_wal_replay_pause_state() to report the recovery state (Dilip Kumar)
It gives more detailed information than pg_is_wal_replay_paused(), which still exists.
Addnewread-onlyserver parameter in_hot_standby (Haribabu Kommi, Greg Nancarrow, Tom Lane)
This allows clients to easily detect whether they are connected to a hot standby server.
Speed truncation of small tables during recovery on clusters with a large number of shared buffers (Kirk Jamison)
Allow file system sync at the startof crash recovery on Linux (Thomas Munro)
Bydefault, PostgreSQL opens and fsyncs each data file in the databasecluster at the startof crash recovery. A new setting, recovery_init_sync_method=syncfs, instead syncs each filesystem used by the cluster. This allows for faster recovery on systems with many database files.
Addfunction pg_xact_commit_timestamp_origin() toreturn the committimestampandreplication origin of the specified transaction (Movead Li)
Add the replication origin to the record returned by pg_last_committed_xact() (Movead Li)
Allow replication origin functionsto be controlled using standard function permission controls (Martín Marqués)
Previously these functions could only be executed by superusers, and this is still the default.
Allow logical replication to stream long in-progress transactions to subscribers (Dilip Kumar, Amit Kapila, Ajin Cherian, Tomas Vondra, Nikhil Sontakke, Stas Kelvich)
Previously transactions that exceeded logical_decoding_work_mem were written to disk until the transaction completed.
Enhance the logical replication API to allow streaming large in-progress transactions (Tomas Vondra, Dilip Kumar, Amit Kapila)
The output functions beginwith stream. test_decoding also supports these.
Allow multiple transactions during tablesyncinlogicalreplication (Peter Smith, Amit Kapila, Takamichi Osumi)
Immediately WAL-log subtransaction and top-level XID association (Tomas Vondra, Dilip Kumar, Amit Kapila)
This is useful forlogical decoding.
Enhance logical decoding APIs to handle two-phase commits (Ajin Cherian, Amit Kapila, Nikhil Sontakke, Stas Kelvich)
This is controlled via pg_create_logical_replication_slot().
Addcache invalidation messages to the WAL during command completion whenusinglogicalreplication (Dilip Kumar, Tomas Vondra, Amit Kapila)
Allow REFRESH MATERIALIZED VIEW to use parallelism (Bharath Rupireddy)
Allow REINDEX tochange the tablespaceof the newindex (Alexey Kondratov, Michael Paquier, Justin Pryzby)
This is done by specifying a TABLESPACE clause. A --tablespace option was also added to reindexdb to control this.
Allow REINDEX to process allchildtablesorindexesof a partitioned relation (Justin Pryzby, Michael Paquier)
Allowindex commands using CONCURRENTLY to avoid waiting for the completion of other operationsusing CONCURRENTLY (Álvaro Herrera)
Improve the performanceof COPY FROMinbinarymode (Bharath Rupireddy, Amit Langote)
PreserveSQL standard syntax forSQL-defined functions inview definitions (Tom Lane)
Previously, calls toSQL-standard functions such asEXTRACT() were shown in plain function-call syntax. The original syntax isnow preserved when displaying a viewor rule.
Add the SQL-standard clause GRANTED BYtoGRANTandREVOKE (Peter Eisentraut)
These changes help GUI tools analyze the system catalogs. The existing uniqueindexesof catalogs now have associated UNIQUEor PRIMARY KEY constraints. Foreignkey relationships arenot actually storedor implemented asconstraints, but can be obtained for display from the function pg_get_catalog_foreign_keys().
Allow CURRENT_ROLE every place CURRENT_USERis accepted (Peter Eisentraut)
Allow extensions and built-in data typesto implement subscripting (Dmitry Dolgov)
Previously subscript handling was hard-coded into the server, so that subscripting could only be applied toarraytypes. This change allows subscript notation to be used to extract or assign portions of a valueofanytypefor which the concept makes sense.
Allow subscripting ofJSONB (Dmitry Dolgov)
JSONB subscripting can be used to extract and assign to portions ofJSONB documents.
Add support for multirange data types (Paul Jungwirth, Alexander Korotkov)
These are like range data types, but they allow the specification of multiple, ordered, non-overlapping ranges. An associated multirange typeis automatically created for every range type.
Add support for the stemming of languages Armenian, Basque, Catalan, Hindi, Serbian, and Yiddish (Peter Eisentraut)
Allow tsearch data files to have unlimited line lengths (Tom Lane)
The previous limit was 4K bytes. Also remove function t_readline().
Add support forInfinityand -Infinityvaluesin the numeric data type (Tom Lane)
Floating-point data types already supported these.
Previously these were called >^ and <^, but that naming is inconsistent with other geometric data types. The old names remain available, but may someday be removed.
User-defined relations have long had composite types associated with them, andalsoarraytypesover those composite types. System catalogs now doas well. This change also fixes an inconsistency that creating a user-defined tablein single-user mode would fail tocreate a composite arraytype.
Allow SQL-languagefunctionsandproceduresto use SQL-standard function bodies (Peter Eisentraut)
Previously only string-literal function bodies were supported. When writing a functionorprocedureinSQL-standard syntax, the body is parsed immediately and stored as a parse tree. This allows better tracking offunction dependencies, and can have security benefits.
Allow proceduresto have OUT parameters (Peter Eisentraut)
Allow somearrayfunctionsto operate on a mix of compatible data types (Tom Lane)
The functions array_append(), array_prepend(), array_cat(), array_position(), array_positions(), array_remove(), array_replace(), and width_bucket() now take anycompatiblearray insteadofanyarray arguments. This makes them less fussy about exact matches of argument types.
AddSQL-standard trim_array() function (Vik Fearing)
This could already be done witharray slices, but less easily.
Addbytea equivalents of ltrim() and rtrim() (Joel Jacobson)
Support negative indexes in split_part() (Nikhil Benesch)
Negative valuesstartfrom the last field and count backward.
Add string_to_table() functionto split a string on delimiters (Pavel Stehule)
This issimilarto the regexp_split_to_table() function.
Add unistr() functionto allow Unicode characters to be specified as backslash-hex escapes in strings (Pavel Stehule)
This issimilarto how Unicode can be specified in literal strings.
The newSQL-standard syntax is SUBSTRING(textSIMILAR pattern ESCAPE escapechar). The previous standard syntax was SUBSTRING(textFROM pattern FOR escapechar), which is still accepted by PostgreSQL.
Allow complemented characterclass escapes \D, \S, and \W within regular expression brackets (Tom Lane)
Add [[:word:]] as a regular expression characterclass, equivalent to \w (Tom Lane)
Allow more flexible data typesfordefaultvaluesof lead() and lag() windowfunctions (Vik Fearing)
Make non-zero floating-pointvalues divided byinfinityreturn zero (Kyotaro Horiguchi)
Previously such operations produced underflow errors.
Make floating-point division ofNaNby zero returnNaN (Tom Lane)
Previously this returned an error.
Cause exp() and power() for negative-infinity exponents toreturn zero (Tom Lane)
Previously they often returned underflow errors.
Improve the accuracy of geometric computations involving infinity (Tom Lane)
Mark built-intype coercion functionsasleakproofwhere possible (Tom Lane)
This allows more use offunctions that require typeconversioninsecurity-sensitive situations.
Change pg_describe_object(), pg_identify_object(), and pg_identify_object_as_address() toalways report helpful error messages for non-existent objects (Michael Paquier)
PL/pgSQL
1 2 3 4 5 6 7
Improve PL/pgSQL's expression and assignment parsing (Tom Lane)
This change allows assignment to array slices and nested record fields.
Allow plpgsql's RETURN QUERY to execute its query using parallelism (Tom Lane)
Improve performance of repeated CALLs within plpgsql procedures (Pavel Stehule, Tom Lane)
Include disconnection times in the reconnection overhead measured by pgbench with -C (Yugo Nagata)
Allow multiple verboseoption specifications (-v) to increase the logging verbosity (Tom Lane)
This behavior is supported by pg_dump, pg_dumpall, and pg_restore.
psql
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Allow psql's \df and \do commands to specify function and operator argument types (Greg Sabino Mullane, Tom Lane)
This helps reduce the number of matches printed for overloaded names.
Add an access method column to psql's \d[i|m|t]+ output (Georgios Kokolatos)
Allow psql's \dt and \di to show TOAST tables and their indexes (Justin Pryzby)
Add psql command \dX to list extended statistics objects (Tatsuro Yamada)
Fix psql's \dT to understand array syntax and backend grammar aliases, like int for integer (Greg Sabino Mullane, Tom Lane)
When editing the previous query or a file with psql's \e, or using \ef and \ev, ignore the results if the editor exits without saving (Laurenz Albe)
Previously, such edits would load the previous query into the query buffer, and typically execute it immediately. This was deemed to be probably not what the user wants.
Add configure option--with-ssl={openssl} to allow future choice of the SSL library to use (Daniel Gustafsson, Michael Paquier)
The spelling --with-openssl is kept for compatibility.
Add support for abstract Unix-domain sockets (Peter Eisentraut)
This is currently supported on Linux and Windows.
Allow Windows to properly handle files larger than four gigabytes (Juan José Santamaría Flecha)
For example this allows COPY, WAL files, and relation segment files to be larger than four gigabytes.
Addserver parameter debug_discard_caches to control cache flushing for test purposes (Craig Ringer)
Previously this behavior could only be set at compile time. To invoke it during initdb, use the new option --discard-caches.
Various improvements in valgrind error detection ability (Álvaro Herrera, Peter Geoghegan)
Add a test module for the regular expression package (Tom Lane)
Add support for LLVM version 12 (Andres Freund)
Change SHA1, SHA2, and MD5 hash computations to use the OpenSSL EVP API (Michael Paquier)
This is more modern and supports FIPS mode.
Remove separate build-time control over the choice of random number generator (Daniel Gustafsson)
This is now always determined by the choice of SSL library.
Add direct conversionroutinesbetween EUC_TW and Big5 encodings (Heikki Linnakangas)
Addcollationversion support for FreeBSD (Thomas Munro)
Add amadjustmembers to the indexaccessmethod API (Tom Lane)
This allows an indexaccessmethodto provide validity checking during creation of a newoperatorclassorfamily.
Provide feature-test macros in libpq-fe.h for recently-added libpq features (Tom Lane, Álvaro Herrera)
Historically, applications have usually used compile-time checks of PG_VERSION_NUM to test whether a feature is available. But that's normally the server version, which might not be a good guide to libpq's version. libpq-fe.h now offers #define symbols denoting application-visible features added in v14; the intent isto keep adding symbols for such features in future versions.
Allow pageinspect to inspect GiST indexes (Andrey Borodin, Heikki Linnakangas)
Change pageinspect block numbers to be bigints (Peter Eisentraut)
Mark btree_gist functionsasparallel safe (Steven Winfield)
pg_stat_statements
1 2 3 4 5 6 7 8 9 10 11
Move query hash computation from pg_stat_statements to the core server (Julien Rouhaud)
The new server parameter compute_query_id's default of auto will automatically enable query id computation when this extension is loaded.
Cause pg_stat_statements to track top and nested statements separately (Julien Rohaud)
Previously, when tracking all statements, identical top and nested statements were tracked as a single entry; but it seems more useful to separate such usages.
Add row counts for utility commands to pg_stat_statements (Fujii Masao, Katsuragi Yuta, Seino Yuki)
Add pg_stat_statements_info system view to show pg_stat_statements activity (Katsuragi Yuta, Yuki Seino, Naoki Nakamichi)
postgres_fdw
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Allow postgres_fdw to INSERTrowsinbulk (Takayuki Tsunakawa, Tomas Vondra, Amit Langote)
Allow postgres_fdw toimporttablepartitionsif specified byIMPORTFOREIGNSCHEMA ... LIMITTO (Matthias van de Meent)
Bydefault, only the root of a partitioned tableis imported.
Add postgres_fdw function postgres_fdw_get_connections() to report openforeignserver connections (Bharath Rupireddy)
Allow control over whether foreign servers keep connections openaftertransaction completion (Bharath Rupireddy)
This is controlled by keep_connections anddefaultsto on.
Allow postgres_fdw to reestablish foreignserver connections if necessary (Bharath Rupireddy)
Previously foreignserver restarts could cause foreigntableaccess errors.
Add postgres_fdw functions to discard cached connections (Bharath Rupireddy)