pgFormatter::Beautify(3) User Contributed Perl Documentation pgFormatter::Beautify(3)

pgFormatter::Beautify - Library for pretty-printing SQL queries

Version 5.11

This module can be used to reformat given SQL query, optionally anonymizing parameters.

Output can be either plain text, or it can be HTML with appropriate styles so that it can be displayed on a web page.

Example usage:

my $beautifier = pgFormatter::Beautify->new();
$beautifier->query( 'select a,b,c from d where e = f' );
$beautifier->beautify();
my $nice_txt = $beautifier->content();
$beautifier->format('html');
$beautifier->beautify();
my $nice_html = $beautifier->content();
$beautifier->format('html');
$beautifier->anonymize();
$beautifier->beautify();
my $nice_anonymized_html = $beautifier->content();
$beautifier->format();
$beautifier->beautify();
$beautifier->wrap_lines()
my $wrapped_txt = $beautifier->content();

Generic constructor - creates object, sets defaults, and reads config from given hash with options.

Takes options as hash. Following options are recognized:

  • break - String that is used for linebreaks. Default is "\n".
  • colorize - if set to false CSS style will not be applied to html output. Used internally to display errors in CGI mode withour style.
  • comma - set comma at beginning or end of a line in a parameter list
  • comma_break - add new-line after each comma in INSERT statements
  • format - set beautify format to apply to the content (default: text)
  • functions - list (arrayref) of strings that are function names
  • keywords - list (arrayref) of strings that are keywords
  • multiline - use multi-line search for placeholder regex, see placeholder.
  • no_comments - if set to true comments will be removed from query
  • no_grouping - if set to true statements will not be grouped in a transaction, an extra newline character will be added between statements like outside a transaction.
  • placeholder - use the specified regex to find code that must not be changed in the query.
  • query - query to beautify
  • rules - hash of rules - uses rule semantics from SQL::Beautify
  • space - character(s) to be used as space for indentation
  • spaces - how many spaces to use for indentation
  • uc_functions - what to do with function names:
0 - do not change
1 - change to lower case
2 - change to upper case
3 - change to Capitalized
  • separator - string used as dynamic code separator, default is single quote
  • uc_keywords - what to do with keywords - meaning of value like with uc_functions
  • uc_types - what to do with data types - meaning of value like with uc_functions
  • wrap - wraps given keywords in pre- and post- markup. Specific docs in SQL::Beautify
  • format_type - try an other formatting
  • wrap_limit - wrap queries at a certain length
  • wrap_after - number of column after which lists must be wrapped
  • wrap_comment - apply wrapping to comments starting with --
  • numbering - statement numbering as a comment before each query
  • redshift - add Redshift keywords (obsolete, use --extra-keyword)
  • no_extra_line - do not add an extra empty line at end of the output
  • keep_newline - preserve empty line in plpgsql code
  • no_space_function - remove space before function call and open parenthesis
  • redundant_parenthesis - do not eliminate redundant parenthesis in DML queries
  • vertical_align - vertically align CREATE TABLE column definitions

For defaults, please check function set_defaults.

Accessor to query string. Both reads:

$object->query()

, and writes

$object->query( $something )

Accessor to content of results. Must be called after $object->beautify().

This can be either plain text or html following the format asked by the client with the $object->format() method.

Makes result html with styles set for highlighting.

Splits input SQL into tokens

Code lifted from SQL::Beautify

Parse one single-line CREATE TABLE column definition into the parts needed by vertical alignment. A trailing comment is stored separately from the SQL. Returns undef for table constraints, embedded comments, multiline input, and definitions that do not contain both a column name and a data type.

This method only analyzes input. It does not change the formatted SQL.

Render a list of SQL tokens as one compact, single-line SQL fragment.

This helper is intentionally limited to the fragments produced by _parse_create_table_column(). It preserves token order and only decides where spaces belong. It does not perform alignment or change keyword casing.

Pad a string with spaces until it reaches the requested width.

The helper returns the original string unchanged when it is already at least as wide as the requested width. Alignment uses spaces deliberately: tabs would make the result depend on the tab width configured by the editor displaying the SQL.

Align a top-level keyword within the remainder of parsed CREATE TABLE columns.

For every matching row, the tokens before the keyword are treated as a prefix. Shorter prefixes are padded so the keyword starts in the same output column. Keywords nested inside parentheses or array brackets are ignored.

The method updates the rendered remainder stored in each matching row. It does not reorder tokens or affect rows that do not contain the requested keyword.

Return the net parenthesis depth change for one SQL line.

The existing SQL tokenizer is reused so parentheses inside quoted strings and comments are not mistaken for structural parentheses.

Inspect one formatted line for the beginning of a regular CREATE TABLE body.

