From 3d209c3bc39ce529491e75a3cee92c9ea0b612fd Mon Sep 17 00:00:00 2001 From: Lele Gaifax Date: Fri, 27 Sep 2024 09:19:40 +0200 Subject: [PATCH] Update generated sources --- docs/ast.rst | 494 +++++++++++++++++------------------ docs/ddl.rst | 282 ++++++++++---------- docs/dml.rst | 194 +++++++------- docs/lockdefs.rst | 22 +- docs/lockoptions.rst | 8 +- docs/nodes.rst | 28 +- docs/parsenodes.rst | 180 ++++++------- docs/pg_am.rst | 6 +- docs/pg_attribute.rst | 8 +- docs/pg_class.rst | 36 +-- docs/pg_trigger.rst | 20 +- docs/primnodes.rst | 36 +-- docs/xml.rst | 8 +- pglast/ast.py | 2 +- pglast/ast.pyx | 2 +- pglast/enums/lockdefs.py | 2 +- pglast/enums/lockoptions.py | 2 +- pglast/enums/nodes.py | 2 +- pglast/enums/parsenodes.py | 2 +- pglast/enums/pg_am.py | 2 +- pglast/enums/pg_attribute.py | 2 +- pglast/enums/pg_class.py | 2 +- pglast/enums/pg_trigger.py | 2 +- pglast/enums/primnodes.py | 2 +- pglast/enums/xml.py | 2 +- pglast/structs.pxd | 2 +- 26 files changed, 674 insertions(+), 674 deletions(-) diff --git a/docs/ast.rst b/docs/ast.rst index fac5f2a..8a05ad3 100644 --- a/docs/ast.rst +++ b/docs/ast.rst @@ -14,7 +14,7 @@ The module implements a set of *data* classes, one for each ``C`` structure defined in several PostgreSQL headers, primarily those in the `include/nodes/`__ directory. -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/nodes +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/nodes The :class:`pglast.ast.Node` is an abstract class that implements the common behaviour of all the concrete classes. In particular any node can be :meth:`compared ` @@ -29,7 +29,7 @@ be :meth:`altered `. .. class:: A_ArrayExpr(elements=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: elements :type: tuple @@ -44,7 +44,7 @@ be :meth:`altered `. .. class:: A_Const(isnull=None, val=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: isnull :type: bool @@ -55,7 +55,7 @@ be :meth:`altered `. .. class:: A_Expr(kind=None, name=None, lexpr=None, rexpr=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: A_Expr_Kind @@ -83,7 +83,7 @@ be :meth:`altered `. .. class:: A_Indices(is_slice=None, lidx=None, uidx=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: is_slice :type: bool @@ -103,7 +103,7 @@ be :meth:`altered `. .. class:: A_Indirection(arg=None, indirection=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Node @@ -118,12 +118,12 @@ be :meth:`altered `. .. class:: A_Star() - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. class:: AccessPriv(priv_name=None, cols=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: priv_name :type: str @@ -138,7 +138,7 @@ be :meth:`altered `. .. class:: Aggref(aggargtypes=None, aggdirectargs=None, args=None, aggorder=None, aggdistinct=None, aggfilter=None, aggstar=None, aggvariadic=None, aggkind=None, agglevelsup=None, aggsplit=None, aggno=None, aggtransno=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: aggargtypes :type: tuple @@ -185,7 +185,7 @@ be :meth:`altered `. .. class:: Alias(aliasname=None, colnames=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: aliasname :type: str @@ -200,7 +200,7 @@ be :meth:`altered `. .. class:: AlterCollationStmt(collname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: collname :type: tuple @@ -208,7 +208,7 @@ be :meth:`altered `. .. class:: AlterDatabaseRefreshCollStmt(dbname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: dbname :type: str @@ -216,7 +216,7 @@ be :meth:`altered `. .. class:: AlterDatabaseSetStmt(dbname=None, setstmt=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: dbname :type: str @@ -231,7 +231,7 @@ be :meth:`altered `. .. class:: AlterDatabaseStmt(dbname=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: dbname :type: str @@ -246,7 +246,7 @@ be :meth:`altered `. .. class:: AlterDefaultPrivilegesStmt(options=None, action=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: options :type: tuple @@ -261,7 +261,7 @@ be :meth:`altered `. .. class:: AlterDomainStmt(subtype=None, typeName=None, name=None, def_=None, behavior=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subtype :type: str @@ -300,7 +300,7 @@ be :meth:`altered `. .. class:: AlterEnumStmt(typeName=None, oldVal=None, newVal=None, newValNeighbor=None, newValIsAfter=None, skipIfNewValExists=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeName :type: tuple @@ -335,7 +335,7 @@ be :meth:`altered `. .. class:: AlterEventTrigStmt(trigname=None, tgenabled=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: trigname :type: str @@ -351,7 +351,7 @@ be :meth:`altered `. .. class:: AlterExtensionContentsStmt(extname=None, action=None, objtype=None, object=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: extname :type: str @@ -376,7 +376,7 @@ be :meth:`altered `. .. class:: AlterExtensionStmt(extname=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: extname :type: str @@ -389,7 +389,7 @@ be :meth:`altered `. .. class:: AlterFdwStmt(fdwname=None, func_options=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: fdwname :type: str @@ -409,7 +409,7 @@ be :meth:`altered `. .. class:: AlterForeignServerStmt(servername=None, version=None, options=None, has_version=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: servername :type: str @@ -434,7 +434,7 @@ be :meth:`altered `. .. class:: AlterFunctionStmt(objtype=None, func=None, actions=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objtype :type: ObjectType @@ -452,7 +452,7 @@ be :meth:`altered `. .. class:: AlterObjectDependsStmt(objectType=None, relation=None, object=None, extname=None, remove=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objectType :type: ObjectType @@ -482,7 +482,7 @@ be :meth:`altered `. .. class:: AlterObjectSchemaStmt(objectType=None, relation=None, object=None, newschema=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objectType :type: ObjectType @@ -512,7 +512,7 @@ be :meth:`altered `. .. class:: AlterOpFamilyStmt(opfamilyname=None, amname=None, isDrop=None, items=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: opfamilyname :type: tuple @@ -537,7 +537,7 @@ be :meth:`altered `. .. class:: AlterOperatorStmt(opername=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: opername :type: ObjectWithArgs* @@ -552,7 +552,7 @@ be :meth:`altered `. .. class:: AlterOwnerStmt(objectType=None, relation=None, object=None, newowner=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objectType :type: ObjectType @@ -577,7 +577,7 @@ be :meth:`altered `. .. class:: AlterPolicyStmt(policy_name=None, table=None, roles=None, qual=None, with_check=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: policy_name :type: str @@ -607,7 +607,7 @@ be :meth:`altered `. .. class:: AlterPublicationStmt(pubname=None, options=None, pubobjects=None, for_all_tables=None, action=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: pubname :type: str @@ -638,7 +638,7 @@ be :meth:`altered `. .. class:: AlterRoleSetStmt(role=None, database=None, setstmt=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: role :type: RoleSpec* @@ -658,7 +658,7 @@ be :meth:`altered `. .. class:: AlterRoleStmt(role=None, options=None, action=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: role :type: RoleSpec* @@ -678,7 +678,7 @@ be :meth:`altered `. .. class:: AlterSeqStmt(sequence=None, options=None, for_identity=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: sequence :type: RangeVar* @@ -699,7 +699,7 @@ be :meth:`altered `. .. class:: AlterStatsStmt(defnames=None, stxstattarget=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: defnames :type: tuple @@ -719,7 +719,7 @@ be :meth:`altered `. .. class:: AlterSubscriptionStmt(kind=None, subname=None, conninfo=None, publication=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: AlterSubscriptionType @@ -749,7 +749,7 @@ be :meth:`altered `. .. class:: AlterSystemStmt(setstmt=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: setstmt :type: VariableSetStmt* @@ -759,7 +759,7 @@ be :meth:`altered `. .. class:: AlterTSConfigurationStmt(kind=None, cfgname=None, tokentype=None, dicts=None, override=None, replace=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: AlterTSConfigType @@ -799,7 +799,7 @@ be :meth:`altered `. .. class:: AlterTSDictionaryStmt(dictname=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: dictname :type: tuple @@ -814,7 +814,7 @@ be :meth:`altered `. .. class:: AlterTableCmd(subtype=None, name=None, num=None, newowner=None, def_=None, behavior=None, missing_ok=None, recurse=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subtype :type: AlterTableType @@ -860,7 +860,7 @@ be :meth:`altered `. .. class:: AlterTableMoveAllStmt(orig_tablespacename=None, objtype=None, roles=None, new_tablespacename=None, nowait=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: orig_tablespacename :type: str @@ -884,7 +884,7 @@ be :meth:`altered `. .. class:: AlterTableSpaceOptionsStmt(tablespacename=None, options=None, isReset=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: tablespacename :type: str @@ -898,7 +898,7 @@ be :meth:`altered `. .. class:: AlterTableStmt(relation=None, cmds=None, objtype=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -923,7 +923,7 @@ be :meth:`altered `. .. class:: AlterTypeStmt(typeName=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeName :type: tuple @@ -938,7 +938,7 @@ be :meth:`altered `. .. class:: AlterUserMappingStmt(user=None, servername=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: user :type: RoleSpec* @@ -958,7 +958,7 @@ be :meth:`altered `. .. class:: AlternativeSubPlan(subplans=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subplans :type: tuple @@ -968,7 +968,7 @@ be :meth:`altered `. .. class:: ArrayCoerceExpr(arg=None, elemexpr=None, resulttypmod=None, coerceformat=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -994,7 +994,7 @@ be :meth:`altered `. .. class:: ArrayExpr(elements=None, multidims=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: elements :type: tuple @@ -1008,7 +1008,7 @@ be :meth:`altered `. .. class:: BitString(bsval=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: bsval :type: str @@ -1016,7 +1016,7 @@ be :meth:`altered `. .. class:: BoolExpr(boolop=None, args=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: boolop :type: BoolExprType @@ -1034,7 +1034,7 @@ be :meth:`altered `. .. class:: Boolean(boolval=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: boolval :type: bool @@ -1042,7 +1042,7 @@ be :meth:`altered `. .. class:: BooleanTest(arg=None, booltesttype=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -1062,7 +1062,7 @@ be :meth:`altered `. .. class:: CTECycleClause(cycle_col_list=None, cycle_mark_column=None, cycle_mark_value=None, cycle_mark_default=None, cycle_path_column=None, location=None, cycle_mark_typmod=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: cycle_col_list :type: tuple @@ -1088,7 +1088,7 @@ be :meth:`altered `. .. class:: CTESearchClause(search_col_list=None, search_breadth_first=None, search_seq_column=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: search_col_list :type: tuple @@ -1105,7 +1105,7 @@ be :meth:`altered `. .. class:: CallContext(atomic=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: atomic :type: bool @@ -1113,7 +1113,7 @@ be :meth:`altered `. .. class:: CallStmt(funccall=None, funcexpr=None, outargs=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: funccall :type: FuncCall* @@ -1129,7 +1129,7 @@ be :meth:`altered `. .. class:: CaseExpr(arg=None, args=None, defresult=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -1154,7 +1154,7 @@ be :meth:`altered `. .. class:: CaseTestExpr(typeMod=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeMod :type: int32 @@ -1162,7 +1162,7 @@ be :meth:`altered `. .. class:: CaseWhen(expr=None, result=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: expr :type: Expr* @@ -1182,12 +1182,12 @@ be :meth:`altered `. .. class:: CheckPointStmt() - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. class:: ClosePortalStmt(portalname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: portalname :type: str @@ -1197,7 +1197,7 @@ be :meth:`altered `. .. class:: ClusterStmt(relation=None, indexname=None, params=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -1217,7 +1217,7 @@ be :meth:`altered `. .. class:: CoalesceExpr(args=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: args :type: tuple @@ -1228,7 +1228,7 @@ be :meth:`altered `. .. class:: CoerceToDomain(arg=None, resulttypmod=None, coercionformat=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -1249,7 +1249,7 @@ be :meth:`altered `. .. class:: CoerceToDomainValue(typeMod=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeMod :type: int32 @@ -1260,7 +1260,7 @@ be :meth:`altered `. .. class:: CoerceViaIO(arg=None, coerceformat=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -1278,7 +1278,7 @@ be :meth:`altered `. .. class:: CollateClause(arg=None, collname=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Node @@ -1298,7 +1298,7 @@ be :meth:`altered `. .. class:: CollateExpr(arg=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -1313,7 +1313,7 @@ be :meth:`altered `. .. class:: ColumnDef(colname=None, typeName=None, compression=None, inhcount=None, is_local=None, is_not_null=None, is_from_type=None, storage=None, storage_name=None, raw_default=None, cooked_default=None, identity=None, identitySequence=None, generated=None, collClause=None, constraints=None, fdwoptions=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: colname :type: str @@ -1409,7 +1409,7 @@ be :meth:`altered `. .. class:: ColumnRef(fields=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: fields :type: tuple @@ -1424,7 +1424,7 @@ be :meth:`altered `. .. class:: CommentStmt(objtype=None, object=None, comment=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objtype :type: ObjectType @@ -1444,7 +1444,7 @@ be :meth:`altered `. .. class:: CommonTableExpr(ctename=None, aliascolnames=None, ctematerialized=None, ctequery=None, search_clause=None, cycle_clause=None, location=None, cterecursive=None, cterefcount=None, ctecolnames=None, ctecoltypes=None, ctecoltypmods=None, ctecolcollations=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: ctename :type: str @@ -1494,7 +1494,7 @@ be :meth:`altered `. .. class:: CompositeTypeStmt(typevar=None, coldeflist=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typevar :type: RangeVar* @@ -1509,7 +1509,7 @@ be :meth:`altered `. .. class:: Constraint(contype=None, conname=None, deferrable=None, initdeferred=None, location=None, is_no_inherit=None, raw_expr=None, cooked_expr=None, generated_when=None, nulls_not_distinct=None, keys=None, including=None, exclusions=None, options=None, indexname=None, indexspace=None, reset_default_tblspc=None, access_method=None, where_clause=None, pktable=None, fk_attrs=None, pk_attrs=None, fk_matchtype=None, fk_upd_action=None, fk_del_action=None, fk_del_set_cols=None, old_conpfeqop=None, skip_validation=None, initially_valid=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: contype :type: ConstrType @@ -1660,7 +1660,7 @@ be :meth:`altered `. .. class:: ConstraintsSetStmt(constraints=None, deferred=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: constraints :type: tuple @@ -1673,7 +1673,7 @@ be :meth:`altered `. .. class:: ConvertRowtypeExpr(arg=None, convertformat=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -1691,7 +1691,7 @@ be :meth:`altered `. .. class:: CopyStmt(relation=None, query=None, attlist=None, is_from=None, is_program=None, filename=None, options=None, whereClause=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -1738,7 +1738,7 @@ be :meth:`altered `. .. class:: CreateAmStmt(amname=None, handler_name=None, amtype=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: amname :type: str @@ -1758,7 +1758,7 @@ be :meth:`altered `. .. class:: CreateCastStmt(sourcetype=None, targettype=None, func=None, context=None, inout=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: sourcetype :type: TypeName* @@ -1778,7 +1778,7 @@ be :meth:`altered `. .. class:: CreateConversionStmt(conversion_name=None, for_encoding_name=None, to_encoding_name=None, func_name=None, def_=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: conversion_name :type: tuple @@ -1808,7 +1808,7 @@ be :meth:`altered `. .. class:: CreateDomainStmt(domainname=None, typeName=None, collClause=None, constraints=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: domainname :type: tuple @@ -1833,7 +1833,7 @@ be :meth:`altered `. .. class:: CreateEnumStmt(typeName=None, vals=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeName :type: tuple @@ -1848,7 +1848,7 @@ be :meth:`altered `. .. class:: CreateEventTrigStmt(trigname=None, eventname=None, whenclause=None, funcname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: trigname :type: str @@ -1873,7 +1873,7 @@ be :meth:`altered `. .. class:: CreateExtensionStmt(extname=None, if_not_exists=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: extname :type: str @@ -1891,7 +1891,7 @@ be :meth:`altered `. .. class:: CreateFdwStmt(fdwname=None, func_options=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: fdwname :type: str @@ -1911,7 +1911,7 @@ be :meth:`altered `. .. class:: CreateForeignServerStmt(servername=None, servertype=None, version=None, fdwname=None, if_not_exists=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: servername :type: str @@ -1946,7 +1946,7 @@ be :meth:`altered `. .. class:: CreateForeignTableStmt(base=None, servername=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: base :type: CreateStmt @@ -1960,7 +1960,7 @@ be :meth:`altered `. .. class:: CreateFunctionStmt(is_procedure=None, replace=None, funcname=None, parameters=None, returnType=None, options=None, sql_body=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: is_procedure :type: bool @@ -1998,7 +1998,7 @@ be :meth:`altered `. .. class:: CreateOpClassItem(itemtype=None, name=None, number=None, order_family=None, class_args=None, storedtype=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: itemtype :type: int @@ -2034,7 +2034,7 @@ be :meth:`altered `. .. class:: CreateOpClassStmt(opclassname=None, opfamilyname=None, amname=None, datatype=None, items=None, isDefault=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: opclassname :type: tuple @@ -2069,7 +2069,7 @@ be :meth:`altered `. .. class:: CreateOpFamilyStmt(opfamilyname=None, amname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: opfamilyname :type: tuple @@ -2084,7 +2084,7 @@ be :meth:`altered `. .. class:: CreatePLangStmt(replace=None, plname=None, plhandler=None, plinline=None, plvalidator=None, pltrusted=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: replace :type: bool @@ -2119,7 +2119,7 @@ be :meth:`altered `. .. class:: CreatePolicyStmt(policy_name=None, table=None, cmd_name=None, permissive=None, roles=None, qual=None, with_check=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: policy_name :type: str @@ -2159,7 +2159,7 @@ be :meth:`altered `. .. class:: CreatePublicationStmt(pubname=None, options=None, pubobjects=None, for_all_tables=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: pubname :type: str @@ -2184,7 +2184,7 @@ be :meth:`altered `. .. class:: CreateRangeStmt(typeName=None, params=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeName :type: tuple @@ -2199,7 +2199,7 @@ be :meth:`altered `. .. class:: CreateRoleStmt(stmt_type=None, role=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: stmt_type :type: RoleStmtType @@ -2219,7 +2219,7 @@ be :meth:`altered `. .. class:: CreateSchemaStmt(schemaname=None, authrole=None, schemaElts=None, if_not_exists=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: schemaname :type: str @@ -2244,7 +2244,7 @@ be :meth:`altered `. .. class:: CreateSeqStmt(sequence=None, options=None, for_identity=None, if_not_exists=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: sequence :type: RangeVar* @@ -2265,7 +2265,7 @@ be :meth:`altered `. .. class:: CreateStatsStmt(defnames=None, stat_types=None, exprs=None, relations=None, stxcomment=None, transformed=None, if_not_exists=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: defnames :type: tuple @@ -2305,7 +2305,7 @@ be :meth:`altered `. .. class:: CreateStmt(relation=None, tableElts=None, inhRelations=None, partbound=None, partspec=None, ofTypename=None, constraints=None, options=None, oncommit=None, tablespacename=None, accessMethod=None, if_not_exists=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -2371,7 +2371,7 @@ be :meth:`altered `. .. class:: CreateSubscriptionStmt(subname=None, conninfo=None, publication=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subname :type: str @@ -2396,7 +2396,7 @@ be :meth:`altered `. .. class:: CreateTableAsStmt(query=None, into=None, objtype=None, is_select_into=None, if_not_exists=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: query :type: Node @@ -2426,7 +2426,7 @@ be :meth:`altered `. .. class:: CreateTableSpaceStmt(tablespacename=None, owner=None, location=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: tablespacename :type: str @@ -2443,7 +2443,7 @@ be :meth:`altered `. .. class:: CreateTransformStmt(replace=None, type_name=None, lang=None, fromsql=None, tosql=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: replace :type: bool @@ -2463,7 +2463,7 @@ be :meth:`altered `. .. class:: CreateTrigStmt(replace=None, isconstraint=None, trigname=None, relation=None, funcname=None, args=None, row=None, timing=None, events=None, columns=None, whenClause=None, transitionRels=None, deferrable=None, initdeferred=None, constrrel=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: replace :type: bool @@ -2543,7 +2543,7 @@ be :meth:`altered `. .. class:: CreateUserMappingStmt(user=None, servername=None, if_not_exists=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: user :type: RoleSpec* @@ -2568,7 +2568,7 @@ be :meth:`altered `. .. class:: CreatedbStmt(dbname=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: dbname :type: str @@ -2583,7 +2583,7 @@ be :meth:`altered `. .. class:: CurrentOfExpr(cvarno=None, cursor_name=None, cursor_param=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: cvarno :type: Index @@ -2603,7 +2603,7 @@ be :meth:`altered `. .. class:: DeallocateStmt(name=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -2613,7 +2613,7 @@ be :meth:`altered `. .. class:: DeclareCursorStmt(portalname=None, options=None, query=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: portalname :type: str @@ -2633,7 +2633,7 @@ be :meth:`altered `. .. class:: DefElem(defnamespace=None, defname=None, arg=None, defaction=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: defnamespace :type: str @@ -2662,7 +2662,7 @@ be :meth:`altered `. .. class:: DefineStmt(kind=None, oldstyle=None, defnames=None, args=None, definition=None, if_not_exists=None, replace=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: ObjectType @@ -2702,7 +2702,7 @@ be :meth:`altered `. .. class:: DeleteStmt(relation=None, usingClause=None, whereClause=None, returningList=None, withClause=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -2732,7 +2732,7 @@ be :meth:`altered `. .. class:: DiscardStmt(target=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: target :type: DiscardMode @@ -2740,7 +2740,7 @@ be :meth:`altered `. .. class:: DoStmt(args=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: args :type: tuple @@ -2750,7 +2750,7 @@ be :meth:`altered `. .. class:: DropOwnedStmt(roles=None, behavior=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: roles :type: tuple @@ -2761,7 +2761,7 @@ be :meth:`altered `. .. class:: DropRoleStmt(roles=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: roles :type: tuple @@ -2776,7 +2776,7 @@ be :meth:`altered `. .. class:: DropStmt(objects=None, removeType=None, behavior=None, missing_ok=None, concurrent=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objects :type: tuple @@ -2806,7 +2806,7 @@ be :meth:`altered `. .. class:: DropSubscriptionStmt(subname=None, missing_ok=None, behavior=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subname :type: str @@ -2826,7 +2826,7 @@ be :meth:`altered `. .. class:: DropTableSpaceStmt(tablespacename=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: tablespacename :type: str @@ -2839,7 +2839,7 @@ be :meth:`altered `. .. class:: DropUserMappingStmt(user=None, servername=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: user :type: RoleSpec* @@ -2859,7 +2859,7 @@ be :meth:`altered `. .. class:: DropdbStmt(dbname=None, missing_ok=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: dbname :type: str @@ -2879,7 +2879,7 @@ be :meth:`altered `. .. class:: ExecuteStmt(name=None, params=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -2894,7 +2894,7 @@ be :meth:`altered `. .. class:: ExplainStmt(query=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: query :type: Node @@ -2909,7 +2909,7 @@ be :meth:`altered `. .. class:: FetchStmt(direction=None, howMany=None, portalname=None, ismove=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: direction :type: FetchDirection @@ -2932,7 +2932,7 @@ be :meth:`altered `. .. class:: FieldSelect(arg=None, fieldnum=None, resulttypmod=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -2950,7 +2950,7 @@ be :meth:`altered `. .. class:: FieldStore(arg=None, newvals=None, fieldnums=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -2968,7 +2968,7 @@ be :meth:`altered `. .. class:: Float(fval=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: fval :type: str @@ -2976,7 +2976,7 @@ be :meth:`altered `. .. class:: FromExpr(fromlist=None, quals=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: fromlist :type: tuple @@ -2991,7 +2991,7 @@ be :meth:`altered `. .. class:: FuncCall(funcname=None, args=None, agg_order=None, agg_filter=None, over=None, agg_within_group=None, agg_star=None, agg_distinct=None, func_variadic=None, funcformat=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: funcname :type: tuple @@ -3051,7 +3051,7 @@ be :meth:`altered `. .. class:: FuncExpr(funcretset=None, funcvariadic=None, funcformat=None, args=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: funcretset :type: bool @@ -3071,7 +3071,7 @@ be :meth:`altered `. .. class:: FunctionParameter(name=None, argType=None, mode=None, defexpr=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -3096,7 +3096,7 @@ be :meth:`altered `. .. class:: GrantRoleStmt(granted_roles=None, grantee_roles=None, is_grant=None, opt=None, grantor=None, behavior=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: granted_roles :type: tuple @@ -3131,7 +3131,7 @@ be :meth:`altered `. .. class:: GrantStmt(is_grant=None, targtype=None, objtype=None, objects=None, privileges=None, grantees=None, grant_option=None, grantor=None, behavior=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: is_grant :type: bool @@ -3180,7 +3180,7 @@ be :meth:`altered `. .. class:: GroupingFunc(args=None, refs=None, agglevelsup=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: args :type: tuple @@ -3197,7 +3197,7 @@ be :meth:`altered `. .. class:: GroupingSet(kind=None, content=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: GroupingSetKind @@ -3211,7 +3211,7 @@ be :meth:`altered `. .. class:: ImportForeignSchemaStmt(server_name=None, remote_schema=None, local_schema=None, list_type=None, table_list=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: server_name :type: str @@ -3246,7 +3246,7 @@ be :meth:`altered `. .. class:: IndexElem(name=None, expr=None, indexcolname=None, collation=None, opclass=None, opclassopts=None, ordering=None, nulls_ordering=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -3291,7 +3291,7 @@ be :meth:`altered `. .. class:: IndexStmt(idxname=None, relation=None, accessMethod=None, tableSpace=None, indexParams=None, indexIncludingParams=None, options=None, whereClause=None, excludeOpNames=None, idxcomment=None, oldNumber=None, oldCreateSubid=None, oldFirstRelfilelocatorSubid=None, unique=None, nulls_not_distinct=None, primary=None, isconstraint=None, deferrable=None, initdeferred=None, transformed=None, concurrent=None, if_not_exists=None, reset_default_tblspc=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: idxname :type: str @@ -3414,7 +3414,7 @@ be :meth:`altered `. .. class:: InferClause(indexElems=None, whereClause=None, conname=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: indexElems :type: tuple @@ -3439,7 +3439,7 @@ be :meth:`altered `. .. class:: InferenceElem(expr=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: expr :type: Node @@ -3449,7 +3449,7 @@ be :meth:`altered `. .. class:: InlineCodeBlock(source_text=None, langIsTrusted=None, atomic=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: source_text :type: str @@ -3469,7 +3469,7 @@ be :meth:`altered `. .. class:: InsertStmt(relation=None, cols=None, selectStmt=None, onConflictClause=None, returningList=None, withClause=None, override=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -3509,7 +3509,7 @@ be :meth:`altered `. .. class:: Integer(ival=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: ival :type: long @@ -3517,7 +3517,7 @@ be :meth:`altered `. .. class:: IntoClause(rel=None, colNames=None, accessMethod=None, options=None, onCommit=None, tableSpaceName=None, viewQuery=None, skipData=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: rel :type: RangeVar* @@ -3560,7 +3560,7 @@ be :meth:`altered `. .. class:: JoinExpr(jointype=None, isNatural=None, larg=None, rarg=None, usingClause=None, join_using_alias=None, quals=None, alias=None, rtindex=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: jointype :type: JoinType @@ -3600,7 +3600,7 @@ be :meth:`altered `. .. class:: JsonAggConstructor(output=None, agg_filter=None, agg_order=None, over=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: output :type: JsonOutput* @@ -3630,7 +3630,7 @@ be :meth:`altered `. .. class:: JsonArrayAgg(constructor=None, arg=None, absent_on_null=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: constructor :type: JsonAggConstructor* @@ -3650,7 +3650,7 @@ be :meth:`altered `. .. class:: JsonArrayConstructor(exprs=None, output=None, absent_on_null=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: exprs :type: tuple @@ -3675,7 +3675,7 @@ be :meth:`altered `. .. class:: JsonArrayQueryConstructor(query=None, output=None, format=None, absent_on_null=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: query :type: Node @@ -3705,7 +3705,7 @@ be :meth:`altered `. .. class:: JsonConstructorExpr(type=None, args=None, func=None, coercion=None, returning=None, absent_on_null=None, unique=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: type :type: JsonConstructorType @@ -3746,7 +3746,7 @@ be :meth:`altered `. .. class:: JsonFormat(format_type=None, encoding=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: format_type :type: JsonFormatType @@ -3766,7 +3766,7 @@ be :meth:`altered `. .. class:: JsonIsPredicate(expr=None, format=None, item_type=None, unique_keys=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: expr :type: Node @@ -3796,7 +3796,7 @@ be :meth:`altered `. .. class:: JsonKeyValue(key=None, value=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: key :type: Expr* @@ -3811,7 +3811,7 @@ be :meth:`altered `. .. class:: JsonObjectAgg(constructor=None, arg=None, absent_on_null=None, unique=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: constructor :type: JsonAggConstructor* @@ -3836,7 +3836,7 @@ be :meth:`altered `. .. class:: JsonObjectConstructor(exprs=None, output=None, absent_on_null=None, unique=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: exprs :type: tuple @@ -3866,7 +3866,7 @@ be :meth:`altered `. .. class:: JsonOutput(typeName=None, returning=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeName :type: TypeName* @@ -3881,7 +3881,7 @@ be :meth:`altered `. .. class:: JsonReturning(format=None, typmod=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: format :type: JsonFormat* @@ -3896,7 +3896,7 @@ be :meth:`altered `. .. class:: JsonValueExpr(raw_expr=None, formatted_expr=None, format=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: raw_expr :type: Expr* @@ -3916,7 +3916,7 @@ be :meth:`altered `. .. class:: ListenStmt(conditionname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: conditionname :type: str @@ -3926,7 +3926,7 @@ be :meth:`altered `. .. class:: LoadStmt(filename=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: filename :type: str @@ -3936,7 +3936,7 @@ be :meth:`altered `. .. class:: LockStmt(relations=None, mode=None, nowait=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relations :type: tuple @@ -3956,7 +3956,7 @@ be :meth:`altered `. .. class:: LockingClause(lockedRels=None, strength=None, waitPolicy=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: lockedRels :type: tuple @@ -3974,7 +3974,7 @@ be :meth:`altered `. .. class:: MergeAction(matched=None, commandType=None, override=None, qual=None, targetList=None, updateColnos=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: matched :type: bool @@ -4005,7 +4005,7 @@ be :meth:`altered `. .. class:: MergeStmt(relation=None, sourceRelation=None, joinCondition=None, mergeWhenClauses=None, withClause=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -4035,7 +4035,7 @@ be :meth:`altered `. .. class:: MergeWhenClause(matched=None, commandType=None, override=None, condition=None, targetList=None, values=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: matched :type: bool @@ -4070,7 +4070,7 @@ be :meth:`altered `. .. class:: MinMaxExpr(op=None, args=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: op :type: MinMaxOp @@ -4084,7 +4084,7 @@ be :meth:`altered `. .. class:: MultiAssignRef(source=None, colno=None, ncolumns=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: source :type: Node @@ -4104,7 +4104,7 @@ be :meth:`altered `. .. class:: NamedArgExpr(arg=None, name=None, argnumber=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -4121,7 +4121,7 @@ be :meth:`altered `. .. class:: NotifyStmt(conditionname=None, payload=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: conditionname :type: str @@ -4136,7 +4136,7 @@ be :meth:`altered `. .. class:: NullTest(arg=None, nulltesttype=None, argisrow=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -4159,7 +4159,7 @@ be :meth:`altered `. .. class:: ObjectWithArgs(objname=None, objargs=None, objfuncargs=None, args_unspecified=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objname :type: tuple @@ -4184,7 +4184,7 @@ be :meth:`altered `. .. class:: OnConflictClause(action=None, infer=None, targetList=None, whereClause=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: action :type: OnConflictAction @@ -4214,7 +4214,7 @@ be :meth:`altered `. .. class:: OnConflictExpr(action=None, arbiterElems=None, arbiterWhere=None, onConflictSet=None, onConflictWhere=None, exclRelIndex=None, exclRelTlist=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: action :type: OnConflictAction @@ -4255,7 +4255,7 @@ be :meth:`altered `. .. class:: OpExpr(opretset=None, args=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: opretset :type: bool @@ -4269,7 +4269,7 @@ be :meth:`altered `. .. class:: PLAssignStmt(name=None, indirection=None, nnames=None, val=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -4299,7 +4299,7 @@ be :meth:`altered `. .. class:: Param(paramkind=None, paramid=None, paramtypmod=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: paramkind :type: ParamKind @@ -4320,7 +4320,7 @@ be :meth:`altered `. .. class:: ParamRef(number=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: number :type: int @@ -4335,7 +4335,7 @@ be :meth:`altered `. .. class:: PartitionBoundSpec(strategy=None, is_default=None, modulus=None, remainder=None, listdatums=None, lowerdatums=None, upperdatums=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: strategy :type: str @@ -4376,7 +4376,7 @@ be :meth:`altered `. .. class:: PartitionCmd(name=None, bound=None, concurrent=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: RangeVar* @@ -4394,7 +4394,7 @@ be :meth:`altered `. .. class:: PartitionElem(name=None, expr=None, collation=None, opclass=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -4424,7 +4424,7 @@ be :meth:`altered `. .. class:: PartitionRangeDatum(kind=None, value=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: PartitionRangeDatumKind @@ -4443,7 +4443,7 @@ be :meth:`altered `. .. class:: PartitionSpec(strategy=None, partParams=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: strategy :type: PartitionStrategy @@ -4461,7 +4461,7 @@ be :meth:`altered `. .. class:: PrepareStmt(name=None, argtypes=None, query=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -4481,7 +4481,7 @@ be :meth:`altered `. .. class:: PublicationObjSpec(pubobjtype=None, name=None, pubtable=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: pubobjtype :type: PublicationObjSpecType @@ -4502,7 +4502,7 @@ be :meth:`altered `. .. class:: PublicationTable(relation=None, whereClause=None, columns=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -4522,7 +4522,7 @@ be :meth:`altered `. .. class:: Query(commandType=None, querySource=None, canSetTag=None, utilityStmt=None, resultRelation=None, hasAggs=None, hasWindowFuncs=None, hasTargetSRFs=None, hasSubLinks=None, hasDistinctOn=None, hasRecursive=None, hasModifyingCTE=None, hasForUpdate=None, hasRowSecurity=None, isReturn=None, cteList=None, rtable=None, rteperminfos=None, jointree=None, mergeActionList=None, mergeUseOuterJoin=None, targetList=None, override=None, onConflict=None, returningList=None, groupClause=None, groupDistinct=None, groupingSets=None, havingQual=None, windowClause=None, distinctClause=None, sortClause=None, limitOffset=None, limitCount=None, limitOption=None, rowMarks=None, setOperations=None, constraintDeps=None, withCheckOptions=None, stmt_location=None, stmt_len=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: commandType :type: CmdType @@ -4694,7 +4694,7 @@ be :meth:`altered `. .. class:: RTEPermissionInfo(inh=None, requiredPerms=None, selectedCols=None, insertedCols=None, updatedCols=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: inh :type: bool @@ -4724,7 +4724,7 @@ be :meth:`altered `. .. class:: RangeFunction(lateral=None, ordinality=None, is_rowsfrom=None, functions=None, alias=None, coldeflist=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: lateral :type: bool @@ -4760,7 +4760,7 @@ be :meth:`altered `. .. class:: RangeSubselect(lateral=None, subquery=None, alias=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: lateral :type: bool @@ -4780,7 +4780,7 @@ be :meth:`altered `. .. class:: RangeTableFunc(lateral=None, docexpr=None, rowexpr=None, namespaces=None, columns=None, alias=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: lateral :type: bool @@ -4820,7 +4820,7 @@ be :meth:`altered `. .. class:: RangeTableFuncCol(colname=None, typeName=None, for_ordinality=None, is_not_null=None, colexpr=None, coldefexpr=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: colname :type: str @@ -4860,7 +4860,7 @@ be :meth:`altered `. .. class:: RangeTableSample(relation=None, method=None, args=None, repeatable=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: Node @@ -4890,7 +4890,7 @@ be :meth:`altered `. .. class:: RangeTblEntry(rtekind=None, relkind=None, rellockmode=None, tablesample=None, perminfoindex=None, subquery=None, security_barrier=None, jointype=None, joinmergedcols=None, joinaliasvars=None, joinleftcols=None, joinrightcols=None, join_using_alias=None, functions=None, funcordinality=None, tablefunc=None, values_lists=None, ctename=None, ctelevelsup=None, self_reference=None, coltypes=None, coltypmods=None, colcollations=None, enrname=None, enrtuples=None, alias=None, eref=None, lateral=None, inh=None, inFromCl=None, securityQuals=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: rtekind :type: RTEKind @@ -5042,7 +5042,7 @@ be :meth:`altered `. .. class:: RangeTblFunction(funcexpr=None, funccolcount=None, funccolnames=None, funccoltypes=None, funccoltypmods=None, funccolcollations=None, funcparams=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: funcexpr :type: Node @@ -5070,7 +5070,7 @@ be :meth:`altered `. .. class:: RangeTblRef(rtindex=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: rtindex :type: int @@ -5078,7 +5078,7 @@ be :meth:`altered `. .. class:: RangeVar(catalogname=None, schemaname=None, relname=None, inh=None, relpersistence=None, alias=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: catalogname :type: str @@ -5104,7 +5104,7 @@ be :meth:`altered `. .. class:: RawStmt(stmt=None, stmt_location=None, stmt_len=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: stmt :type: Node @@ -5124,7 +5124,7 @@ be :meth:`altered `. .. class:: ReassignOwnedStmt(roles=None, newrole=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: roles :type: tuple @@ -5135,7 +5135,7 @@ be :meth:`altered `. .. class:: RefreshMatViewStmt(concurrent=None, skipData=None, relation=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: concurrent :type: bool @@ -5155,7 +5155,7 @@ be :meth:`altered `. .. class:: ReindexStmt(kind=None, relation=None, name=None, params=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: ReindexObjectType @@ -5181,7 +5181,7 @@ be :meth:`altered `. .. class:: RelabelType(arg=None, resulttypmod=None, relabelformat=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Expr* @@ -5202,7 +5202,7 @@ be :meth:`altered `. .. class:: RenameStmt(renameType=None, relationType=None, relation=None, object=None, subname=None, newname=None, behavior=None, missing_ok=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: renameType :type: ObjectType @@ -5248,7 +5248,7 @@ be :meth:`altered `. .. class:: ReplicaIdentityStmt(identity_type=None, name=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: identity_type :type: str @@ -5259,7 +5259,7 @@ be :meth:`altered `. .. class:: ResTarget(name=None, indirection=None, val=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -5284,7 +5284,7 @@ be :meth:`altered `. .. class:: ReturnStmt(returnval=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: returnval :type: Node @@ -5292,7 +5292,7 @@ be :meth:`altered `. .. class:: RoleSpec(roletype=None, rolename=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: roletype :type: RoleSpecType @@ -5312,7 +5312,7 @@ be :meth:`altered `. .. class:: RowCompareExpr(rctype=None, opnos=None, opfamilies=None, inputcollids=None, largs=None, rargs=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: rctype :type: RowCompareType @@ -5335,7 +5335,7 @@ be :meth:`altered `. .. class:: RowExpr(args=None, row_format=None, colnames=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: args :type: tuple @@ -5356,7 +5356,7 @@ be :meth:`altered `. .. class:: RowMarkClause(rti=None, strength=None, waitPolicy=None, pushedDown=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: rti :type: Index @@ -5379,7 +5379,7 @@ be :meth:`altered `. .. class:: RuleStmt(relation=None, rulename=None, whereClause=None, event=None, instead=None, actions=None, replace=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -5419,7 +5419,7 @@ be :meth:`altered `. .. class:: SQLValueFunction(op=None, typmod=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: op :type: SQLValueFunctionOp @@ -5437,7 +5437,7 @@ be :meth:`altered `. .. class:: ScalarArrayOpExpr(useOr=None, args=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: useOr :type: bool @@ -5451,7 +5451,7 @@ be :meth:`altered `. .. class:: SecLabelStmt(objtype=None, object=None, provider=None, label=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: objtype :type: ObjectType @@ -5476,7 +5476,7 @@ be :meth:`altered `. .. class:: SelectStmt(distinctClause=None, intoClause=None, targetList=None, fromClause=None, whereClause=None, groupClause=None, groupDistinct=None, havingClause=None, windowClause=None, valuesLists=None, sortClause=None, limitOffset=None, limitCount=None, limitOption=None, lockingClause=None, withClause=None, op=None, all=None, larg=None, rarg=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: distinctClause :type: tuple @@ -5582,7 +5582,7 @@ be :meth:`altered `. .. class:: SetOperationStmt(op=None, all=None, larg=None, rarg=None, colTypes=None, colTypmods=None, colCollations=None, groupClauses=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: op :type: SetOperation @@ -5619,7 +5619,7 @@ be :meth:`altered `. .. class:: SetToDefault(typeMod=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: typeMod :type: int32 @@ -5630,7 +5630,7 @@ be :meth:`altered `. .. class:: SortBy(node=None, sortby_dir=None, sortby_nulls=None, useOp=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: node :type: Node @@ -5660,7 +5660,7 @@ be :meth:`altered `. .. class:: SortGroupClause(tleSortGroupRef=None, nulls_first=None, hashable=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: tleSortGroupRef :type: Index @@ -5678,7 +5678,7 @@ be :meth:`altered `. .. class:: StatsElem(name=None, expr=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -5693,7 +5693,7 @@ be :meth:`altered `. .. class:: String(sval=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: sval :type: str @@ -5701,7 +5701,7 @@ be :meth:`altered `. .. class:: SubLink(subLinkType=None, subLinkId=None, testexpr=None, operName=None, subselect=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subLinkType :type: SubLinkType @@ -5730,7 +5730,7 @@ be :meth:`altered `. .. class:: SubPlan(subLinkType=None, testexpr=None, paramIds=None, plan_id=None, plan_name=None, firstColTypmod=None, useHashTable=None, unknownEqFalse=None, parallel_safe=None, setParam=None, parParam=None, args=None, startup_cost=None, per_call_cost=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: subLinkType :type: SubLinkType @@ -5807,7 +5807,7 @@ be :meth:`altered `. .. class:: SubscriptingRef(reftypmod=None, refupperindexpr=None, reflowerindexpr=None, refexpr=None, refassgnexpr=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: reftypmod :type: int32 @@ -5827,7 +5827,7 @@ be :meth:`altered `. .. class:: TableFunc(ns_uris=None, ns_names=None, docexpr=None, rowexpr=None, colnames=None, coltypes=None, coltypmods=None, colcollations=None, colexprs=None, coldefexprs=None, notnulls=None, ordinalitycol=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: ns_uris :type: tuple @@ -5871,7 +5871,7 @@ be :meth:`altered `. .. class:: TableLikeClause(relation=None, options=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -5884,7 +5884,7 @@ be :meth:`altered `. .. class:: TableSampleClause(args=None, repeatable=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: args :type: tuple @@ -5899,7 +5899,7 @@ be :meth:`altered `. .. class:: TargetEntry(expr=None, resno=None, resname=None, ressortgroupref=None, resorigcol=None, resjunk=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: expr :type: Expr* @@ -5922,7 +5922,7 @@ be :meth:`altered `. .. class:: TransactionStmt(kind=None, options=None, savepoint_name=None, gid=None, chain=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: TransactionStmtKind @@ -5950,7 +5950,7 @@ be :meth:`altered `. .. class:: TriggerTransition(name=None, isNew=None, isTable=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -5964,7 +5964,7 @@ be :meth:`altered `. .. class:: TruncateStmt(relations=None, restart_seqs=None, behavior=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relations :type: tuple @@ -5984,7 +5984,7 @@ be :meth:`altered `. .. class:: TypeCast(arg=None, typeName=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: arg :type: Node @@ -6004,7 +6004,7 @@ be :meth:`altered `. .. class:: TypeName(names=None, setof=None, pct_type=None, typmods=None, typemod=None, arrayBounds=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: names :type: tuple @@ -6044,7 +6044,7 @@ be :meth:`altered `. .. class:: UnlistenStmt(conditionname=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: conditionname :type: str @@ -6054,7 +6054,7 @@ be :meth:`altered `. .. class:: UpdateStmt(relation=None, targetList=None, whereClause=None, fromClause=None, returningList=None, withClause=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -6089,7 +6089,7 @@ be :meth:`altered `. .. class:: VacuumRelation(relation=None, va_cols=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: relation :type: RangeVar* @@ -6104,7 +6104,7 @@ be :meth:`altered `. .. class:: VacuumStmt(options=None, rels=None, is_vacuumcmd=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: options :type: tuple @@ -6124,7 +6124,7 @@ be :meth:`altered `. .. class:: Var(varno=None, varattno=None, vartypmod=None, varnullingrels=None, varlevelsup=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: varno :type: int @@ -6147,7 +6147,7 @@ be :meth:`altered `. .. class:: VariableSetStmt(kind=None, name=None, args=None, is_local=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: VariableSetKind @@ -6170,7 +6170,7 @@ be :meth:`altered `. .. class:: VariableShowStmt(name=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -6178,7 +6178,7 @@ be :meth:`altered `. .. class:: ViewStmt(view=None, aliases=None, query=None, replace=None, options=None, withCheckOption=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: view :type: RangeVar* @@ -6213,7 +6213,7 @@ be :meth:`altered `. .. class:: WindowClause(name=None, refname=None, partitionClause=None, orderClause=None, frameOptions=None, startOffset=None, endOffset=None, runCondition=None, inRangeAsc=None, inRangeNullsFirst=None, winref=None, copiedOrder=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -6264,7 +6264,7 @@ be :meth:`altered `. .. class:: WindowDef(name=None, refname=None, partitionClause=None, orderClause=None, frameOptions=None, startOffset=None, endOffset=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: name :type: str @@ -6309,7 +6309,7 @@ be :meth:`altered `. .. class:: WindowFunc(args=None, aggfilter=None, winref=None, winstar=None, winagg=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: args :type: tuple @@ -6332,7 +6332,7 @@ be :meth:`altered `. .. class:: WithCheckOption(kind=None, relname=None, polname=None, qual=None, cascaded=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: kind :type: WCOKind @@ -6362,7 +6362,7 @@ be :meth:`altered `. .. class:: WithClause(ctes=None, recursive=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: ctes :type: tuple @@ -6382,7 +6382,7 @@ be :meth:`altered `. .. class:: XmlExpr(op=None, name=None, named_args=None, arg_names=None, args=None, xmloption=None, indent=None, typmod=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: op :type: XmlExprOp @@ -6414,7 +6414,7 @@ be :meth:`altered `. .. class:: XmlSerialize(xmloption=None, expr=None, typeName=None, indent=None, location=None) - Wrapper for the `homonymous `__ parser node. + Wrapper for the `homonymous `__ parser node. .. attribute:: xmloption :type: XmlOptionType diff --git a/docs/ddl.rst b/docs/ddl.rst index 7c5babb..0bd26f1 100644 --- a/docs/ddl.rst +++ b/docs/ddl.rst @@ -16,136 +16,136 @@ .. function:: access_priv(node, output) - Pretty print a `node` of type `AccessPriv `__ to the `output` stream. + Pretty print a `node` of type `AccessPriv `__ to the `output` stream. .. index:: AlterCollationStmt .. function:: alter_collation_stmt(node, output) - Pretty print a `node` of type `AlterCollationStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterCollationStmt `__ to the `output` stream. .. index:: AlterDatabaseStmt .. function:: alter_database_stmt(node, output) - Pretty print a `node` of type `AlterDatabaseStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterDatabaseStmt `__ to the `output` stream. .. index:: AlterDatabaseSetStmt .. function:: alter_database_set_stmt(node, output) - Pretty print a `node` of type `AlterDatabaseSetStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterDatabaseSetStmt `__ to the `output` stream. .. index:: AlterExtensionStmt .. function:: alter_extension_stmt(node, output) - Pretty print a `node` of type `AlterExtensionStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterExtensionStmt `__ to the `output` stream. .. index:: pair: AlterExtensionStmt;DefElem .. function:: alter_extension_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterExtensionStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterExtensionStmt `__, to the `output` stream. .. index:: AlterExtensionContentsStmt .. function:: alter_extension_contents_stmt(node, output) - Pretty print a `node` of type `AlterExtensionContentsStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterExtensionContentsStmt `__ to the `output` stream. .. index:: AlterEnumStmt .. function:: alter_enum_stmt(node, output) - Pretty print a `node` of type `AlterEnumStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterEnumStmt `__ to the `output` stream. .. index:: AlterDefaultPrivilegesStmt .. function:: alter_default_privileges_stmt(node, output) - Pretty print a `node` of type `AlterDefaultPrivilegesStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterDefaultPrivilegesStmt `__ to the `output` stream. .. index:: AlterFunctionStmt .. function:: alter_function_stmt(node, output) - Pretty print a `node` of type `AlterFunctionStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterFunctionStmt `__ to the `output` stream. .. index:: AlterObjectSchemaStmt .. function:: alter_object_schema_stmt(node, output) - Pretty print a `node` of type `AlterObjectSchemaStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterObjectSchemaStmt `__ to the `output` stream. .. index:: AlterOperatorStmt .. function:: alter_operator_stmt(node, output) - Pretty print a `node` of type `AlterOperatorStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterOperatorStmt `__ to the `output` stream. .. index:: pair: AlterOperatorStmt;DefElem .. function:: alter_operator_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterOperatorStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterOperatorStmt `__, to the `output` stream. .. index:: AlterOpFamilyStmt .. function:: alter_op_family_stmt(node, output) - Pretty print a `node` of type `AlterOpFamilyStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterOpFamilyStmt `__ to the `output` stream. .. index:: AlterOwnerStmt .. function:: alter_owner_stmt(node, output) - Pretty print a `node` of type `AlterOwnerStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterOwnerStmt `__ to the `output` stream. .. index:: AlterPolicyStmt .. function:: alter_policy_stmt(node, output) - Pretty print a `node` of type `AlterPolicyStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterPolicyStmt `__ to the `output` stream. .. index:: AlterRoleStmt .. function:: alter_role_stmt(node, output) - Pretty print a `node` of type `AlterRoleStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterRoleStmt `__ to the `output` stream. .. index:: AlterSeqStmt .. function:: alter_seq_stmt(node, output) - Pretty print a `node` of type `AlterSeqStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterSeqStmt `__ to the `output` stream. .. index:: AlterTableSpaceOptionsStmt .. function:: alter_tablespace_options_stmt(node, output) - Pretty print a `node` of type `AlterTableSpaceOptionsStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterTableSpaceOptionsStmt `__ to the `output` stream. .. index:: AlterTableStmt .. function:: alter_table_stmt(node, output) - Pretty print a `node` of type `AlterTableStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterTableStmt `__ to the `output` stream. .. index:: pair: AlterTableStmt;RangeVar .. function:: range_var(node, output) - Pretty print a `node` of type `RangeVar `__, when it is inside a `AlterTableStmt `__, to the `output` stream. + Pretty print a `node` of type `RangeVar `__, when it is inside a `AlterTableStmt `__, to the `output` stream. .. index:: AlterTableCmd .. function:: alter_table_cmd(node, output) - Pretty print a `node` of type `AlterTableCmd `__ to the `output` stream. + Pretty print a `node` of type `AlterTableCmd `__ to the `output` stream. .. index:: pair: AlterTableCmd;DefElem @@ -164,210 +164,210 @@ .. function:: alter_table_cmd_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterTableCmd `__ or a `CreatePublicationStmt `__ or a `CreateStmt `__ or a `IndexStmt `__ or a `IntoClause `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterTableCmd `__ or a `CreatePublicationStmt `__ or a `CreateStmt `__ or a `IndexStmt `__ or a `IntoClause `__, to the `output` stream. .. index:: AlterTableMoveAllStmt .. function:: alter_table_move_all_stmt(node, output) - Pretty print a `node` of type `AlterTableMoveAllStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterTableMoveAllStmt `__ to the `output` stream. .. index:: AlterTSConfigurationStmt .. function:: alter_ts_configuration_stmt(node, output) - Pretty print a `node` of type `AlterTSConfigurationStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterTSConfigurationStmt `__ to the `output` stream. .. index:: AlterTSDictionaryStmt .. function:: alter_ts_dictionary_stmt(node, output) - Pretty print a `node` of type `AlterTSDictionaryStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterTSDictionaryStmt `__ to the `output` stream. .. index:: AlterStatsStmt .. function:: alter_stats_stmt(node, output) - Pretty print a `node` of type `AlterStatsStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterStatsStmt `__ to the `output` stream. .. index:: AlterSubscriptionStmt .. function:: alter_subscription_stmt(node, output) - Pretty print a `node` of type `AlterSubscriptionStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterSubscriptionStmt `__ to the `output` stream. .. index:: AlterPublicationStmt .. function:: alter_publication_stmt(node, output) - Pretty print a `node` of type `AlterPublicationStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterPublicationStmt `__ to the `output` stream. .. index:: AlterFdwStmt .. function:: alter_fdw_stmt(node, output) - Pretty print a `node` of type `AlterFdwStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterFdwStmt `__ to the `output` stream. .. index:: pair: AlterFdwStmt;DefElem .. function:: alter_fdw_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterFdwStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterFdwStmt `__, to the `output` stream. .. index:: AlterForeignServerStmt .. function:: alter_foreign_server_stmt(node, output) - Pretty print a `node` of type `AlterForeignServerStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterForeignServerStmt `__ to the `output` stream. .. index:: AlterUserMappingStmt .. function:: alter_user_mapping_stmt(node, output) - Pretty print a `node` of type `AlterUserMappingStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterUserMappingStmt `__ to the `output` stream. .. index:: AlterRoleSetStmt .. function:: alter_role_set_stmt(node, output) - Pretty print a `node` of type `AlterRoleSetStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterRoleSetStmt `__ to the `output` stream. .. index:: AlterDomainStmt .. function:: alter_domain_stmt(node, output) - Pretty print a `node` of type `AlterDomainStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterDomainStmt `__ to the `output` stream. .. index:: AlterEventTrigStmt .. function:: alter_event_trig_stmt(node, output) - Pretty print a `node` of type `AlterEventTrigStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterEventTrigStmt `__ to the `output` stream. .. index:: AlterTypeStmt .. function:: alter_type_stmt(node, output) - Pretty print a `node` of type `AlterTypeStmt `__ to the `output` stream. + Pretty print a `node` of type `AlterTypeStmt `__ to the `output` stream. .. index:: CheckPointStmt .. function:: check_point_stmt(node, output) - Pretty print a `node` of type `CheckPointStmt `__ to the `output` stream. + Pretty print a `node` of type `CheckPointStmt `__ to the `output` stream. .. index:: ClusterStmt .. function:: cluster_stmt(node, output) - Pretty print a `node` of type `ClusterStmt `__ to the `output` stream. + Pretty print a `node` of type `ClusterStmt `__ to the `output` stream. .. index:: ColumnDef .. function:: column_def(node, output) - Pretty print a `node` of type `ColumnDef `__ to the `output` stream. + Pretty print a `node` of type `ColumnDef `__ to the `output` stream. .. index:: CommentStmt .. function:: comment_stmt(node, output) - Pretty print a `node` of type `CommentStmt `__ to the `output` stream. + Pretty print a `node` of type `CommentStmt `__ to the `output` stream. .. index:: CompositeTypeStmt .. function:: composite_type_stmt(node, output) - Pretty print a `node` of type `CompositeTypeStmt `__ to the `output` stream. + Pretty print a `node` of type `CompositeTypeStmt `__ to the `output` stream. .. index:: pair: CompositeTypeStmt;RangeVar .. function:: composite_type_stmt_range_var(node, output) - Pretty print a `node` of type `RangeVar `__, when it is inside a `CompositeTypeStmt `__, to the `output` stream. + Pretty print a `node` of type `RangeVar `__, when it is inside a `CompositeTypeStmt `__, to the `output` stream. .. index:: Constraint .. function:: constraint(node, output) - Pretty print a `node` of type `Constraint `__ to the `output` stream. + Pretty print a `node` of type `Constraint `__ to the `output` stream. .. index:: CreateAmStmt .. function:: create_am_stmt(node, output) - Pretty print a `node` of type `CreateAmStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateAmStmt `__ to the `output` stream. .. index:: CreatedbStmt .. function:: create_db_stmt(node, output) - Pretty print a `node` of type `CreatedbStmt `__ to the `output` stream. + Pretty print a `node` of type `CreatedbStmt `__ to the `output` stream. .. index:: pair: CreatedbStmt;DefElem .. function:: create_db_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `CreatedbStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `CreatedbStmt `__, to the `output` stream. .. index:: CreateCastStmt .. function:: create_cast_stmt(node, output) - Pretty print a `node` of type `CreateCastStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateCastStmt `__ to the `output` stream. .. index:: CreateConversionStmt .. function:: create_conversion_stmt(node, output) - Pretty print a `node` of type `CreateConversionStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateConversionStmt `__ to the `output` stream. .. index:: CreateDomainStmt .. function:: create_domain_stmt(node, output) - Pretty print a `node` of type `CreateDomainStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateDomainStmt `__ to the `output` stream. .. index:: CreateEnumStmt .. function:: create_enum_stmt(node, output) - Pretty print a `node` of type `CreateEnumStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateEnumStmt `__ to the `output` stream. .. index:: CreateEventTrigStmt .. function:: create_event_trig_stmt(node, output) - Pretty print a `node` of type `CreateEventTrigStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateEventTrigStmt `__ to the `output` stream. .. index:: pair: CreateEventTrigStmt;DefElem .. function:: create_event_trig_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `CreateEventTrigStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `CreateEventTrigStmt `__, to the `output` stream. .. index:: CreateExtensionStmt .. function:: create_extension_stmt(node, output) - Pretty print a `node` of type `CreateExtensionStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateExtensionStmt `__ to the `output` stream. .. index:: pair: CreateExtensionStmt;DefElem .. function:: create_extension_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `CreateExtensionStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `CreateExtensionStmt `__, to the `output` stream. .. index:: CreateFdwStmt .. function:: create_fdw_stmt(node, output) - Pretty print a `node` of type `CreateFdwStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateFdwStmt `__ to the `output` stream. .. index:: pair: ColumnDef;DefElem @@ -380,19 +380,19 @@ .. function:: create_fdw_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `ColumnDef `__ or a `CreateUserMappingStmt `__ or a `CreateFdwStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `ColumnDef `__ or a `CreateUserMappingStmt `__ or a `CreateFdwStmt `__, to the `output` stream. .. index:: CreateForeignServerStmt .. function:: create_foreign_server_stmt(node, output) - Pretty print a `node` of type `CreateForeignServerStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateForeignServerStmt `__ to the `output` stream. .. index:: CreateForeignTableStmt .. function:: create_foreign_table_stmt(node, output) - Pretty print a `node` of type `CreateForeignTableStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateForeignTableStmt `__ to the `output` stream. .. index:: pair: CreateForeignTableStmt;DefElem @@ -402,13 +402,13 @@ .. function:: create_foreign_table_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `CreateForeignTableStmt `__ or a `CreateForeignServerStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `CreateForeignTableStmt `__ or a `CreateForeignServerStmt `__, to the `output` stream. .. index:: CreateFunctionStmt .. function:: create_function_stmt(node, output) - Pretty print a `node` of type `CreateFunctionStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateFunctionStmt `__ to the `output` stream. .. index:: pair: AlterFunctionStmt;DefElem @@ -421,55 +421,55 @@ .. function:: create_function_option(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterFunctionStmt `__ or a `CreateFunctionStmt `__ or a `DoStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterFunctionStmt `__ or a `CreateFunctionStmt `__ or a `DoStmt `__, to the `output` stream. .. index:: CreateOpClassStmt .. function:: create_opclass_stmt(node, output) - Pretty print a `node` of type `CreateOpClassStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateOpClassStmt `__ to the `output` stream. .. index:: CreateOpClassItem .. function:: create_opclass_item(node, output) - Pretty print a `node` of type `CreateOpClassItem `__ to the `output` stream. + Pretty print a `node` of type `CreateOpClassItem `__ to the `output` stream. .. index:: CreateOpFamilyStmt .. function:: create_op_family_stmt(node, output) - Pretty print a `node` of type `CreateOpFamilyStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateOpFamilyStmt `__ to the `output` stream. .. index:: CreatePLangStmt .. function:: create_plang_stmt(node, output) - Pretty print a `node` of type `CreatePLangStmt `__ to the `output` stream. + Pretty print a `node` of type `CreatePLangStmt `__ to the `output` stream. .. index:: CreatePolicyStmt .. function:: create_policy_stmt(node, output) - Pretty print a `node` of type `CreatePolicyStmt `__ to the `output` stream. + Pretty print a `node` of type `CreatePolicyStmt `__ to the `output` stream. .. index:: CreatePublicationStmt .. function:: create_publication_stmt(node, output) - Pretty print a `node` of type `CreatePublicationStmt `__ to the `output` stream. + Pretty print a `node` of type `CreatePublicationStmt `__ to the `output` stream. .. index:: CreateRangeStmt .. function:: create_range_stmt(node, output) - Pretty print a `node` of type `CreateRangeStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateRangeStmt `__ to the `output` stream. .. index:: CreateRoleStmt .. function:: create_role_stmt(node, output) - Pretty print a `node` of type `CreateRoleStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateRoleStmt `__ to the `output` stream. .. index:: pair: AlterRoleStmt;DefElem @@ -479,19 +479,19 @@ .. function:: create_or_alter_role_option(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterRoleStmt `__ or a `CreateRoleStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterRoleStmt `__ or a `CreateRoleStmt `__, to the `output` stream. .. index:: CreateSchemaStmt .. function:: create_schema_stmt(node, output) - Pretty print a `node` of type `CreateSchemaStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateSchemaStmt `__ to the `output` stream. .. index:: CreateSeqStmt .. function:: create_seq_stmt(node, output) - Pretty print a `node` of type `CreateSeqStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateSeqStmt `__ to the `output` stream. .. index:: pair: Constraint;DefElem @@ -504,37 +504,37 @@ .. function:: create_seq_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `Constraint `__ or a `CreateSeqStmt `__ or a `AlterSeqStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `Constraint `__ or a `CreateSeqStmt `__ or a `AlterSeqStmt `__, to the `output` stream. .. index:: CreateStatsStmt .. function:: create_stats_stmt(node, output) - Pretty print a `node` of type `CreateStatsStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateStatsStmt `__ to the `output` stream. .. index:: CreateStmt .. function:: create_stmt(node, output) - Pretty print a `node` of type `CreateStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateStmt `__ to the `output` stream. .. index:: CreateTableAsStmt .. function:: create_table_as_stmt(node, output) - Pretty print a `node` of type `CreateTableAsStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateTableAsStmt `__ to the `output` stream. .. index:: CreateTableSpaceStmt .. function:: create_table_space_stmt(node, output) - Pretty print a `node` of type `CreateTableSpaceStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateTableSpaceStmt `__ to the `output` stream. .. index:: CreateTrigStmt .. function:: create_trig_stmt(node, output) - Pretty print a `node` of type `CreateTrigStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateTrigStmt `__ to the `output` stream. .. index:: pair: AlterSubscriptionStmt;DefElem @@ -544,381 +544,381 @@ .. function:: create_subscription_stmt_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `AlterSubscriptionStmt `__ or a `CreateSubscriptionStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `AlterSubscriptionStmt `__ or a `CreateSubscriptionStmt `__, to the `output` stream. .. index:: CreateSubscriptionStmt .. function:: create_subscription_stmt(node, output) - Pretty print a `node` of type `CreateSubscriptionStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateSubscriptionStmt `__ to the `output` stream. .. index:: CurrentOfExpr .. function:: current_of_expr(node, output) - Pretty print a `node` of type `CurrentOfExpr `__ to the `output` stream. + Pretty print a `node` of type `CurrentOfExpr `__ to the `output` stream. .. index:: CreateTransformStmt .. function:: create_transform_stmt(node, output) - Pretty print a `node` of type `CreateTransformStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateTransformStmt `__ to the `output` stream. .. index:: ClosePortalStmt .. function:: close_portal_stmt(node, output) - Pretty print a `node` of type `ClosePortalStmt `__ to the `output` stream. + Pretty print a `node` of type `ClosePortalStmt `__ to the `output` stream. .. index:: CreateUserMappingStmt .. function:: create_user_mapping_stmt(node, output) - Pretty print a `node` of type `CreateUserMappingStmt `__ to the `output` stream. + Pretty print a `node` of type `CreateUserMappingStmt `__ to the `output` stream. .. index:: DeallocateStmt .. function:: deallocate_stmt(node, output) - Pretty print a `node` of type `DeallocateStmt `__ to the `output` stream. + Pretty print a `node` of type `DeallocateStmt `__ to the `output` stream. .. index:: DefineStmt .. function:: define_stmt(node, output) - Pretty print a `node` of type `DefineStmt `__ to the `output` stream. + Pretty print a `node` of type `DefineStmt `__ to the `output` stream. .. index:: DefElem .. function:: def_elem(node, output) - Pretty print a `node` of type `DefElem `__ to the `output` stream. + Pretty print a `node` of type `DefElem `__ to the `output` stream. .. index:: pair: DefineStmt;DefElem .. function:: define_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `DefineStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `DefineStmt `__, to the `output` stream. .. index:: DiscardStmt .. function:: discard_stmt(node, output) - Pretty print a `node` of type `DiscardStmt `__ to the `output` stream. + Pretty print a `node` of type `DiscardStmt `__ to the `output` stream. .. index:: DoStmt .. function:: do_stmt(node, output) - Pretty print a `node` of type `DoStmt `__ to the `output` stream. + Pretty print a `node` of type `DoStmt `__ to the `output` stream. .. index:: DropdbStmt .. function:: drop_db_stmt(node, output) - Pretty print a `node` of type `DropdbStmt `__ to the `output` stream. + Pretty print a `node` of type `DropdbStmt `__ to the `output` stream. .. index:: DropOwnedStmt .. function:: drop_owned_stmt(node, output) - Pretty print a `node` of type `DropOwnedStmt `__ to the `output` stream. + Pretty print a `node` of type `DropOwnedStmt `__ to the `output` stream. .. index:: DropRoleStmt .. function:: drop_role_stmt(node, output) - Pretty print a `node` of type `DropRoleStmt `__ to the `output` stream. + Pretty print a `node` of type `DropRoleStmt `__ to the `output` stream. .. index:: DropStmt .. function:: drop_stmt(node, output) - Pretty print a `node` of type `DropStmt `__ to the `output` stream. + Pretty print a `node` of type `DropStmt `__ to the `output` stream. .. index:: DropSubscriptionStmt .. function:: drop_subscription_stmt(node, output) - Pretty print a `node` of type `DropSubscriptionStmt `__ to the `output` stream. + Pretty print a `node` of type `DropSubscriptionStmt `__ to the `output` stream. .. index:: DropTableSpaceStmt .. function:: drop_table_space_stmt(node, output) - Pretty print a `node` of type `DropTableSpaceStmt `__ to the `output` stream. + Pretty print a `node` of type `DropTableSpaceStmt `__ to the `output` stream. .. index:: DropUserMappingStmt .. function:: drop_user_mapping_stmt(node, output) - Pretty print a `node` of type `DropUserMappingStmt `__ to the `output` stream. + Pretty print a `node` of type `DropUserMappingStmt `__ to the `output` stream. .. index:: FunctionParameter .. function:: function_parameter(node, output) - Pretty print a `node` of type `FunctionParameter `__ to the `output` stream. + Pretty print a `node` of type `FunctionParameter `__ to the `output` stream. .. index:: GrantStmt .. function:: grant_stmt(node, output) - Pretty print a `node` of type `GrantStmt `__ to the `output` stream. + Pretty print a `node` of type `GrantStmt `__ to the `output` stream. .. index:: GrantRoleStmt .. function:: grant_role_stmt(node, output) - Pretty print a `node` of type `GrantRoleStmt `__ to the `output` stream. + Pretty print a `node` of type `GrantRoleStmt `__ to the `output` stream. .. index:: pair: GrantRoleStmt;DefElem .. function:: grant_role_stmt_opt(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `GrantRoleStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `GrantRoleStmt `__, to the `output` stream. .. index:: ImportForeignSchemaStmt .. function:: import_foreign_schema_stmt(node, output) - Pretty print a `node` of type `ImportForeignSchemaStmt `__ to the `output` stream. + Pretty print a `node` of type `ImportForeignSchemaStmt `__ to the `output` stream. .. index:: IndexStmt .. function:: index_stmt(node, output) - Pretty print a `node` of type `IndexStmt `__ to the `output` stream. + Pretty print a `node` of type `IndexStmt `__ to the `output` stream. .. index:: LoadStmt .. function:: load_stmt(node, output) - Pretty print a `node` of type `LoadStmt `__ to the `output` stream. + Pretty print a `node` of type `LoadStmt `__ to the `output` stream. .. index:: LockStmt .. function:: lock_stmt(node, output) - Pretty print a `node` of type `LockStmt `__ to the `output` stream. + Pretty print a `node` of type `LockStmt `__ to the `output` stream. .. index:: NotifyStmt .. function:: notify_stmt(node, output) - Pretty print a `node` of type `NotifyStmt `__ to the `output` stream. + Pretty print a `node` of type `NotifyStmt `__ to the `output` stream. .. index:: ObjectWithArgs .. function:: object_with_args(node, output) - Pretty print a `node` of type `ObjectWithArgs `__ to the `output` stream. + Pretty print a `node` of type `ObjectWithArgs `__ to the `output` stream. .. index:: pair: AlterObjectSchemaStmt;ObjectWithArgs .. function:: alter_object_schema_stmt_object_with_args(node, output) - Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `AlterObjectSchemaStmt `__, to the `output` stream. + Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `AlterObjectSchemaStmt `__, to the `output` stream. .. index:: pair: AlterOperatorStmt;ObjectWithArgs .. function:: alter_operator_stmt_object_with_args(node, output) - Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `AlterOperatorStmt `__, to the `output` stream. + Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `AlterOperatorStmt `__, to the `output` stream. .. index:: pair: AlterOwnerStmt;ObjectWithArgs .. function:: alter_owner_stmt_object_with_args(node, output) - Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `AlterOwnerStmt `__, to the `output` stream. + Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `AlterOwnerStmt `__, to the `output` stream. .. index:: pair: CommentStmt;ObjectWithArgs .. function:: comment_stmt_object_with_args(node, output) - Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `CommentStmt `__, to the `output` stream. + Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `CommentStmt `__, to the `output` stream. .. index:: pair: DropStmt;ObjectWithArgs .. function:: drop_stmt_object_with_args(node, output) - Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `DropStmt `__, to the `output` stream. + Pretty print a `node` of type `ObjectWithArgs `__, when it is inside a `DropStmt `__, to the `output` stream. .. index:: PartitionBoundSpec .. function:: partition_bound_spec(node, output) - Pretty print a `node` of type `PartitionBoundSpec `__ to the `output` stream. + Pretty print a `node` of type `PartitionBoundSpec `__ to the `output` stream. .. index:: PartitionCmd .. function:: partition_cmd(node, output) - Pretty print a `node` of type `PartitionCmd `__ to the `output` stream. + Pretty print a `node` of type `PartitionCmd `__ to the `output` stream. .. index:: PartitionElem .. function:: partition_elem(node, output) - Pretty print a `node` of type `PartitionElem `__ to the `output` stream. + Pretty print a `node` of type `PartitionElem `__ to the `output` stream. .. index:: PartitionRangeDatum .. function:: partition_range_datum(node, output) - Pretty print a `node` of type `PartitionRangeDatum `__ to the `output` stream. + Pretty print a `node` of type `PartitionRangeDatum `__ to the `output` stream. .. index:: PartitionSpec .. function:: partition_spec(node, output) - Pretty print a `node` of type `PartitionSpec `__ to the `output` stream. + Pretty print a `node` of type `PartitionSpec `__ to the `output` stream. .. index:: PublicationObjSpec .. function:: publication_obj_spec(node, output) - Pretty print a `node` of type `PublicationObjSpec `__ to the `output` stream. + Pretty print a `node` of type `PublicationObjSpec `__ to the `output` stream. .. index:: PublicationTable .. function:: publication_table(node, output) - Pretty print a `node` of type `PublicationTable `__ to the `output` stream. + Pretty print a `node` of type `PublicationTable `__ to the `output` stream. .. index:: ReindexStmt .. function:: reindex_stmt(node, output) - Pretty print a `node` of type `ReindexStmt `__ to the `output` stream. + Pretty print a `node` of type `ReindexStmt `__ to the `output` stream. .. index:: pair: ReindexStmt;DefElem .. function:: reindex_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `ReindexStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `ReindexStmt `__, to the `output` stream. .. index:: RenameStmt .. function:: rename_stmt(node, output) - Pretty print a `node` of type `RenameStmt `__ to the `output` stream. + Pretty print a `node` of type `RenameStmt `__ to the `output` stream. .. index:: pair: RenameStmt;RangeVar .. function:: rename_stmt_range_var(node, output) - Pretty print a `node` of type `RangeVar `__, when it is inside a `RenameStmt `__, to the `output` stream. + Pretty print a `node` of type `RangeVar `__, when it is inside a `RenameStmt `__, to the `output` stream. .. index:: ReplicaIdentityStmt .. function:: replica_identity_stmt(node, output) - Pretty print a `node` of type `ReplicaIdentityStmt `__ to the `output` stream. + Pretty print a `node` of type `ReplicaIdentityStmt `__ to the `output` stream. .. index:: RoleSpec .. function:: role_spec(node, output) - Pretty print a `node` of type `RoleSpec `__ to the `output` stream. + Pretty print a `node` of type `RoleSpec `__ to the `output` stream. .. index:: RuleStmt .. function:: rule_stmt_printer(node, output) - Pretty print a `node` of type `RuleStmt `__ to the `output` stream. + Pretty print a `node` of type `RuleStmt `__ to the `output` stream. .. index:: RefreshMatViewStmt .. function:: refresh_mat_view_stmt(node, output) - Pretty print a `node` of type `RefreshMatViewStmt `__ to the `output` stream. + Pretty print a `node` of type `RefreshMatViewStmt `__ to the `output` stream. .. index:: ReassignOwnedStmt .. function:: reassign_owned_stmt(node, output) - Pretty print a `node` of type `ReassignOwnedStmt `__ to the `output` stream. + Pretty print a `node` of type `ReassignOwnedStmt `__ to the `output` stream. .. index:: ReturnStmt .. function:: return_stmt(node, output) - Pretty print a `node` of type `ReturnStmt `__ to the `output` stream. + Pretty print a `node` of type `ReturnStmt `__ to the `output` stream. .. index:: SecLabelStmt .. function:: sec_label_stmt(node, output) - Pretty print a `node` of type `SecLabelStmt `__ to the `output` stream. + Pretty print a `node` of type `SecLabelStmt `__ to the `output` stream. .. index:: StatsElem .. function:: stats_elem(node, output) - Pretty print a `node` of type `StatsElem `__ to the `output` stream. + Pretty print a `node` of type `StatsElem `__ to the `output` stream. .. index:: TableLikeClause .. function:: table_like_clause(node, output) - Pretty print a `node` of type `TableLikeClause `__ to the `output` stream. + Pretty print a `node` of type `TableLikeClause `__ to the `output` stream. .. index:: TriggerTransition .. function:: trigger_transition(node, output) - Pretty print a `node` of type `TriggerTransition `__ to the `output` stream. + Pretty print a `node` of type `TriggerTransition `__ to the `output` stream. .. index:: VacuumStmt .. function:: vacuum_stmt(node, output) - Pretty print a `node` of type `VacuumStmt `__ to the `output` stream. + Pretty print a `node` of type `VacuumStmt `__ to the `output` stream. .. index:: pair: VacuumStmt;DefElem .. function:: vacuum_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `VacuumStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `VacuumStmt `__, to the `output` stream. .. index:: VacuumRelation .. function:: vacuum_relation(node, output) - Pretty print a `node` of type `VacuumRelation `__ to the `output` stream. + Pretty print a `node` of type `VacuumRelation `__ to the `output` stream. .. index:: VariableSetStmt .. function:: variable_set_stmt(node, output) - Pretty print a `node` of type `VariableSetStmt `__ to the `output` stream. + Pretty print a `node` of type `VariableSetStmt `__ to the `output` stream. .. index:: VariableShowStmt .. function:: variable_show_statement(node, output) - Pretty print a `node` of type `VariableShowStmt `__ to the `output` stream. + Pretty print a `node` of type `VariableShowStmt `__ to the `output` stream. .. index:: ViewStmt .. function:: view_stmt(node, output) - Pretty print a `node` of type `ViewStmt `__ to the `output` stream. + Pretty print a `node` of type `ViewStmt `__ to the `output` stream. .. index:: pair: ViewStmt;DefElem .. function:: view_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `ViewStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `ViewStmt `__, to the `output` stream. diff --git a/docs/dml.rst b/docs/dml.rst index 9bae131..dcd20ec 100644 --- a/docs/dml.rst +++ b/docs/dml.rst @@ -16,576 +16,576 @@ .. function:: a_array_expr(node, output) - Pretty print a `node` of type `A_ArrayExpr `__ to the `output` stream. + Pretty print a `node` of type `A_ArrayExpr `__ to the `output` stream. .. index:: A_Const .. function:: a_const(node, output) - Pretty print a `node` of type `A_Const `__ to the `output` stream. + Pretty print a `node` of type `A_Const `__ to the `output` stream. .. index:: A_Expr .. function:: a_expr(node, output) - Pretty print a `node` of type `A_Expr `__ to the `output` stream. + Pretty print a `node` of type `A_Expr `__ to the `output` stream. .. index:: A_Indices .. function:: a_indices(node, output) - Pretty print a `node` of type `A_Indices `__ to the `output` stream. + Pretty print a `node` of type `A_Indices `__ to the `output` stream. .. index:: A_Indirection .. function:: a_indirection(node, output) - Pretty print a `node` of type `A_Indirection `__ to the `output` stream. + Pretty print a `node` of type `A_Indirection `__ to the `output` stream. .. index:: pair: A_Indirection;A_Star .. function:: a_indirection_a_star(node, output) - Pretty print a `node` of type `A_Star `__, when it is inside a `A_Indirection `__, to the `output` stream. + Pretty print a `node` of type `A_Star `__, when it is inside a `A_Indirection `__, to the `output` stream. .. index:: pair: A_Indirection;ColumnRef .. function:: a_indirection_column_ref(node, output) - Pretty print a `node` of type `ColumnRef `__, when it is inside a `A_Indirection `__, to the `output` stream. + Pretty print a `node` of type `ColumnRef `__, when it is inside a `A_Indirection `__, to the `output` stream. .. index:: pair: A_Indirection;FuncCall .. function:: a_indirection_func_call(node, output) - Pretty print a `node` of type `FuncCall `__, when it is inside a `A_Indirection `__, to the `output` stream. + Pretty print a `node` of type `FuncCall `__, when it is inside a `A_Indirection `__, to the `output` stream. .. index:: pair: A_Indirection;String .. function:: a_indirection_field(node, output) - Pretty print a `node` of type `String `__, when it is inside a `A_Indirection `__, to the `output` stream. + Pretty print a `node` of type `String `__, when it is inside a `A_Indirection `__, to the `output` stream. .. index:: A_Star .. function:: a_star(node, output) - Pretty print a `node` of type `A_Star `__ to the `output` stream. + Pretty print a `node` of type `A_Star `__ to the `output` stream. .. index:: Alias .. function:: alias(node, output) - Pretty print a `node` of type `Alias `__ to the `output` stream. + Pretty print a `node` of type `Alias `__ to the `output` stream. .. index:: BitString .. function:: bitstring(node, output) - Pretty print a `node` of type `BitString `__ to the `output` stream. + Pretty print a `node` of type `BitString `__ to the `output` stream. .. index:: Boolean .. function:: boolean(node, output) - Pretty print a `node` of type `Boolean `__ to the `output` stream. + Pretty print a `node` of type `Boolean `__ to the `output` stream. .. index:: BoolExpr .. function:: bool_expr(node, output) - Pretty print a `node` of type `BoolExpr `__ to the `output` stream. + Pretty print a `node` of type `BoolExpr `__ to the `output` stream. .. index:: BooleanTest .. function:: boolean_test(node, output) - Pretty print a `node` of type `BooleanTest `__ to the `output` stream. + Pretty print a `node` of type `BooleanTest `__ to the `output` stream. .. index:: CallStmt .. function:: call_stmt(node, output) - Pretty print a `node` of type `CallStmt `__ to the `output` stream. + Pretty print a `node` of type `CallStmt `__ to the `output` stream. .. index:: CaseExpr .. function:: case_expr(node, output) - Pretty print a `node` of type `CaseExpr `__ to the `output` stream. + Pretty print a `node` of type `CaseExpr `__ to the `output` stream. .. index:: CaseWhen .. function:: case_when(node, output) - Pretty print a `node` of type `CaseWhen `__ to the `output` stream. + Pretty print a `node` of type `CaseWhen `__ to the `output` stream. .. index:: CoalesceExpr .. function:: coalesce_expr(node, output) - Pretty print a `node` of type `CoalesceExpr `__ to the `output` stream. + Pretty print a `node` of type `CoalesceExpr `__ to the `output` stream. .. index:: CollateClause .. function:: collate_clause(node, output) - Pretty print a `node` of type `CollateClause `__ to the `output` stream. + Pretty print a `node` of type `CollateClause `__ to the `output` stream. .. index:: ColumnRef .. function:: column_ref(node, output) - Pretty print a `node` of type `ColumnRef `__ to the `output` stream. + Pretty print a `node` of type `ColumnRef `__ to the `output` stream. .. index:: CTECycleClause .. function:: cte_cycle_clause(node, output) - Pretty print a `node` of type `CTECycleClause `__ to the `output` stream. + Pretty print a `node` of type `CTECycleClause `__ to the `output` stream. .. index:: pair: CTECycleClause;TypeCast .. function:: cte_cycle_clause_type_cast(node, output) - Pretty print a `node` of type `TypeCast `__, when it is inside a `CTECycleClause `__, to the `output` stream. + Pretty print a `node` of type `TypeCast `__, when it is inside a `CTECycleClause `__, to the `output` stream. .. index:: CTESearchClause .. function:: cte_search_clause(node, output) - Pretty print a `node` of type `CTESearchClause `__ to the `output` stream. + Pretty print a `node` of type `CTESearchClause `__ to the `output` stream. .. index:: CommonTableExpr .. function:: common_table_expr(node, output) - Pretty print a `node` of type `CommonTableExpr `__ to the `output` stream. + Pretty print a `node` of type `CommonTableExpr `__ to the `output` stream. .. index:: ConstraintsSetStmt .. function:: constraints_set_stmt(node, output) - Pretty print a `node` of type `ConstraintsSetStmt `__ to the `output` stream. + Pretty print a `node` of type `ConstraintsSetStmt `__ to the `output` stream. .. index:: CopyStmt .. function:: copy_stmt(node, output) - Pretty print a `node` of type `CopyStmt `__ to the `output` stream. + Pretty print a `node` of type `CopyStmt `__ to the `output` stream. .. index:: pair: CopyStmt;DefElem .. function:: copy_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `CopyStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `CopyStmt `__, to the `output` stream. .. index:: DeclareCursorStmt .. function:: declare_cursor_stmt(node, output) - Pretty print a `node` of type `DeclareCursorStmt `__ to the `output` stream. + Pretty print a `node` of type `DeclareCursorStmt `__ to the `output` stream. .. index:: DeleteStmt .. function:: delete_stmt(node, output) - Pretty print a `node` of type `DeleteStmt `__ to the `output` stream. + Pretty print a `node` of type `DeleteStmt `__ to the `output` stream. .. index:: ExecuteStmt .. function:: execute_stmt(node, output) - Pretty print a `node` of type `ExecuteStmt `__ to the `output` stream. + Pretty print a `node` of type `ExecuteStmt `__ to the `output` stream. .. index:: ExplainStmt .. function:: explain_stmt(node, output) - Pretty print a `node` of type `ExplainStmt `__ to the `output` stream. + Pretty print a `node` of type `ExplainStmt `__ to the `output` stream. .. index:: pair: ExplainStmt;DefElem .. function:: explain_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `ExplainStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `ExplainStmt `__, to the `output` stream. .. index:: FetchStmt .. function:: fetch_stmt(node, output) - Pretty print a `node` of type `FetchStmt `__ to the `output` stream. + Pretty print a `node` of type `FetchStmt `__ to the `output` stream. .. index:: Float .. function:: float(node, output) - Pretty print a `node` of type `Float `__ to the `output` stream. + Pretty print a `node` of type `Float `__ to the `output` stream. .. index:: FuncCall .. function:: func_call(node, output) - Pretty print a `node` of type `FuncCall `__ to the `output` stream. + Pretty print a `node` of type `FuncCall `__ to the `output` stream. .. index:: pair: FuncCall;WindowDef .. function:: func_call_window_def(node, output) - Pretty print a `node` of type `WindowDef `__, when it is inside a `FuncCall `__, to the `output` stream. + Pretty print a `node` of type `WindowDef `__, when it is inside a `FuncCall `__, to the `output` stream. .. index:: GroupingSet .. function:: grouping_set(node, output) - Pretty print a `node` of type `GroupingSet `__ to the `output` stream. + Pretty print a `node` of type `GroupingSet `__ to the `output` stream. .. index:: GroupingFunc .. function:: grouping_func(node, output) - Pretty print a `node` of type `GroupingFunc `__ to the `output` stream. + Pretty print a `node` of type `GroupingFunc `__ to the `output` stream. .. index:: IndexElem .. function:: index_elem(node, output) - Pretty print a `node` of type `IndexElem `__ to the `output` stream. + Pretty print a `node` of type `IndexElem `__ to the `output` stream. .. index:: InferClause .. function:: infer_clause(node, output) - Pretty print a `node` of type `InferClause `__ to the `output` stream. + Pretty print a `node` of type `InferClause `__ to the `output` stream. .. index:: Integer .. function:: integer(node, output) - Pretty print a `node` of type `Integer `__ to the `output` stream. + Pretty print a `node` of type `Integer `__ to the `output` stream. .. index:: InsertStmt .. function:: insert_stmt(node, output) - Pretty print a `node` of type `InsertStmt `__ to the `output` stream. + Pretty print a `node` of type `InsertStmt `__ to the `output` stream. .. index:: IntoClause .. function:: into_clause(node, output) - Pretty print a `node` of type `IntoClause `__ to the `output` stream. + Pretty print a `node` of type `IntoClause `__ to the `output` stream. .. index:: JoinExpr .. function:: join_expr(node, output) - Pretty print a `node` of type `JoinExpr `__ to the `output` stream. + Pretty print a `node` of type `JoinExpr `__ to the `output` stream. .. index:: JsonAggConstructor .. function:: json_agg_constructor(node, output) - Pretty print a `node` of type `JsonAggConstructor `__ to the `output` stream. + Pretty print a `node` of type `JsonAggConstructor `__ to the `output` stream. .. index:: JsonArrayAgg .. function:: json_array_agg(node, output) - Pretty print a `node` of type `JsonArrayAgg `__ to the `output` stream. + Pretty print a `node` of type `JsonArrayAgg `__ to the `output` stream. .. index:: JsonArrayConstructor .. function:: json_array_constructor(node, output) - Pretty print a `node` of type `JsonArrayConstructor `__ to the `output` stream. + Pretty print a `node` of type `JsonArrayConstructor `__ to the `output` stream. .. index:: JsonArrayQueryConstructor .. function:: json_array_query_constructor(node, output) - Pretty print a `node` of type `JsonArrayQueryConstructor `__ to the `output` stream. + Pretty print a `node` of type `JsonArrayQueryConstructor `__ to the `output` stream. .. index:: JsonFormat .. function:: json_format(node, output) - Pretty print a `node` of type `JsonFormat `__ to the `output` stream. + Pretty print a `node` of type `JsonFormat `__ to the `output` stream. .. index:: JsonIsPredicate .. function:: json_is_predicate(node, output) - Pretty print a `node` of type `JsonIsPredicate `__ to the `output` stream. + Pretty print a `node` of type `JsonIsPredicate `__ to the `output` stream. .. index:: JsonKeyValue .. function:: json_key_value(node, output) - Pretty print a `node` of type `JsonKeyValue `__ to the `output` stream. + Pretty print a `node` of type `JsonKeyValue `__ to the `output` stream. .. index:: JsonObjectAgg .. function:: json_object_agg(node, output) - Pretty print a `node` of type `JsonObjectAgg `__ to the `output` stream. + Pretty print a `node` of type `JsonObjectAgg `__ to the `output` stream. .. index:: JsonObjectConstructor .. function:: json_object_constructor(node, output) - Pretty print a `node` of type `JsonObjectConstructor `__ to the `output` stream. + Pretty print a `node` of type `JsonObjectConstructor `__ to the `output` stream. .. index:: JsonOutput .. function:: json_output(node, output) - Pretty print a `node` of type `JsonOutput `__ to the `output` stream. + Pretty print a `node` of type `JsonOutput `__ to the `output` stream. .. index:: JsonReturning .. function:: json_returning(node, output) - Pretty print a `node` of type `JsonReturning `__ to the `output` stream. + Pretty print a `node` of type `JsonReturning `__ to the `output` stream. .. index:: JsonValueExpr .. function:: json_value_expr(node, output) - Pretty print a `node` of type `JsonValueExpr `__ to the `output` stream. + Pretty print a `node` of type `JsonValueExpr `__ to the `output` stream. .. index:: LockingClause .. function:: locking_clause(node, output) - Pretty print a `node` of type `LockingClause `__ to the `output` stream. + Pretty print a `node` of type `LockingClause `__ to the `output` stream. .. index:: ListenStmt .. function:: listen_stmt(node, output) - Pretty print a `node` of type `ListenStmt `__ to the `output` stream. + Pretty print a `node` of type `ListenStmt `__ to the `output` stream. .. index:: MergeStmt .. function:: merge_stmt(node, output) - Pretty print a `node` of type `MergeStmt `__ to the `output` stream. + Pretty print a `node` of type `MergeStmt `__ to the `output` stream. .. index:: MergeWhenClause .. function:: merge_when_clause(node, output) - Pretty print a `node` of type `MergeWhenClause `__ to the `output` stream. + Pretty print a `node` of type `MergeWhenClause `__ to the `output` stream. .. index:: MinMaxExpr .. function:: min_max_expr(node, output) - Pretty print a `node` of type `MinMaxExpr `__ to the `output` stream. + Pretty print a `node` of type `MinMaxExpr `__ to the `output` stream. .. index:: MultiAssignRef .. function:: multi_assign_ref(node, output) - Pretty print a `node` of type `MultiAssignRef `__ to the `output` stream. + Pretty print a `node` of type `MultiAssignRef `__ to the `output` stream. .. index:: NamedArgExpr .. function:: named_arg_expr(node, output) - Pretty print a `node` of type `NamedArgExpr `__ to the `output` stream. + Pretty print a `node` of type `NamedArgExpr `__ to the `output` stream. .. index:: NullTest .. function:: null_test(node, output) - Pretty print a `node` of type `NullTest `__ to the `output` stream. + Pretty print a `node` of type `NullTest `__ to the `output` stream. .. index:: ParamRef .. function:: param_ref(node, output) - Pretty print a `node` of type `ParamRef `__ to the `output` stream. + Pretty print a `node` of type `ParamRef `__ to the `output` stream. .. index:: PrepareStmt .. function:: prepare_stmt(node, output) - Pretty print a `node` of type `PrepareStmt `__ to the `output` stream. + Pretty print a `node` of type `PrepareStmt `__ to the `output` stream. .. index:: OnConflictClause .. function:: on_conflict_clause(node, output) - Pretty print a `node` of type `OnConflictClause `__ to the `output` stream. + Pretty print a `node` of type `OnConflictClause `__ to the `output` stream. .. index:: RangeFunction .. function:: range_function(node, output) - Pretty print a `node` of type `RangeFunction `__ to the `output` stream. + Pretty print a `node` of type `RangeFunction `__ to the `output` stream. .. index:: RangeSubselect .. function:: range_subselect(node, output) - Pretty print a `node` of type `RangeSubselect `__ to the `output` stream. + Pretty print a `node` of type `RangeSubselect `__ to the `output` stream. .. index:: RangeTableFunc .. function:: range_table_func(node, output) - Pretty print a `node` of type `RangeTableFunc `__ to the `output` stream. + Pretty print a `node` of type `RangeTableFunc `__ to the `output` stream. .. index:: pair: RangeTableFunc;ResTarget .. function:: range_table_func_res_target(node, output) - Pretty print a `node` of type `ResTarget `__, when it is inside a `RangeTableFunc `__, to the `output` stream. + Pretty print a `node` of type `ResTarget `__, when it is inside a `RangeTableFunc `__, to the `output` stream. .. index:: RangeTableFuncCol .. function:: range_table_func_col(node, output) - Pretty print a `node` of type `RangeTableFuncCol `__ to the `output` stream. + Pretty print a `node` of type `RangeTableFuncCol `__ to the `output` stream. .. index:: RangeVar .. function:: range_var(node, output) - Pretty print a `node` of type `RangeVar `__ to the `output` stream. + Pretty print a `node` of type `RangeVar `__ to the `output` stream. .. index:: RangeTableSample .. function:: range_table_sample(node, output) - Pretty print a `node` of type `RangeTableSample `__ to the `output` stream. + Pretty print a `node` of type `RangeTableSample `__ to the `output` stream. .. index:: RawStmt .. function:: raw_stmt(node, output) - Pretty print a `node` of type `RawStmt `__ to the `output` stream. + Pretty print a `node` of type `RawStmt `__ to the `output` stream. .. index:: ResTarget .. function:: res_target(node, output) - Pretty print a `node` of type `ResTarget `__ to the `output` stream. + Pretty print a `node` of type `ResTarget `__ to the `output` stream. .. index:: RowExpr .. function:: row_expr(node, output) - Pretty print a `node` of type `RowExpr `__ to the `output` stream. + Pretty print a `node` of type `RowExpr `__ to the `output` stream. .. index:: SelectStmt .. function:: select_stmt(node, output) - Pretty print a `node` of type `SelectStmt `__ to the `output` stream. + Pretty print a `node` of type `SelectStmt `__ to the `output` stream. .. index:: SetToDefault .. function:: set_to_default(node, output) - Pretty print a `node` of type `SetToDefault `__ to the `output` stream. + Pretty print a `node` of type `SetToDefault `__ to the `output` stream. .. index:: SortBy .. function:: sort_by(node, output) - Pretty print a `node` of type `SortBy `__ to the `output` stream. + Pretty print a `node` of type `SortBy `__ to the `output` stream. .. index:: SQLValueFunction .. function:: sql_value_function(node, output) - Pretty print a `node` of type `SQLValueFunction `__ to the `output` stream. + Pretty print a `node` of type `SQLValueFunction `__ to the `output` stream. .. index:: String .. function:: string(node, output) - Pretty print a `node` of type `String `__ to the `output` stream. + Pretty print a `node` of type `String `__ to the `output` stream. .. index:: SubLink .. function:: sub_link(node, output) - Pretty print a `node` of type `SubLink `__ to the `output` stream. + Pretty print a `node` of type `SubLink `__ to the `output` stream. .. index:: TransactionStmt .. function:: transaction_stmt(node, output) - Pretty print a `node` of type `TransactionStmt `__ to the `output` stream. + Pretty print a `node` of type `TransactionStmt `__ to the `output` stream. .. index:: pair: TransactionStmt;DefElem .. function:: transaction_stmt_def_elem(node, output) - Pretty print a `node` of type `DefElem `__, when it is inside a `TransactionStmt `__, to the `output` stream. + Pretty print a `node` of type `DefElem `__, when it is inside a `TransactionStmt `__, to the `output` stream. .. index:: TruncateStmt .. function:: truncate_stmt(node, output) - Pretty print a `node` of type `TruncateStmt `__ to the `output` stream. + Pretty print a `node` of type `TruncateStmt `__ to the `output` stream. .. index:: TypeCast .. function:: type_cast(node, output) - Pretty print a `node` of type `TypeCast `__ to the `output` stream. + Pretty print a `node` of type `TypeCast `__ to the `output` stream. .. index:: TypeName .. function:: type_name(node, output) - Pretty print a `node` of type `TypeName `__ to the `output` stream. + Pretty print a `node` of type `TypeName `__ to the `output` stream. .. index:: pair: VariableSetStmt;TypeCast .. function:: variable_set_stmt_type_cast(node, output) - Pretty print a `node` of type `TypeCast `__, when it is inside a `VariableSetStmt `__, to the `output` stream. + Pretty print a `node` of type `TypeCast `__, when it is inside a `VariableSetStmt `__, to the `output` stream. .. index:: UpdateStmt .. function:: update_stmt(node, output) - Pretty print a `node` of type `UpdateStmt `__ to the `output` stream. + Pretty print a `node` of type `UpdateStmt `__ to the `output` stream. .. index:: UnlistenStmt .. function:: unlisten_stmt(node, output) - Pretty print a `node` of type `UnlistenStmt `__ to the `output` stream. + Pretty print a `node` of type `UnlistenStmt `__ to the `output` stream. .. index:: WithClause .. function:: with_clause(node, output) - Pretty print a `node` of type `WithClause `__ to the `output` stream. + Pretty print a `node` of type `WithClause `__ to the `output` stream. .. index:: WindowDef .. function:: window_def(node, output) - Pretty print a `node` of type `WindowDef `__ to the `output` stream. + Pretty print a `node` of type `WindowDef `__ to the `output` stream. .. index:: pair: MergeWhenClause;ResTarget @@ -598,16 +598,16 @@ .. function:: update_stmt_res_target(node, output) - Pretty print a `node` of type `ResTarget `__, when it is inside a `MergeWhenClause `__ or a `OnConflictClause `__ or a `UpdateStmt `__, to the `output` stream. + Pretty print a `node` of type `ResTarget `__, when it is inside a `MergeWhenClause `__ or a `OnConflictClause `__ or a `UpdateStmt `__, to the `output` stream. .. index:: XmlExpr .. function:: xml_expr(node, output) - Pretty print a `node` of type `XmlExpr `__ to the `output` stream. + Pretty print a `node` of type `XmlExpr `__ to the `output` stream. .. index:: XmlSerialize .. function:: xml_serialize(node, output) - Pretty print a `node` of type `XmlSerialize `__ to the `output` stream. + Pretty print a `node` of type `XmlSerialize `__ to the `output` stream. diff --git a/docs/lockdefs.rst b/docs/lockdefs.rst index 735974a..17fe799 100644 --- a/docs/lockdefs.rst +++ b/docs/lockdefs.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.lockdefs` --- Constants extracted from `lockdefs.h`__ ========================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/storage/lockdefs.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/storage/lockdefs.h .. module:: pglast.enums.lockdefs :synopsis: Constants extracted from lockdefs.h @@ -17,40 +17,40 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/st .. data:: NoLock - See `here for details `__. + See `here for details `__. .. data:: AccessShareLock - See `here for details `__. + See `here for details `__. .. data:: RowShareLock - See `here for details `__. + See `here for details `__. .. data:: RowExclusiveLock - See `here for details `__. + See `here for details `__. .. data:: ShareUpdateExclusiveLock - See `here for details `__. + See `here for details `__. .. data:: ShareLock - See `here for details `__. + See `here for details `__. .. data:: ShareRowExclusiveLock - See `here for details `__. + See `here for details `__. .. data:: ExclusiveLock - See `here for details `__. + See `here for details `__. .. data:: AccessExclusiveLock - See `here for details `__. + See `here for details `__. .. data:: MaxLockMode - See `here for details `__. + See `here for details `__. diff --git a/docs/lockoptions.rst b/docs/lockoptions.rst index 8bb3b79..bf5f0cc 100644 --- a/docs/lockoptions.rst +++ b/docs/lockoptions.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.lockoptions` --- Constants extracted from `lockoptions.h`__ ================================================================================ -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/nodes/lockoptions.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/nodes/lockoptions.h .. module:: pglast.enums.lockoptions :synopsis: Constants extracted from lockoptions.h @@ -17,7 +17,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.lockoptions.LockClauseStrength - Corresponds to the `LockClauseStrength enum `__. + Corresponds to the `LockClauseStrength enum `__. .. data:: LCS_NONE @@ -32,7 +32,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.lockoptions.LockTupleMode - Corresponds to the `LockTupleMode enum `__. + Corresponds to the `LockTupleMode enum `__. .. data:: LockTupleKeyShare @@ -45,7 +45,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.lockoptions.LockWaitPolicy - Corresponds to the `LockWaitPolicy enum `__. + Corresponds to the `LockWaitPolicy enum `__. .. data:: LockWaitBlock diff --git a/docs/nodes.rst b/docs/nodes.rst index ab6dbe3..a35ec9c 100644 --- a/docs/nodes.rst +++ b/docs/nodes.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.nodes` --- Constants extracted from `nodes.h`__ ==================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/nodes/nodes.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/nodes/nodes.h .. module:: pglast.enums.nodes :synopsis: Constants extracted from nodes.h @@ -17,7 +17,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.AggSplit - Corresponds to the `AggSplit enum `__. + Corresponds to the `AggSplit enum `__. .. data:: AGGSPLIT_SIMPLE @@ -28,7 +28,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.AggStrategy - Corresponds to the `AggStrategy enum `__. + Corresponds to the `AggStrategy enum `__. .. data:: AGG_PLAIN @@ -41,7 +41,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.CmdType - Corresponds to the `CmdType enum `__. + Corresponds to the `CmdType enum `__. .. data:: CMD_UNKNOWN @@ -62,7 +62,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.JoinType - Corresponds to the `JoinType enum `__. + Corresponds to the `JoinType enum `__. .. data:: JOIN_INNER @@ -85,7 +85,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.LimitOption - Corresponds to the `LimitOption enum `__. + Corresponds to the `LimitOption enum `__. .. data:: LIMIT_OPTION_DEFAULT @@ -96,7 +96,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.NodeTag - Corresponds to the `NodeTag enum `__. + Corresponds to the `NodeTag enum `__. .. data:: T_Invalid @@ -1011,7 +1011,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.OnConflictAction - Corresponds to the `OnConflictAction enum `__. + Corresponds to the `OnConflictAction enum `__. .. data:: ONCONFLICT_NONE @@ -1022,7 +1022,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.SetOpCmd - Corresponds to the `SetOpCmd enum `__. + Corresponds to the `SetOpCmd enum `__. .. data:: SETOPCMD_INTERSECT @@ -1035,7 +1035,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.nodes.SetOpStrategy - Corresponds to the `SetOpStrategy enum `__. + Corresponds to the `SetOpStrategy enum `__. .. data:: SETOP_SORTED @@ -1044,16 +1044,16 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. data:: AGGSPLITOP_COMBINE - See `here for details `__. + See `here for details `__. .. data:: AGGSPLITOP_SKIPFINAL - See `here for details `__. + See `here for details `__. .. data:: AGGSPLITOP_SERIALIZE - See `here for details `__. + See `here for details `__. .. data:: AGGSPLITOP_DESERIALIZE - See `here for details `__. + See `here for details `__. diff --git a/docs/parsenodes.rst b/docs/parsenodes.rst index 988bfc7..1d361cb 100644 --- a/docs/parsenodes.rst +++ b/docs/parsenodes.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.parsenodes` --- Constants extracted from `parsenodes.h`__ ============================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/nodes/parsenodes.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/nodes/parsenodes.h .. module:: pglast.enums.parsenodes :synopsis: Constants extracted from parsenodes.h @@ -17,7 +17,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.A_Expr_Kind - Corresponds to the `A_Expr_Kind enum `__. + Corresponds to the `A_Expr_Kind enum `__. .. data:: AEXPR_OP @@ -50,7 +50,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.AlterPublicationAction - Corresponds to the `AlterPublicationAction enum `__. + Corresponds to the `AlterPublicationAction enum `__. .. data:: AP_AddObjects @@ -61,7 +61,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.AlterSubscriptionType - Corresponds to the `AlterSubscriptionType enum `__. + Corresponds to the `AlterSubscriptionType enum `__. .. data:: ALTER_SUBSCRIPTION_OPTIONS @@ -82,7 +82,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.AlterTSConfigType - Corresponds to the `AlterTSConfigType enum `__. + Corresponds to the `AlterTSConfigType enum `__. .. data:: ALTER_TSCONFIG_ADD_MAPPING @@ -97,7 +97,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.AlterTableType - Corresponds to the `AlterTableType enum `__. + Corresponds to the `AlterTableType enum `__. .. data:: AT_AddColumn @@ -234,7 +234,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.CTEMaterialize - Corresponds to the `CTEMaterialize enum `__. + Corresponds to the `CTEMaterialize enum `__. .. data:: CTEMaterializeDefault @@ -245,7 +245,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.ConstrType - Corresponds to the `ConstrType enum `__. + Corresponds to the `ConstrType enum `__. .. data:: CONSTR_NULL @@ -278,7 +278,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.DefElemAction - Corresponds to the `DefElemAction enum `__. + Corresponds to the `DefElemAction enum `__. .. data:: DEFELEM_UNSPEC @@ -291,7 +291,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.DiscardMode - Corresponds to the `DiscardMode enum `__. + Corresponds to the `DiscardMode enum `__. .. data:: DISCARD_ALL @@ -304,7 +304,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.DropBehavior - Corresponds to the `DropBehavior enum `__. + Corresponds to the `DropBehavior enum `__. .. data:: DROP_RESTRICT @@ -313,7 +313,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.FetchDirection - Corresponds to the `FetchDirection enum `__. + Corresponds to the `FetchDirection enum `__. .. data:: FETCH_FORWARD @@ -326,7 +326,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.FunctionParameterMode - Corresponds to the `FunctionParameterMode enum `__. + Corresponds to the `FunctionParameterMode enum `__. .. data:: FUNC_PARAM_IN @@ -343,7 +343,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.GrantTargetType - Corresponds to the `GrantTargetType enum `__. + Corresponds to the `GrantTargetType enum `__. .. data:: ACL_TARGET_OBJECT @@ -354,7 +354,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.GroupingSetKind - Corresponds to the `GroupingSetKind enum `__. + Corresponds to the `GroupingSetKind enum `__. .. data:: GROUPING_SET_EMPTY @@ -369,7 +369,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.ImportForeignSchemaType - Corresponds to the `ImportForeignSchemaType enum `__. + Corresponds to the `ImportForeignSchemaType enum `__. .. data:: FDW_IMPORT_SCHEMA_ALL @@ -380,7 +380,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.ObjectType - Corresponds to the `ObjectType enum `__. + Corresponds to the `ObjectType enum `__. .. data:: OBJECT_ACCESS_METHOD @@ -489,7 +489,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.OverridingKind - Corresponds to the `OverridingKind enum `__. + Corresponds to the `OverridingKind enum `__. .. data:: OVERRIDING_NOT_SET @@ -500,7 +500,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.PartitionRangeDatumKind - Corresponds to the `PartitionRangeDatumKind enum `__. + Corresponds to the `PartitionRangeDatumKind enum `__. .. data:: PARTITION_RANGE_DATUM_MINVALUE @@ -511,7 +511,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.PartitionStrategy - Corresponds to the `PartitionStrategy enum `__. + Corresponds to the `PartitionStrategy enum `__. .. data:: PARTITION_STRATEGY_LIST @@ -522,7 +522,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.PublicationObjSpecType - Corresponds to the `PublicationObjSpecType enum `__. + Corresponds to the `PublicationObjSpecType enum `__. .. data:: PUBLICATIONOBJ_TABLE @@ -535,7 +535,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.QuerySource - Corresponds to the `QuerySource enum `__. + Corresponds to the `QuerySource enum `__. .. data:: QSRC_ORIGINAL @@ -550,7 +550,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.RTEKind - Corresponds to the `RTEKind enum `__. + Corresponds to the `RTEKind enum `__. .. data:: RTE_RELATION @@ -573,7 +573,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.ReindexObjectType - Corresponds to the `ReindexObjectType enum `__. + Corresponds to the `ReindexObjectType enum `__. .. data:: REINDEX_OBJECT_INDEX @@ -588,7 +588,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.RoleSpecType - Corresponds to the `RoleSpecType enum `__. + Corresponds to the `RoleSpecType enum `__. .. data:: ROLESPEC_CSTRING @@ -603,7 +603,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.RoleStmtType - Corresponds to the `RoleStmtType enum `__. + Corresponds to the `RoleStmtType enum `__. .. data:: ROLESTMT_ROLE @@ -614,7 +614,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.SetOperation - Corresponds to the `SetOperation enum `__. + Corresponds to the `SetOperation enum `__. .. data:: SETOP_NONE @@ -627,7 +627,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.SetQuantifier - Corresponds to the `SetQuantifier enum `__. + Corresponds to the `SetQuantifier enum `__. .. data:: SET_QUANTIFIER_DEFAULT @@ -638,7 +638,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.SortByDir - Corresponds to the `SortByDir enum `__. + Corresponds to the `SortByDir enum `__. .. data:: SORTBY_DEFAULT @@ -651,7 +651,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.SortByNulls - Corresponds to the `SortByNulls enum `__. + Corresponds to the `SortByNulls enum `__. .. data:: SORTBY_NULLS_DEFAULT @@ -662,7 +662,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.TableLikeOption - Corresponds to the `TableLikeOption enum `__. + Corresponds to the `TableLikeOption enum `__. .. data:: CREATE_TABLE_LIKE_COMMENTS @@ -687,7 +687,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.TransactionStmtKind - Corresponds to the `TransactionStmtKind enum `__. + Corresponds to the `TransactionStmtKind enum `__. .. data:: TRANS_STMT_BEGIN @@ -712,7 +712,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.VariableSetKind - Corresponds to the `VariableSetKind enum `__. + Corresponds to the `VariableSetKind enum `__. .. data:: VAR_SET_VALUE @@ -729,7 +729,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.ViewCheckOption - Corresponds to the `ViewCheckOption enum `__. + Corresponds to the `ViewCheckOption enum `__. .. data:: NO_CHECK_OPTION @@ -740,7 +740,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.parsenodes.WCOKind - Corresponds to the `WCOKind enum `__. + Corresponds to the `WCOKind enum `__. .. data:: WCO_VIEW_CHECK @@ -757,220 +757,220 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. data:: ACL_INSERT - See `here for details `__. + See `here for details `__. .. data:: ACL_SELECT - See `here for details `__. + See `here for details `__. .. data:: ACL_UPDATE - See `here for details `__. + See `here for details `__. .. data:: ACL_DELETE - See `here for details `__. + See `here for details `__. .. data:: ACL_TRUNCATE - See `here for details `__. + See `here for details `__. .. data:: ACL_REFERENCES - See `here for details `__. + See `here for details `__. .. data:: ACL_TRIGGER - See `here for details `__. + See `here for details `__. .. data:: ACL_EXECUTE - See `here for details `__. + See `here for details `__. .. data:: ACL_USAGE - See `here for details `__. + See `here for details `__. .. data:: ACL_CREATE - See `here for details `__. + See `here for details `__. .. data:: ACL_CREATE_TEMP - See `here for details `__. + See `here for details `__. .. data:: ACL_CONNECT - See `here for details `__. + See `here for details `__. .. data:: ACL_SET - See `here for details `__. + See `here for details `__. .. data:: ACL_ALTER_SYSTEM - See `here for details `__. + See `here for details `__. .. data:: N_ACL_RIGHTS - See `here for details `__. + See `here for details `__. .. data:: ACL_NO_RIGHTS - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_NONDEFAULT - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_RANGE - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_ROWS - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_GROUPS - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_BETWEEN - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_START_UNBOUNDED_PRECEDING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_END_UNBOUNDED_PRECEDING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_START_UNBOUNDED_FOLLOWING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_END_UNBOUNDED_FOLLOWING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_START_CURRENT_ROW - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_END_CURRENT_ROW - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_START_OFFSET_PRECEDING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_END_OFFSET_PRECEDING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_START_OFFSET_FOLLOWING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_END_OFFSET_FOLLOWING - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_EXCLUDE_CURRENT_ROW - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_EXCLUDE_GROUP - See `here for details `__. + See `here for details `__. .. data:: FRAMEOPTION_EXCLUDE_TIES - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_ACTION_NOACTION - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_ACTION_RESTRICT - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_ACTION_CASCADE - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_ACTION_SETNULL - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_ACTION_SETDEFAULT - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_MATCH_FULL - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_MATCH_PARTIAL - See `here for details `__. + See `here for details `__. .. data:: FKCONSTR_MATCH_SIMPLE - See `here for details `__. + See `here for details `__. .. data:: OPCLASS_ITEM_OPERATOR - See `here for details `__. + See `here for details `__. .. data:: OPCLASS_ITEM_FUNCTION - See `here for details `__. + See `here for details `__. .. data:: OPCLASS_ITEM_STORAGETYPE - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_BINARY - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_SCROLL - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_NO_SCROLL - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_INSENSITIVE - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_ASENSITIVE - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_HOLD - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_FAST_PLAN - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_GENERIC_PLAN - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_CUSTOM_PLAN - See `here for details `__. + See `here for details `__. .. data:: CURSOR_OPT_PARALLEL_OK - See `here for details `__. + See `here for details `__. diff --git a/docs/pg_am.rst b/docs/pg_am.rst index d3d62fe..00da347 100644 --- a/docs/pg_am.rst +++ b/docs/pg_am.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.pg_am` --- Constants extracted from `pg_am.h`__ ==================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/catalog/pg_am.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/catalog/pg_am.h .. module:: pglast.enums.pg_am :synopsis: Constants extracted from pg_am.h @@ -17,8 +17,8 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ca .. data:: AMTYPE_INDEX - See `here for details `__. + See `here for details `__. .. data:: AMTYPE_TABLE - See `here for details `__. + See `here for details `__. diff --git a/docs/pg_attribute.rst b/docs/pg_attribute.rst index 5728d3d..4a7307a 100644 --- a/docs/pg_attribute.rst +++ b/docs/pg_attribute.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.pg_attribute` --- Constants extracted from `pg_attribute.h`__ ================================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/catalog/pg_attribute.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/catalog/pg_attribute.h .. module:: pglast.enums.pg_attribute :synopsis: Constants extracted from pg_attribute.h @@ -17,12 +17,12 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ca .. data:: ATTRIBUTE_IDENTITY_ALWAYS - See `here for details `__. + See `here for details `__. .. data:: ATTRIBUTE_IDENTITY_BY_DEFAULT - See `here for details `__. + See `here for details `__. .. data:: ATTRIBUTE_GENERATED_STORED - See `here for details `__. + See `here for details `__. diff --git a/docs/pg_class.rst b/docs/pg_class.rst index cabc008..bcc5c6b 100644 --- a/docs/pg_class.rst +++ b/docs/pg_class.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.pg_class` --- Constants extracted from `pg_class.h`__ ========================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/catalog/pg_class.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/catalog/pg_class.h .. module:: pglast.enums.pg_class :synopsis: Constants extracted from pg_class.h @@ -17,68 +17,68 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ca .. data:: RELKIND_RELATION - See `here for details `__. + See `here for details `__. .. data:: RELKIND_INDEX - See `here for details `__. + See `here for details `__. .. data:: RELKIND_SEQUENCE - See `here for details `__. + See `here for details `__. .. data:: RELKIND_TOASTVALUE - See `here for details `__. + See `here for details `__. .. data:: RELKIND_VIEW - See `here for details `__. + See `here for details `__. .. data:: RELKIND_MATVIEW - See `here for details `__. + See `here for details `__. .. data:: RELKIND_COMPOSITE_TYPE - See `here for details `__. + See `here for details `__. .. data:: RELKIND_FOREIGN_TABLE - See `here for details `__. + See `here for details `__. .. data:: RELKIND_PARTITIONED_TABLE - See `here for details `__. + See `here for details `__. .. data:: RELKIND_PARTITIONED_INDEX - See `here for details `__. + See `here for details `__. .. data:: RELPERSISTENCE_PERMANENT - See `here for details `__. + See `here for details `__. .. data:: RELPERSISTENCE_UNLOGGED - See `here for details `__. + See `here for details `__. .. data:: RELPERSISTENCE_TEMP - See `here for details `__. + See `here for details `__. .. data:: REPLICA_IDENTITY_DEFAULT - See `here for details `__. + See `here for details `__. .. data:: REPLICA_IDENTITY_NOTHING - See `here for details `__. + See `here for details `__. .. data:: REPLICA_IDENTITY_FULL - See `here for details `__. + See `here for details `__. .. data:: REPLICA_IDENTITY_INDEX - See `here for details `__. + See `here for details `__. diff --git a/docs/pg_trigger.rst b/docs/pg_trigger.rst index 2ac996b..aab6b6e 100644 --- a/docs/pg_trigger.rst +++ b/docs/pg_trigger.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.pg_trigger` --- Constants extracted from `pg_trigger.h`__ ============================================================================== -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/catalog/pg_trigger.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/catalog/pg_trigger.h .. module:: pglast.enums.pg_trigger :synopsis: Constants extracted from pg_trigger.h @@ -17,36 +17,36 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ca .. data:: TRIGGER_TYPE_ROW - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_BEFORE - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_INSERT - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_DELETE - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_UPDATE - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_TRUNCATE - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_INSTEAD - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_STATEMENT - See `here for details `__. + See `here for details `__. .. data:: TRIGGER_TYPE_AFTER - See `here for details `__. + See `here for details `__. diff --git a/docs/primnodes.rst b/docs/primnodes.rst index 2e6c4cc..e53ed68 100644 --- a/docs/primnodes.rst +++ b/docs/primnodes.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.primnodes` --- Constants extracted from `primnodes.h`__ ============================================================================ -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/nodes/primnodes.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/nodes/primnodes.h .. module:: pglast.enums.primnodes :synopsis: Constants extracted from primnodes.h @@ -17,7 +17,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.BoolExprType - Corresponds to the `BoolExprType enum `__. + Corresponds to the `BoolExprType enum `__. .. data:: AND_EXPR @@ -28,7 +28,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.BoolTestType - Corresponds to the `BoolTestType enum `__. + Corresponds to the `BoolTestType enum `__. .. data:: IS_TRUE @@ -45,7 +45,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.CoercionContext - Corresponds to the `CoercionContext enum `__. + Corresponds to the `CoercionContext enum `__. .. data:: COERCION_IMPLICIT @@ -58,7 +58,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.CoercionForm - Corresponds to the `CoercionForm enum `__. + Corresponds to the `CoercionForm enum `__. .. data:: COERCE_EXPLICIT_CALL @@ -71,7 +71,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.JsonConstructorType - Corresponds to the `JsonConstructorType enum `__. + Corresponds to the `JsonConstructorType enum `__. .. data:: JSCTOR_JSON_OBJECT @@ -84,7 +84,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.JsonEncoding - Corresponds to the `JsonEncoding enum `__. + Corresponds to the `JsonEncoding enum `__. .. data:: JS_ENC_DEFAULT @@ -97,7 +97,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.JsonFormatType - Corresponds to the `JsonFormatType enum `__. + Corresponds to the `JsonFormatType enum `__. .. data:: JS_FORMAT_DEFAULT @@ -108,7 +108,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.JsonValueType - Corresponds to the `JsonValueType enum `__. + Corresponds to the `JsonValueType enum `__. .. data:: JS_TYPE_ANY @@ -121,7 +121,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.MinMaxOp - Corresponds to the `MinMaxOp enum `__. + Corresponds to the `MinMaxOp enum `__. .. data:: IS_GREATEST @@ -130,7 +130,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.NullTestType - Corresponds to the `NullTestType enum `__. + Corresponds to the `NullTestType enum `__. .. data:: IS_NULL @@ -139,7 +139,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.OnCommitAction - Corresponds to the `OnCommitAction enum `__. + Corresponds to the `OnCommitAction enum `__. .. data:: ONCOMMIT_NOOP @@ -152,7 +152,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.ParamKind - Corresponds to the `ParamKind enum `__. + Corresponds to the `ParamKind enum `__. .. data:: PARAM_EXTERN @@ -165,7 +165,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.RowCompareType - Corresponds to the `RowCompareType enum `__. + Corresponds to the `RowCompareType enum `__. .. data:: ROWCOMPARE_LT @@ -182,7 +182,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.SQLValueFunctionOp - Corresponds to the `SQLValueFunctionOp enum `__. + Corresponds to the `SQLValueFunctionOp enum `__. .. data:: SVFOP_CURRENT_DATE @@ -217,7 +217,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.SubLinkType - Corresponds to the `SubLinkType enum `__. + Corresponds to the `SubLinkType enum `__. .. data:: EXISTS_SUBLINK @@ -238,7 +238,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.XmlExprOp - Corresponds to the `XmlExprOp enum `__. + Corresponds to the `XmlExprOp enum `__. .. data:: IS_XMLCONCAT @@ -259,7 +259,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/no .. class:: pglast.enums.primnodes.XmlOptionType - Corresponds to the `XmlOptionType enum `__. + Corresponds to the `XmlOptionType enum `__. .. data:: XMLOPTION_DOCUMENT diff --git a/docs/xml.rst b/docs/xml.rst index c7ef248..33bf791 100644 --- a/docs/xml.rst +++ b/docs/xml.rst @@ -9,7 +9,7 @@ :mod:`pglast.enums.xml` --- Constants extracted from `xml.h`__ ================================================================ -__ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/utils/xml.h +__ https://github.com/pganalyze/libpg_query/blob/680f5ee/src/postgres/include/utils/xml.h .. module:: pglast.enums.xml :synopsis: Constants extracted from xml.h @@ -17,7 +17,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ut .. class:: pglast.enums.xml.PgXmlStrictness - Corresponds to the `PgXmlStrictness enum `__. + Corresponds to the `PgXmlStrictness enum `__. .. data:: PG_XML_STRICTNESS_LEGACY @@ -28,7 +28,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ut .. class:: pglast.enums.xml.XmlBinaryType - Corresponds to the `XmlBinaryType enum `__. + Corresponds to the `XmlBinaryType enum `__. .. data:: XMLBINARY_BASE64 @@ -37,7 +37,7 @@ __ https://github.com/pganalyze/libpg_query/blob/1ec3894/src/postgres/include/ut .. class:: pglast.enums.xml.XmlStandaloneType - Corresponds to the `XmlStandaloneType enum `__. + Corresponds to the `XmlStandaloneType enum `__. .. data:: XML_STANDALONE_YES diff --git a/pglast/ast.py b/pglast/ast.py index 586ba22..efa71cd 100644 --- a/pglast/ast.py +++ b/pglast/ast.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from struct_defs.json @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from struct_defs.json @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2021-2024 Lele Gaifax diff --git a/pglast/ast.pyx b/pglast/ast.pyx index 921fc0a..7f49462 100644 --- a/pglast/ast.pyx +++ b/pglast/ast.pyx @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from struct_defs.json @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from struct_defs.json @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2021-2024 Lele Gaifax diff --git a/pglast/enums/lockdefs.py b/pglast/enums/lockdefs.py index 9b5c7d5..21cfc69 100644 --- a/pglast/enums/lockdefs.py +++ b/pglast/enums/lockdefs.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from lockdefs.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from lockdefs.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/lockoptions.py b/pglast/enums/lockoptions.py index b883be4..ef2b854 100644 --- a/pglast/enums/lockoptions.py +++ b/pglast/enums/lockoptions.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from lockoptions.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from lockoptions.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/nodes.py b/pglast/enums/nodes.py index 4d37054..d328d92 100644 --- a/pglast/enums/nodes.py +++ b/pglast/enums/nodes.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from nodes.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from nodes.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/parsenodes.py b/pglast/enums/parsenodes.py index e9484a9..d112cf3 100644 --- a/pglast/enums/parsenodes.py +++ b/pglast/enums/parsenodes.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from parsenodes.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from parsenodes.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/pg_am.py b/pglast/enums/pg_am.py index 03886c3..4478ed1 100644 --- a/pglast/enums/pg_am.py +++ b/pglast/enums/pg_am.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_am.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_am.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/pg_attribute.py b/pglast/enums/pg_attribute.py index 21f224a..13a107a 100644 --- a/pglast/enums/pg_attribute.py +++ b/pglast/enums/pg_attribute.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_attribute.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_attribute.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/pg_class.py b/pglast/enums/pg_class.py index 4e4fa64..9a1f2ed 100644 --- a/pglast/enums/pg_class.py +++ b/pglast/enums/pg_class.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_class.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_class.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/pg_trigger.py b/pglast/enums/pg_trigger.py index a71d66b..24ba6a9 100644 --- a/pglast/enums/pg_trigger.py +++ b/pglast/enums/pg_trigger.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_trigger.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from pg_trigger.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/primnodes.py b/pglast/enums/primnodes.py index 2f662bd..15b4870 100644 --- a/pglast/enums/primnodes.py +++ b/pglast/enums/primnodes.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from primnodes.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from primnodes.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/enums/xml.py b/pglast/enums/xml.py index 0e95a7e..b0404c5 100644 --- a/pglast/enums/xml.py +++ b/pglast/enums/xml.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from xml.h @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from xml.h @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2017-2024 Lele Gaifax diff --git a/pglast/structs.pxd b/pglast/structs.pxd index af6d615..1888c15 100644 --- a/pglast/structs.pxd +++ b/pglast/structs.pxd @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# :Project: pglast -- DO NOT EDIT: automatically extracted from struct_defs.json @ 16-5.1.0-0-g1ec3894 +# :Project: pglast -- DO NOT EDIT: automatically extracted from struct_defs.json @ 16-latest-0-g680f5ee # :Author: Lele Gaifax # :License: GNU General Public License version 3 or later # :Copyright: © 2021-2024 Lele Gaifax