The return value is a three-element list: whether the line begins a supported CREATE TABLE statement, whether its opening parenthesis is present, and the net parenthesis depth on that line. When the opening parenthesis is absent it may occur on the following line.

CREATE TABLE AS, PARTITION OF, and typed-table forms are deliberately skipped because their parentheses do not necessarily contain ordinary column definitions.

Align eligible top-level lines from one already formatted CREATE TABLE body.

Only lines that begin and end at the table body's direct parenthesis depth are sent to the column-group aligner. This excludes continuation lines belonging to multiline CHECK expressions or other nested constructs while still allowing single-line type modifiers and function calls.

Apply vertical column alignment to regular CREATE TABLE statements in a fully formatted SQL document.

The method is a final text-only rendering pass. It preserves all lines outside supported table bodies and delegates actual row formatting to the smaller parser, renderer, and group-alignment helpers.

Append trailing comments at a shared output column.

The SQL portion of every supported column is measured after name, declaration, and DEFAULT alignment. Only rows containing comments receive padding, so rows without comments do not gain trailing whitespace. Unsupported lines are ignored when calculating the comment column.

Align a group of single-line CREATE TABLE column definitions.

The method aligns the column names and the beginning of each remainder, while preserving indentation, token order, trailing commas, and unsupported lines. It only returns rendered lines; it does not modify the formatter output.

Beautify SQL.

After calling this function, $object->content() will contain nicely indented result.

Code lifted from SQL::Beautify

Add a token to the beautified string.

Code lifted from SQL::Beautify

Increase the indentation level.

Code lifted from SQL::Beautify

Decrease the indentation level.

Code lifted from SQL::Beautify

Return a string of spaces according to the current indentation level and the spaces setting for indenting.

Code lifted from SQL::Beautify

Add a line break, but make sure there are no empty lines.

Code lifted from SQL::Beautify

Have a look at the token that's coming up next.

Code lifted from SQL::Beautify

Have a look at the token that's coming up next omitting comments.

Code lifted from SQL::Beautify

Get the next token, removing it from the list of remaining tokens.

Code lifted from SQL::Beautify

Check if a token is a known SQL keyword.

Code lifted from SQL::Beautify

Check if a token is a known SQL type

Check if a token is a SQL or C style comment

Check if a token is a known SQL function.

Code lifted from SQL::Beautify and rewritten to check one long regexp instead of a lot of small ones.

Add new keywords to highlight.

Code lifted from SQL::Beautify

Create compiled regexp from prefix, suffix and and a list of values to match.

Refresh compiled regexp for functions.

Add new functions to highlight.

Code lifted from SQL::Beautify

Add new rules.

Code lifted from SQL::Beautify

Find custom rule for a token.

Code lifted from SQL::Beautify

Applies defined rule.

Code lifted from SQL::Beautify

Check if a token is a constant.

Code lifted from SQL::Beautify

Check if a token is punctuation.

Code lifted from SQL::Beautify

Simply generate a random string, thanks to Perlmonks.

Returns original in certain cases which don't require anonymization, like timestamps, or intervals.

Anonymize litteral in SQL queries by replacing parameters with fake values

Sets defaults for newly created objects.

Currently defined defaults:

format => 'text'

Set output format - possible values: 'text' and 'html'

Default is text output. Returns 0 in case or wrong format and use default.

Sets various dictionaries (lists of keywords, functions, symbols, and the like)

This was moved to separate function, so it can be put at the very end of module so it will be easier to read the rest of the code.

Internal function used to hide dynamic code in plpgsql to the parser. The original values are restored with function _restore_dynamic_code().

Internal function used to restore plpgsql dynamic code in plpgsql that was removed by the _remove_dynamic_code() method.

Internal function used to quote operator with multiple character to be tokenized as a single word. The original values are restored with function _restore_operator().

Internal function used to restore operator that was removed by the _quote_operator() method.

Internal function used to replace constant in a COMMENT statement to be tokenized as a single word. The original values are restored with function _restore_comment_stmt().

Internal function used to restore comment string that was removed by the _quote_comment_stmt() method.

Internal function used to remove comments in SQL code to simplify the work of the wrap_lines. Comments must be restored with the _restore_comments() method.

Internal function used to restore comments in SQL code that was removed by the _remove_comments() method.

Internal function used to wrap line at a certain length.

pgFormatter is an original work from Gilles Darold

Please report any bugs or feature requests to: https://github.com/darold/pgFormatter/issues

Copyright 2012-2026 Gilles Darold. All rights reserved.

pgFormatter is free software distributed under the PostgreSQL Licence.

A modified version of the SQL::Beautify Perl Module is embedded in pgFormatter with copyright (C) 2009 by Jonas Kramer and is published under the terms of the Artistic License 2.0.

2026-09-04 perl v5.42.2