├── .editorconfig ├── .github └── workflows │ └── pull-requests.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── api-extractor.json ├── bin └── extract-pg-schema ├── docs-src ├── .vitepress │ └── config.js ├── api │ ├── extract-pg-schema.attributetype.md │ ├── extract-pg-schema.columnreference.md │ ├── extract-pg-schema.compositetypeattribute.comment.md │ ├── extract-pg-schema.compositetypeattribute.defaultvalue.md │ ├── extract-pg-schema.compositetypeattribute.expandedtype.md │ ├── extract-pg-schema.compositetypeattribute.fakeinformationschemavalue.md │ ├── extract-pg-schema.compositetypeattribute.generated.md │ ├── extract-pg-schema.compositetypeattribute.isarray.md │ ├── extract-pg-schema.compositetypeattribute.isidentity.md │ ├── extract-pg-schema.compositetypeattribute.isnullable.md │ ├── extract-pg-schema.compositetypeattribute.isupdatable.md │ ├── extract-pg-schema.compositetypeattribute.maxlength.md │ ├── extract-pg-schema.compositetypeattribute.md │ ├── extract-pg-schema.compositetypeattribute.name.md │ ├── extract-pg-schema.compositetypeattribute.ordinalposition.md │ ├── extract-pg-schema.compositetypeattribute.type.md │ ├── extract-pg-schema.compositetypedetails.attributes.md │ ├── extract-pg-schema.compositetypedetails.md │ ├── extract-pg-schema.domaindetails.informationschemavalue.md │ ├── extract-pg-schema.domaindetails.innertype.md │ ├── extract-pg-schema.domaindetails.md │ ├── extract-pg-schema.enumdetails.md │ ├── extract-pg-schema.enumdetails.values.md │ ├── extract-pg-schema.extractschema.md │ ├── extract-pg-schema.extractschemaoptions.md │ ├── extract-pg-schema.extractschemaoptions.onprogress.md │ ├── extract-pg-schema.extractschemaoptions.onprogressend.md │ ├── extract-pg-schema.extractschemaoptions.onprogressstart.md │ ├── extract-pg-schema.extractschemaoptions.resolveviews.md │ ├── extract-pg-schema.extractschemaoptions.schemas.md │ ├── extract-pg-schema.extractschemaoptions.typefilter.md │ ├── extract-pg-schema.extractschemas.md │ ├── extract-pg-schema.foreigntablecolumn.comment.md │ ├── extract-pg-schema.foreigntablecolumn.defaultvalue.md │ ├── extract-pg-schema.foreigntablecolumn.expandedtype.md │ ├── extract-pg-schema.foreigntablecolumn.generated.md │ ├── extract-pg-schema.foreigntablecolumn.informationschemavalue.md │ ├── extract-pg-schema.foreigntablecolumn.isarray.md │ ├── extract-pg-schema.foreigntablecolumn.isidentity.md │ ├── extract-pg-schema.foreigntablecolumn.isnullable.md │ ├── extract-pg-schema.foreigntablecolumn.isprimarykey.md │ ├── extract-pg-schema.foreigntablecolumn.isupdatable.md │ ├── extract-pg-schema.foreigntablecolumn.maxlength.md │ ├── extract-pg-schema.foreigntablecolumn.md │ ├── extract-pg-schema.foreigntablecolumn.name.md │ ├── extract-pg-schema.foreigntablecolumn.ordinalposition.md │ ├── extract-pg-schema.foreigntablecolumn.source.md │ ├── extract-pg-schema.foreigntablecolumn.type.md │ ├── extract-pg-schema.foreigntablecolumntype.md │ ├── extract-pg-schema.foreigntabledetails.columns.md │ ├── extract-pg-schema.foreigntabledetails.informationschemavalue.md │ ├── extract-pg-schema.foreigntabledetails.md │ ├── extract-pg-schema.functiondetails.comment.md │ ├── extract-pg-schema.functiondetails.definition.md │ ├── extract-pg-schema.functiondetails.estimatedcost.md │ ├── extract-pg-schema.functiondetails.estimatedrows.md │ ├── extract-pg-schema.functiondetails.informationschemavalue.md │ ├── extract-pg-schema.functiondetails.isleakproof.md │ ├── extract-pg-schema.functiondetails.issecuritydefiner.md │ ├── extract-pg-schema.functiondetails.isstrict.md │ ├── extract-pg-schema.functiondetails.language.md │ ├── extract-pg-schema.functiondetails.md │ ├── extract-pg-schema.functiondetails.parallelsafety.md │ ├── extract-pg-schema.functiondetails.parameters.md │ ├── extract-pg-schema.functiondetails.returnsset.md │ ├── extract-pg-schema.functiondetails.returntype.md │ ├── extract-pg-schema.functiondetails.volatility.md │ ├── extract-pg-schema.functionparameter.md │ ├── extract-pg-schema.index.md │ ├── extract-pg-schema.informationschemacolumn.character_maximum_length.md │ ├── extract-pg-schema.informationschemacolumn.character_octet_length.md │ ├── extract-pg-schema.informationschemacolumn.character_set_catalog.md │ ├── extract-pg-schema.informationschemacolumn.character_set_name.md │ ├── extract-pg-schema.informationschemacolumn.character_set_schema.md │ ├── extract-pg-schema.informationschemacolumn.collation_catalog.md │ ├── extract-pg-schema.informationschemacolumn.collation_name.md │ ├── extract-pg-schema.informationschemacolumn.collation_schema.md │ ├── extract-pg-schema.informationschemacolumn.column_default.md │ ├── extract-pg-schema.informationschemacolumn.column_name.md │ ├── extract-pg-schema.informationschemacolumn.data_type.md │ ├── extract-pg-schema.informationschemacolumn.datetime_precision.md │ ├── extract-pg-schema.informationschemacolumn.domain_catalog.md │ ├── extract-pg-schema.informationschemacolumn.domain_name.md │ ├── extract-pg-schema.informationschemacolumn.domain_schema.md │ ├── extract-pg-schema.informationschemacolumn.dtd_identifier.md │ ├── extract-pg-schema.informationschemacolumn.generation_expression.md │ ├── extract-pg-schema.informationschemacolumn.identity_cycle.md │ ├── extract-pg-schema.informationschemacolumn.identity_generation.md │ ├── extract-pg-schema.informationschemacolumn.identity_increment.md │ ├── extract-pg-schema.informationschemacolumn.identity_maximum.md │ ├── extract-pg-schema.informationschemacolumn.identity_minimum.md │ ├── extract-pg-schema.informationschemacolumn.identity_start.md │ ├── extract-pg-schema.informationschemacolumn.interval_precision.md │ ├── extract-pg-schema.informationschemacolumn.interval_type.md │ ├── extract-pg-schema.informationschemacolumn.is_generated.md │ ├── extract-pg-schema.informationschemacolumn.is_identity.md │ ├── extract-pg-schema.informationschemacolumn.is_nullable.md │ ├── extract-pg-schema.informationschemacolumn.is_self_referencing.md │ ├── extract-pg-schema.informationschemacolumn.is_updatable.md │ ├── extract-pg-schema.informationschemacolumn.maximum_cardinality.md │ ├── extract-pg-schema.informationschemacolumn.md │ ├── extract-pg-schema.informationschemacolumn.numeric_precision.md │ ├── extract-pg-schema.informationschemacolumn.numeric_precision_radix.md │ ├── extract-pg-schema.informationschemacolumn.numeric_scale.md │ ├── extract-pg-schema.informationschemacolumn.ordinal_position.md │ ├── extract-pg-schema.informationschemacolumn.scope_catalog.md │ ├── extract-pg-schema.informationschemacolumn.scope_name.md │ ├── extract-pg-schema.informationschemacolumn.scope_schema.md │ ├── extract-pg-schema.informationschemacolumn.table_catalog.md │ ├── extract-pg-schema.informationschemacolumn.table_name.md │ ├── extract-pg-schema.informationschemacolumn.table_schema.md │ ├── extract-pg-schema.informationschemacolumn.udt_catalog.md │ ├── extract-pg-schema.informationschemacolumn.udt_name.md │ ├── extract-pg-schema.informationschemacolumn.udt_schema.md │ ├── extract-pg-schema.informationschemadomain.character_maximum_length.md │ ├── extract-pg-schema.informationschemadomain.character_octet_length.md │ ├── extract-pg-schema.informationschemadomain.character_set_catalog.md │ ├── extract-pg-schema.informationschemadomain.character_set_name.md │ ├── extract-pg-schema.informationschemadomain.character_set_schema.md │ ├── extract-pg-schema.informationschemadomain.collation_catalog.md │ ├── extract-pg-schema.informationschemadomain.collation_name.md │ ├── extract-pg-schema.informationschemadomain.collation_schema.md │ ├── extract-pg-schema.informationschemadomain.data_type.md │ ├── extract-pg-schema.informationschemadomain.datetime_precision.md │ ├── extract-pg-schema.informationschemadomain.domain_catalog.md │ ├── extract-pg-schema.informationschemadomain.domain_default.md │ ├── extract-pg-schema.informationschemadomain.domain_name.md │ ├── extract-pg-schema.informationschemadomain.domain_schema.md │ ├── extract-pg-schema.informationschemadomain.dtd_identifier.md │ ├── extract-pg-schema.informationschemadomain.interval_precision.md │ ├── extract-pg-schema.informationschemadomain.interval_type.md │ ├── extract-pg-schema.informationschemadomain.maximum_cardinality.md │ ├── extract-pg-schema.informationschemadomain.md │ ├── extract-pg-schema.informationschemadomain.numeric_precision.md │ ├── extract-pg-schema.informationschemadomain.numeric_precision_radix.md │ ├── extract-pg-schema.informationschemadomain.numeric_scale.md │ ├── extract-pg-schema.informationschemadomain.scope_catalog.md │ ├── extract-pg-schema.informationschemadomain.scope_name.md │ ├── extract-pg-schema.informationschemadomain.scope_schema.md │ ├── extract-pg-schema.informationschemadomain.udt_catalog.md │ ├── extract-pg-schema.informationschemadomain.udt_name.md │ ├── extract-pg-schema.informationschemadomain.udt_schema.md │ ├── extract-pg-schema.informationschemaroutine.as_locator.md │ ├── extract-pg-schema.informationschemaroutine.character_maximum_length.md │ ├── extract-pg-schema.informationschemaroutine.character_octet_length.md │ ├── extract-pg-schema.informationschemaroutine.character_set_catalog.md │ ├── extract-pg-schema.informationschemaroutine.character_set_name.md │ ├── extract-pg-schema.informationschemaroutine.character_set_schema.md │ ├── extract-pg-schema.informationschemaroutine.collation_catalog.md │ ├── extract-pg-schema.informationschemaroutine.collation_name.md │ ├── extract-pg-schema.informationschemaroutine.collation_schema.md │ ├── extract-pg-schema.informationschemaroutine.created.md │ ├── extract-pg-schema.informationschemaroutine.data_type.md │ ├── extract-pg-schema.informationschemaroutine.datetime_precision.md │ ├── extract-pg-schema.informationschemaroutine.dtd_identifier.md │ ├── extract-pg-schema.informationschemaroutine.external_language.md │ ├── extract-pg-schema.informationschemaroutine.external_name.md │ ├── extract-pg-schema.informationschemaroutine.interval_precision.md │ ├── extract-pg-schema.informationschemaroutine.interval_type.md │ ├── extract-pg-schema.informationschemaroutine.is_deterministic.md │ ├── extract-pg-schema.informationschemaroutine.is_implicitly_invocable.md │ ├── extract-pg-schema.informationschemaroutine.is_null_call.md │ ├── extract-pg-schema.informationschemaroutine.is_udt_dependent.md │ ├── extract-pg-schema.informationschemaroutine.is_user_defined_cast.md │ ├── extract-pg-schema.informationschemaroutine.last_altered.md │ ├── extract-pg-schema.informationschemaroutine.max_dynamic_result_sets.md │ ├── extract-pg-schema.informationschemaroutine.maximum_cardinality.md │ ├── extract-pg-schema.informationschemaroutine.md │ ├── extract-pg-schema.informationschemaroutine.module_catalog.md │ ├── extract-pg-schema.informationschemaroutine.module_name.md │ ├── extract-pg-schema.informationschemaroutine.module_schema.md │ ├── extract-pg-schema.informationschemaroutine.new_savepoint_level.md │ ├── extract-pg-schema.informationschemaroutine.numeric_precision.md │ ├── extract-pg-schema.informationschemaroutine.numeric_precision_radix.md │ ├── extract-pg-schema.informationschemaroutine.numeric_scale.md │ ├── extract-pg-schema.informationschemaroutine.parameter_style.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_as_locator.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_max_length.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_octet_length.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_set_catalog.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_set_name.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_set_schema.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_collation_catalog.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_collation_name.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_collation_schema.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_datetime_precision.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_dtd_identifier.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_from_data_type.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_interval_precision.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_interval_type.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_maximum_cardinality.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_numeric_precision.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_numeric_precision_radix.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_numeric_scale.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_scope_catalog.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_scope_name.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_scope_schema.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_type_udt_catalog.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_type_udt_name.md │ ├── extract-pg-schema.informationschemaroutine.result_cast_type_udt_schema.md │ ├── extract-pg-schema.informationschemaroutine.routine_body.md │ ├── extract-pg-schema.informationschemaroutine.routine_catalog.md │ ├── extract-pg-schema.informationschemaroutine.routine_definition.md │ ├── extract-pg-schema.informationschemaroutine.routine_name.md │ ├── extract-pg-schema.informationschemaroutine.routine_schema.md │ ├── extract-pg-schema.informationschemaroutine.routine_type.md │ ├── extract-pg-schema.informationschemaroutine.schema_level_routine.md │ ├── extract-pg-schema.informationschemaroutine.scope_catalog.md │ ├── extract-pg-schema.informationschemaroutine.scope_name.md │ ├── extract-pg-schema.informationschemaroutine.scope_schema.md │ ├── extract-pg-schema.informationschemaroutine.security_type.md │ ├── extract-pg-schema.informationschemaroutine.specific_catalog.md │ ├── extract-pg-schema.informationschemaroutine.specific_name.md │ ├── extract-pg-schema.informationschemaroutine.specific_schema.md │ ├── extract-pg-schema.informationschemaroutine.sql_data_access.md │ ├── extract-pg-schema.informationschemaroutine.sql_path.md │ ├── extract-pg-schema.informationschemaroutine.to_sql_specific_catalog.md │ ├── extract-pg-schema.informationschemaroutine.to_sql_specific_name.md │ ├── extract-pg-schema.informationschemaroutine.to_sql_specific_schema.md │ ├── extract-pg-schema.informationschemaroutine.type_udt_catalog.md │ ├── extract-pg-schema.informationschemaroutine.type_udt_name.md │ ├── extract-pg-schema.informationschemaroutine.type_udt_schema.md │ ├── extract-pg-schema.informationschemaroutine.udt_catalog.md │ ├── extract-pg-schema.informationschemaroutine.udt_name.md │ ├── extract-pg-schema.informationschemaroutine.udt_schema.md │ ├── extract-pg-schema.informationschematable.commit_action.md │ ├── extract-pg-schema.informationschematable.is_insertable_into.md │ ├── extract-pg-schema.informationschematable.is_typed.md │ ├── extract-pg-schema.informationschematable.md │ ├── extract-pg-schema.informationschematable.reference_generation.md │ ├── extract-pg-schema.informationschematable.self_referencing_column_name.md │ ├── extract-pg-schema.informationschematable.table_catalog.md │ ├── extract-pg-schema.informationschematable.table_name.md │ ├── extract-pg-schema.informationschematable.table_schema.md │ ├── extract-pg-schema.informationschematable.table_type.md │ ├── extract-pg-schema.informationschematable.user_defined_type_catalog.md │ ├── extract-pg-schema.informationschematable.user_defined_type_name.md │ ├── extract-pg-schema.informationschematable.user_defined_type_schema.md │ ├── extract-pg-schema.informationschemaview.check_option.md │ ├── extract-pg-schema.informationschemaview.is_insertable_into.md │ ├── extract-pg-schema.informationschemaview.is_trigger_deletable.md │ ├── extract-pg-schema.informationschemaview.is_trigger_insertable_into.md │ ├── extract-pg-schema.informationschemaview.is_trigger_updatable.md │ ├── extract-pg-schema.informationschemaview.is_updatable.md │ ├── extract-pg-schema.informationschemaview.md │ ├── extract-pg-schema.informationschemaview.table_catalog.md │ ├── extract-pg-schema.informationschemaview.table_name.md │ ├── extract-pg-schema.informationschemaview.table_schema.md │ ├── extract-pg-schema.informationschemaview.view_definition.md │ ├── extract-pg-schema.kind.md │ ├── extract-pg-schema.materializedviewcolumn.comment.md │ ├── extract-pg-schema.materializedviewcolumn.defaultvalue.md │ ├── extract-pg-schema.materializedviewcolumn.expandedtype.md │ ├── extract-pg-schema.materializedviewcolumn.fakeinformationschemavalue.md │ ├── extract-pg-schema.materializedviewcolumn.generated.md │ ├── extract-pg-schema.materializedviewcolumn.indices.md │ ├── extract-pg-schema.materializedviewcolumn.isarray.md │ ├── extract-pg-schema.materializedviewcolumn.isidentity.md │ ├── extract-pg-schema.materializedviewcolumn.isnullable.md │ ├── extract-pg-schema.materializedviewcolumn.isprimarykey.md │ ├── extract-pg-schema.materializedviewcolumn.isupdatable.md │ ├── extract-pg-schema.materializedviewcolumn.maxlength.md │ ├── extract-pg-schema.materializedviewcolumn.md │ ├── extract-pg-schema.materializedviewcolumn.name.md │ ├── extract-pg-schema.materializedviewcolumn.ordinalposition.md │ ├── extract-pg-schema.materializedviewcolumn.reference.md │ ├── extract-pg-schema.materializedviewcolumn.references.md │ ├── extract-pg-schema.materializedviewcolumn.source.md │ ├── extract-pg-schema.materializedviewcolumn.type.md │ ├── extract-pg-schema.materializedviewcolumntype.md │ ├── extract-pg-schema.materializedviewdetails.columns.md │ ├── extract-pg-schema.materializedviewdetails.definition.md │ ├── extract-pg-schema.materializedviewdetails.fakeinformationschemavalue.md │ ├── extract-pg-schema.materializedviewdetails.md │ ├── extract-pg-schema.md │ ├── extract-pg-schema.pgtype.md │ ├── extract-pg-schema.proceduredetails.md │ ├── extract-pg-schema.procedureparameter.md │ ├── extract-pg-schema.rangedetails.innertype.md │ ├── extract-pg-schema.rangedetails.md │ ├── extract-pg-schema.schema.md │ ├── extract-pg-schema.tablecheck.clause.md │ ├── extract-pg-schema.tablecheck.md │ ├── extract-pg-schema.tablecheck.name.md │ ├── extract-pg-schema.tablecolumn.comment.md │ ├── extract-pg-schema.tablecolumn.defaultvalue.md │ ├── extract-pg-schema.tablecolumn.dimensions.md │ ├── extract-pg-schema.tablecolumn.expandedtype.md │ ├── extract-pg-schema.tablecolumn.generated.md │ ├── extract-pg-schema.tablecolumn.indices.md │ ├── extract-pg-schema.tablecolumn.informationschemavalue.md │ ├── extract-pg-schema.tablecolumn.isarray.md │ ├── extract-pg-schema.tablecolumn.isidentity.md │ ├── extract-pg-schema.tablecolumn.isnullable.md │ ├── extract-pg-schema.tablecolumn.isprimarykey.md │ ├── extract-pg-schema.tablecolumn.isupdatable.md │ ├── extract-pg-schema.tablecolumn.maxlength.md │ ├── extract-pg-schema.tablecolumn.md │ ├── extract-pg-schema.tablecolumn.name.md │ ├── extract-pg-schema.tablecolumn.ordinalposition.md │ ├── extract-pg-schema.tablecolumn.parenttable.md │ ├── extract-pg-schema.tablecolumn.reference.md │ ├── extract-pg-schema.tablecolumn.references.md │ ├── extract-pg-schema.tablecolumn.type.md │ ├── extract-pg-schema.tablecolumntype.md │ ├── extract-pg-schema.tabledetails.checks.md │ ├── extract-pg-schema.tabledetails.columns.md │ ├── extract-pg-schema.tabledetails.indices.md │ ├── extract-pg-schema.tabledetails.informationschemavalue.md │ ├── extract-pg-schema.tabledetails.isrowlevelsecurityenabled.md │ ├── extract-pg-schema.tabledetails.isrowlevelsecurityenforced.md │ ├── extract-pg-schema.tabledetails.md │ ├── extract-pg-schema.tabledetails.securitypolicies.md │ ├── extract-pg-schema.tabledetails.triggers.md │ ├── extract-pg-schema.tableindex.columns.md │ ├── extract-pg-schema.tableindex.isprimary.md │ ├── extract-pg-schema.tableindex.isunique.md │ ├── extract-pg-schema.tableindex.md │ ├── extract-pg-schema.tableindex.name.md │ ├── extract-pg-schema.tableindexcolumn.definition.md │ ├── extract-pg-schema.tableindexcolumn.md │ ├── extract-pg-schema.tableindexcolumn.name.md │ ├── extract-pg-schema.tableindexcolumn.predicate.md │ ├── extract-pg-schema.tablesecuritypolicy.commandtype.md │ ├── extract-pg-schema.tablesecuritypolicy.ispermissive.md │ ├── extract-pg-schema.tablesecuritypolicy.md │ ├── extract-pg-schema.tablesecuritypolicy.modifiabilityexpression.md │ ├── extract-pg-schema.tablesecuritypolicy.name.md │ ├── extract-pg-schema.tablesecuritypolicy.rolesappliedto.md │ ├── extract-pg-schema.tablesecuritypolicy.visibilityexpression.md │ ├── extract-pg-schema.trigger.actiontiming.md │ ├── extract-pg-schema.trigger.comment.md │ ├── extract-pg-schema.trigger.condition.md │ ├── extract-pg-schema.trigger.enabled.md │ ├── extract-pg-schema.trigger.eventmanipulation.md │ ├── extract-pg-schema.trigger.functionargs.md │ ├── extract-pg-schema.trigger.functionname.md │ ├── extract-pg-schema.trigger.functionschema.md │ ├── extract-pg-schema.trigger.informationschemavalue.md │ ├── extract-pg-schema.trigger.md │ ├── extract-pg-schema.trigger.name.md │ ├── extract-pg-schema.trigger.orientation.md │ ├── extract-pg-schema.updateaction.md │ ├── extract-pg-schema.updateactionmap.md │ ├── extract-pg-schema.viewcolumn.comment.md │ ├── extract-pg-schema.viewcolumn.defaultvalue.md │ ├── extract-pg-schema.viewcolumn.expandedtype.md │ ├── extract-pg-schema.viewcolumn.generated.md │ ├── extract-pg-schema.viewcolumn.indices.md │ ├── extract-pg-schema.viewcolumn.informationschemavalue.md │ ├── extract-pg-schema.viewcolumn.isarray.md │ ├── extract-pg-schema.viewcolumn.isidentity.md │ ├── extract-pg-schema.viewcolumn.isnullable.md │ ├── extract-pg-schema.viewcolumn.isprimarykey.md │ ├── extract-pg-schema.viewcolumn.isupdatable.md │ ├── extract-pg-schema.viewcolumn.maxlength.md │ ├── extract-pg-schema.viewcolumn.md │ ├── extract-pg-schema.viewcolumn.name.md │ ├── extract-pg-schema.viewcolumn.ordinalposition.md │ ├── extract-pg-schema.viewcolumn.reference.md │ ├── extract-pg-schema.viewcolumn.references.md │ ├── extract-pg-schema.viewcolumn.source.md │ ├── extract-pg-schema.viewcolumn.type.md │ ├── extract-pg-schema.viewcolumntype.md │ ├── extract-pg-schema.viewdetails.columns.md │ ├── extract-pg-schema.viewdetails.definition.md │ ├── extract-pg-schema.viewdetails.informationschemavalue.md │ ├── extract-pg-schema.viewdetails.md │ ├── extract-pg-schema.viewdetails.options.md │ ├── extract-pg-schema.viewdetails.triggers.md │ ├── extract-pg-schema.yesno.md │ └── index.md └── index.md ├── docs ├── 404.html ├── api │ ├── extract-pg-schema.attributetype.html │ ├── extract-pg-schema.columnreference.html │ ├── extract-pg-schema.compositetypeattribute.comment.html │ ├── extract-pg-schema.compositetypeattribute.defaultvalue.html │ ├── extract-pg-schema.compositetypeattribute.expandedtype.html │ ├── extract-pg-schema.compositetypeattribute.fakeinformationschemavalue.html │ ├── extract-pg-schema.compositetypeattribute.generated.html │ ├── extract-pg-schema.compositetypeattribute.html │ ├── extract-pg-schema.compositetypeattribute.isarray.html │ ├── extract-pg-schema.compositetypeattribute.isidentity.html │ ├── extract-pg-schema.compositetypeattribute.isnullable.html │ ├── extract-pg-schema.compositetypeattribute.isupdatable.html │ ├── extract-pg-schema.compositetypeattribute.maxlength.html │ ├── extract-pg-schema.compositetypeattribute.name.html │ ├── extract-pg-schema.compositetypeattribute.ordinalposition.html │ ├── extract-pg-schema.compositetypeattribute.type.html │ ├── extract-pg-schema.compositetypedetails.attributes.html │ ├── extract-pg-schema.compositetypedetails.html │ ├── extract-pg-schema.domaindetails.html │ ├── extract-pg-schema.domaindetails.informationschemavalue.html │ ├── extract-pg-schema.domaindetails.innertype.html │ ├── extract-pg-schema.enumdetails.html │ ├── extract-pg-schema.enumdetails.values.html │ ├── extract-pg-schema.extractschema.html │ ├── extract-pg-schema.extractschemaoptions.html │ ├── extract-pg-schema.extractschemaoptions.onprogress.html │ ├── extract-pg-schema.extractschemaoptions.onprogressend.html │ ├── extract-pg-schema.extractschemaoptions.onprogressstart.html │ ├── extract-pg-schema.extractschemaoptions.resolveviews.html │ ├── extract-pg-schema.extractschemaoptions.schemas.html │ ├── extract-pg-schema.extractschemaoptions.typefilter.html │ ├── extract-pg-schema.extractschemas.html │ ├── extract-pg-schema.foreigntablecolumn.comment.html │ ├── extract-pg-schema.foreigntablecolumn.defaultvalue.html │ ├── extract-pg-schema.foreigntablecolumn.expandedtype.html │ ├── extract-pg-schema.foreigntablecolumn.generated.html │ ├── extract-pg-schema.foreigntablecolumn.html │ ├── extract-pg-schema.foreigntablecolumn.informationschemavalue.html │ ├── extract-pg-schema.foreigntablecolumn.isarray.html │ ├── extract-pg-schema.foreigntablecolumn.isidentity.html │ ├── extract-pg-schema.foreigntablecolumn.isnullable.html │ ├── extract-pg-schema.foreigntablecolumn.isprimarykey.html │ ├── extract-pg-schema.foreigntablecolumn.isupdatable.html │ ├── extract-pg-schema.foreigntablecolumn.maxlength.html │ ├── extract-pg-schema.foreigntablecolumn.name.html │ ├── extract-pg-schema.foreigntablecolumn.ordinalposition.html │ ├── extract-pg-schema.foreigntablecolumn.source.html │ ├── extract-pg-schema.foreigntablecolumn.type.html │ ├── extract-pg-schema.foreigntablecolumntype.html │ ├── extract-pg-schema.foreigntabledetails.columns.html │ ├── extract-pg-schema.foreigntabledetails.html │ ├── extract-pg-schema.foreigntabledetails.informationschemavalue.html │ ├── extract-pg-schema.functiondetails.comment.html │ ├── extract-pg-schema.functiondetails.definition.html │ ├── extract-pg-schema.functiondetails.estimatedcost.html │ ├── extract-pg-schema.functiondetails.estimatedrows.html │ ├── extract-pg-schema.functiondetails.html │ ├── extract-pg-schema.functiondetails.informationschemavalue.html │ ├── extract-pg-schema.functiondetails.isleakproof.html │ ├── extract-pg-schema.functiondetails.issecuritydefiner.html │ ├── extract-pg-schema.functiondetails.isstrict.html │ ├── extract-pg-schema.functiondetails.language.html │ ├── extract-pg-schema.functiondetails.parallelsafety.html │ ├── extract-pg-schema.functiondetails.parameters.html │ ├── extract-pg-schema.functiondetails.returnsset.html │ ├── extract-pg-schema.functiondetails.returntype.html │ ├── extract-pg-schema.functiondetails.volatility.html │ ├── extract-pg-schema.functionparameter.html │ ├── extract-pg-schema.html │ ├── extract-pg-schema.index.html │ ├── extract-pg-schema.informationschemacolumn.character_maximum_length.html │ ├── extract-pg-schema.informationschemacolumn.character_octet_length.html │ ├── extract-pg-schema.informationschemacolumn.character_set_catalog.html │ ├── extract-pg-schema.informationschemacolumn.character_set_name.html │ ├── extract-pg-schema.informationschemacolumn.character_set_schema.html │ ├── extract-pg-schema.informationschemacolumn.collation_catalog.html │ ├── extract-pg-schema.informationschemacolumn.collation_name.html │ ├── extract-pg-schema.informationschemacolumn.collation_schema.html │ ├── extract-pg-schema.informationschemacolumn.column_default.html │ ├── extract-pg-schema.informationschemacolumn.column_name.html │ ├── extract-pg-schema.informationschemacolumn.data_type.html │ ├── extract-pg-schema.informationschemacolumn.datetime_precision.html │ ├── extract-pg-schema.informationschemacolumn.domain_catalog.html │ ├── extract-pg-schema.informationschemacolumn.domain_name.html │ ├── extract-pg-schema.informationschemacolumn.domain_schema.html │ ├── extract-pg-schema.informationschemacolumn.dtd_identifier.html │ ├── extract-pg-schema.informationschemacolumn.generation_expression.html │ ├── extract-pg-schema.informationschemacolumn.html │ ├── extract-pg-schema.informationschemacolumn.identity_cycle.html │ ├── extract-pg-schema.informationschemacolumn.identity_generation.html │ ├── extract-pg-schema.informationschemacolumn.identity_increment.html │ ├── extract-pg-schema.informationschemacolumn.identity_maximum.html │ ├── extract-pg-schema.informationschemacolumn.identity_minimum.html │ ├── extract-pg-schema.informationschemacolumn.identity_start.html │ ├── extract-pg-schema.informationschemacolumn.interval_precision.html │ ├── extract-pg-schema.informationschemacolumn.interval_type.html │ ├── extract-pg-schema.informationschemacolumn.is_generated.html │ ├── extract-pg-schema.informationschemacolumn.is_identity.html │ ├── extract-pg-schema.informationschemacolumn.is_nullable.html │ ├── extract-pg-schema.informationschemacolumn.is_self_referencing.html │ ├── extract-pg-schema.informationschemacolumn.is_updatable.html │ ├── extract-pg-schema.informationschemacolumn.maximum_cardinality.html │ ├── extract-pg-schema.informationschemacolumn.numeric_precision.html │ ├── extract-pg-schema.informationschemacolumn.numeric_precision_radix.html │ ├── extract-pg-schema.informationschemacolumn.numeric_scale.html │ ├── extract-pg-schema.informationschemacolumn.ordinal_position.html │ ├── extract-pg-schema.informationschemacolumn.scope_catalog.html │ ├── extract-pg-schema.informationschemacolumn.scope_name.html │ ├── extract-pg-schema.informationschemacolumn.scope_schema.html │ ├── extract-pg-schema.informationschemacolumn.table_catalog.html │ ├── extract-pg-schema.informationschemacolumn.table_name.html │ ├── extract-pg-schema.informationschemacolumn.table_schema.html │ ├── extract-pg-schema.informationschemacolumn.udt_catalog.html │ ├── extract-pg-schema.informationschemacolumn.udt_name.html │ ├── extract-pg-schema.informationschemacolumn.udt_schema.html │ ├── extract-pg-schema.informationschemadomain.character_maximum_length.html │ ├── extract-pg-schema.informationschemadomain.character_octet_length.html │ ├── extract-pg-schema.informationschemadomain.character_set_catalog.html │ ├── extract-pg-schema.informationschemadomain.character_set_name.html │ ├── extract-pg-schema.informationschemadomain.character_set_schema.html │ ├── extract-pg-schema.informationschemadomain.collation_catalog.html │ ├── extract-pg-schema.informationschemadomain.collation_name.html │ ├── extract-pg-schema.informationschemadomain.collation_schema.html │ ├── extract-pg-schema.informationschemadomain.data_type.html │ ├── extract-pg-schema.informationschemadomain.datetime_precision.html │ ├── extract-pg-schema.informationschemadomain.domain_catalog.html │ ├── extract-pg-schema.informationschemadomain.domain_default.html │ ├── extract-pg-schema.informationschemadomain.domain_name.html │ ├── extract-pg-schema.informationschemadomain.domain_schema.html │ ├── extract-pg-schema.informationschemadomain.dtd_identifier.html │ ├── extract-pg-schema.informationschemadomain.html │ ├── extract-pg-schema.informationschemadomain.interval_precision.html │ ├── extract-pg-schema.informationschemadomain.interval_type.html │ ├── extract-pg-schema.informationschemadomain.maximum_cardinality.html │ ├── extract-pg-schema.informationschemadomain.numeric_precision.html │ ├── extract-pg-schema.informationschemadomain.numeric_precision_radix.html │ ├── extract-pg-schema.informationschemadomain.numeric_scale.html │ ├── extract-pg-schema.informationschemadomain.scope_catalog.html │ ├── extract-pg-schema.informationschemadomain.scope_name.html │ ├── extract-pg-schema.informationschemadomain.scope_schema.html │ ├── extract-pg-schema.informationschemadomain.udt_catalog.html │ ├── extract-pg-schema.informationschemadomain.udt_name.html │ ├── extract-pg-schema.informationschemadomain.udt_schema.html │ ├── extract-pg-schema.informationschemaroutine.as_locator.html │ ├── extract-pg-schema.informationschemaroutine.character_maximum_length.html │ ├── extract-pg-schema.informationschemaroutine.character_octet_length.html │ ├── extract-pg-schema.informationschemaroutine.character_set_catalog.html │ ├── extract-pg-schema.informationschemaroutine.character_set_name.html │ ├── extract-pg-schema.informationschemaroutine.character_set_schema.html │ ├── extract-pg-schema.informationschemaroutine.collation_catalog.html │ ├── extract-pg-schema.informationschemaroutine.collation_name.html │ ├── extract-pg-schema.informationschemaroutine.collation_schema.html │ ├── extract-pg-schema.informationschemaroutine.created.html │ ├── extract-pg-schema.informationschemaroutine.data_type.html │ ├── extract-pg-schema.informationschemaroutine.datetime_precision.html │ ├── extract-pg-schema.informationschemaroutine.dtd_identifier.html │ ├── extract-pg-schema.informationschemaroutine.external_language.html │ ├── extract-pg-schema.informationschemaroutine.external_name.html │ ├── extract-pg-schema.informationschemaroutine.html │ ├── extract-pg-schema.informationschemaroutine.interval_precision.html │ ├── extract-pg-schema.informationschemaroutine.interval_type.html │ ├── extract-pg-schema.informationschemaroutine.is_deterministic.html │ ├── extract-pg-schema.informationschemaroutine.is_implicitly_invocable.html │ ├── extract-pg-schema.informationschemaroutine.is_null_call.html │ ├── extract-pg-schema.informationschemaroutine.is_udt_dependent.html │ ├── extract-pg-schema.informationschemaroutine.is_user_defined_cast.html │ ├── extract-pg-schema.informationschemaroutine.last_altered.html │ ├── extract-pg-schema.informationschemaroutine.max_dynamic_result_sets.html │ ├── extract-pg-schema.informationschemaroutine.maximum_cardinality.html │ ├── extract-pg-schema.informationschemaroutine.module_catalog.html │ ├── extract-pg-schema.informationschemaroutine.module_name.html │ ├── extract-pg-schema.informationschemaroutine.module_schema.html │ ├── extract-pg-schema.informationschemaroutine.new_savepoint_level.html │ ├── extract-pg-schema.informationschemaroutine.numeric_precision.html │ ├── extract-pg-schema.informationschemaroutine.numeric_precision_radix.html │ ├── extract-pg-schema.informationschemaroutine.numeric_scale.html │ ├── extract-pg-schema.informationschemaroutine.parameter_style.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_as_locator.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_max_length.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_octet_length.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_set_catalog.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_set_name.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_char_set_schema.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_collation_catalog.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_collation_name.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_collation_schema.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_datetime_precision.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_dtd_identifier.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_from_data_type.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_interval_precision.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_interval_type.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_maximum_cardinality.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_numeric_precision.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_numeric_precision_radix.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_numeric_scale.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_scope_catalog.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_scope_name.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_scope_schema.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_type_udt_catalog.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_type_udt_name.html │ ├── extract-pg-schema.informationschemaroutine.result_cast_type_udt_schema.html │ ├── extract-pg-schema.informationschemaroutine.routine_body.html │ ├── extract-pg-schema.informationschemaroutine.routine_catalog.html │ ├── extract-pg-schema.informationschemaroutine.routine_definition.html │ ├── extract-pg-schema.informationschemaroutine.routine_name.html │ ├── extract-pg-schema.informationschemaroutine.routine_schema.html │ ├── extract-pg-schema.informationschemaroutine.routine_type.html │ ├── extract-pg-schema.informationschemaroutine.schema_level_routine.html │ ├── extract-pg-schema.informationschemaroutine.scope_catalog.html │ ├── extract-pg-schema.informationschemaroutine.scope_name.html │ ├── extract-pg-schema.informationschemaroutine.scope_schema.html │ ├── extract-pg-schema.informationschemaroutine.security_type.html │ ├── extract-pg-schema.informationschemaroutine.specific_catalog.html │ ├── extract-pg-schema.informationschemaroutine.specific_name.html │ ├── extract-pg-schema.informationschemaroutine.specific_schema.html │ ├── extract-pg-schema.informationschemaroutine.sql_data_access.html │ ├── extract-pg-schema.informationschemaroutine.sql_path.html │ ├── extract-pg-schema.informationschemaroutine.to_sql_specific_catalog.html │ ├── extract-pg-schema.informationschemaroutine.to_sql_specific_name.html │ ├── extract-pg-schema.informationschemaroutine.to_sql_specific_schema.html │ ├── extract-pg-schema.informationschemaroutine.type_udt_catalog.html │ ├── extract-pg-schema.informationschemaroutine.type_udt_name.html │ ├── extract-pg-schema.informationschemaroutine.type_udt_schema.html │ ├── extract-pg-schema.informationschemaroutine.udt_catalog.html │ ├── extract-pg-schema.informationschemaroutine.udt_name.html │ ├── extract-pg-schema.informationschemaroutine.udt_schema.html │ ├── extract-pg-schema.informationschematable.commit_action.html │ ├── extract-pg-schema.informationschematable.html │ ├── extract-pg-schema.informationschematable.is_insertable_into.html │ ├── extract-pg-schema.informationschematable.is_typed.html │ ├── extract-pg-schema.informationschematable.reference_generation.html │ ├── extract-pg-schema.informationschematable.self_referencing_column_name.html │ ├── extract-pg-schema.informationschematable.table_catalog.html │ ├── extract-pg-schema.informationschematable.table_name.html │ ├── extract-pg-schema.informationschematable.table_schema.html │ ├── extract-pg-schema.informationschematable.table_type.html │ ├── extract-pg-schema.informationschematable.user_defined_type_catalog.html │ ├── extract-pg-schema.informationschematable.user_defined_type_name.html │ ├── extract-pg-schema.informationschematable.user_defined_type_schema.html │ ├── extract-pg-schema.informationschemaview.check_option.html │ ├── extract-pg-schema.informationschemaview.html │ ├── extract-pg-schema.informationschemaview.is_insertable_into.html │ ├── extract-pg-schema.informationschemaview.is_trigger_deletable.html │ ├── extract-pg-schema.informationschemaview.is_trigger_insertable_into.html │ ├── extract-pg-schema.informationschemaview.is_trigger_updatable.html │ ├── extract-pg-schema.informationschemaview.is_updatable.html │ ├── extract-pg-schema.informationschemaview.table_catalog.html │ ├── extract-pg-schema.informationschemaview.table_name.html │ ├── extract-pg-schema.informationschemaview.table_schema.html │ ├── extract-pg-schema.informationschemaview.view_definition.html │ ├── extract-pg-schema.kind.html │ ├── extract-pg-schema.materializedviewcolumn.comment.html │ ├── extract-pg-schema.materializedviewcolumn.defaultvalue.html │ ├── extract-pg-schema.materializedviewcolumn.expandedtype.html │ ├── extract-pg-schema.materializedviewcolumn.fakeinformationschemavalue.html │ ├── extract-pg-schema.materializedviewcolumn.generated.html │ ├── extract-pg-schema.materializedviewcolumn.html │ ├── extract-pg-schema.materializedviewcolumn.indices.html │ ├── extract-pg-schema.materializedviewcolumn.isarray.html │ ├── extract-pg-schema.materializedviewcolumn.isidentity.html │ ├── extract-pg-schema.materializedviewcolumn.isnullable.html │ ├── extract-pg-schema.materializedviewcolumn.isprimarykey.html │ ├── extract-pg-schema.materializedviewcolumn.isupdatable.html │ ├── extract-pg-schema.materializedviewcolumn.maxlength.html │ ├── extract-pg-schema.materializedviewcolumn.name.html │ ├── extract-pg-schema.materializedviewcolumn.ordinalposition.html │ ├── extract-pg-schema.materializedviewcolumn.reference.html │ ├── extract-pg-schema.materializedviewcolumn.references.html │ ├── extract-pg-schema.materializedviewcolumn.source.html │ ├── extract-pg-schema.materializedviewcolumn.type.html │ ├── extract-pg-schema.materializedviewcolumntype.html │ ├── extract-pg-schema.materializedviewdetails.columns.html │ ├── extract-pg-schema.materializedviewdetails.definition.html │ ├── extract-pg-schema.materializedviewdetails.fakeinformationschemavalue.html │ ├── extract-pg-schema.materializedviewdetails.html │ ├── extract-pg-schema.pgtype.html │ ├── extract-pg-schema.proceduredetails.html │ ├── extract-pg-schema.procedureparameter.html │ ├── extract-pg-schema.rangedetails.html │ ├── extract-pg-schema.rangedetails.innertype.html │ ├── extract-pg-schema.schema.html │ ├── extract-pg-schema.tablecheck.clause.html │ ├── extract-pg-schema.tablecheck.html │ ├── extract-pg-schema.tablecheck.name.html │ ├── extract-pg-schema.tablecolumn.comment.html │ ├── extract-pg-schema.tablecolumn.defaultvalue.html │ ├── extract-pg-schema.tablecolumn.dimensions.html │ ├── extract-pg-schema.tablecolumn.expandedtype.html │ ├── extract-pg-schema.tablecolumn.generated.html │ ├── extract-pg-schema.tablecolumn.html │ ├── extract-pg-schema.tablecolumn.indices.html │ ├── extract-pg-schema.tablecolumn.informationschemavalue.html │ ├── extract-pg-schema.tablecolumn.isarray.html │ ├── extract-pg-schema.tablecolumn.isidentity.html │ ├── extract-pg-schema.tablecolumn.isnullable.html │ ├── extract-pg-schema.tablecolumn.isprimarykey.html │ ├── extract-pg-schema.tablecolumn.isupdatable.html │ ├── extract-pg-schema.tablecolumn.maxlength.html │ ├── extract-pg-schema.tablecolumn.name.html │ ├── extract-pg-schema.tablecolumn.ordinalposition.html │ ├── extract-pg-schema.tablecolumn.parenttable.html │ ├── extract-pg-schema.tablecolumn.reference.html │ ├── extract-pg-schema.tablecolumn.references.html │ ├── extract-pg-schema.tablecolumn.type.html │ ├── extract-pg-schema.tablecolumntype.html │ ├── extract-pg-schema.tabledetails.checks.html │ ├── extract-pg-schema.tabledetails.columns.html │ ├── extract-pg-schema.tabledetails.html │ ├── extract-pg-schema.tabledetails.indices.html │ ├── extract-pg-schema.tabledetails.informationschemavalue.html │ ├── extract-pg-schema.tabledetails.isrowlevelsecurityenabled.html │ ├── extract-pg-schema.tabledetails.isrowlevelsecurityenforced.html │ ├── extract-pg-schema.tabledetails.securitypolicies.html │ ├── extract-pg-schema.tabledetails.triggers.html │ ├── extract-pg-schema.tableindex.columns.html │ ├── extract-pg-schema.tableindex.html │ ├── extract-pg-schema.tableindex.isprimary.html │ ├── extract-pg-schema.tableindex.isunique.html │ ├── extract-pg-schema.tableindex.name.html │ ├── extract-pg-schema.tableindexcolumn.definition.html │ ├── extract-pg-schema.tableindexcolumn.html │ ├── extract-pg-schema.tableindexcolumn.name.html │ ├── extract-pg-schema.tableindexcolumn.predicate.html │ ├── extract-pg-schema.tablesecuritypolicy.commandtype.html │ ├── extract-pg-schema.tablesecuritypolicy.html │ ├── extract-pg-schema.tablesecuritypolicy.ispermissive.html │ ├── extract-pg-schema.tablesecuritypolicy.modifiabilityexpression.html │ ├── extract-pg-schema.tablesecuritypolicy.name.html │ ├── extract-pg-schema.tablesecuritypolicy.rolesappliedto.html │ ├── extract-pg-schema.tablesecuritypolicy.visibilityexpression.html │ ├── extract-pg-schema.trigger.actiontiming.html │ ├── extract-pg-schema.trigger.comment.html │ ├── extract-pg-schema.trigger.condition.html │ ├── extract-pg-schema.trigger.enabled.html │ ├── extract-pg-schema.trigger.eventmanipulation.html │ ├── extract-pg-schema.trigger.functionargs.html │ ├── extract-pg-schema.trigger.functionname.html │ ├── extract-pg-schema.trigger.functionschema.html │ ├── extract-pg-schema.trigger.html │ ├── extract-pg-schema.trigger.informationschemavalue.html │ ├── extract-pg-schema.trigger.name.html │ ├── extract-pg-schema.trigger.orientation.html │ ├── extract-pg-schema.updateaction.html │ ├── extract-pg-schema.updateactionmap.html │ ├── extract-pg-schema.viewcolumn.comment.html │ ├── extract-pg-schema.viewcolumn.defaultvalue.html │ ├── extract-pg-schema.viewcolumn.expandedtype.html │ ├── extract-pg-schema.viewcolumn.generated.html │ ├── extract-pg-schema.viewcolumn.html │ ├── extract-pg-schema.viewcolumn.indices.html │ ├── extract-pg-schema.viewcolumn.informationschemavalue.html │ ├── extract-pg-schema.viewcolumn.isarray.html │ ├── extract-pg-schema.viewcolumn.isidentity.html │ ├── extract-pg-schema.viewcolumn.isnullable.html │ ├── extract-pg-schema.viewcolumn.isprimarykey.html │ ├── extract-pg-schema.viewcolumn.isupdatable.html │ ├── extract-pg-schema.viewcolumn.maxlength.html │ ├── extract-pg-schema.viewcolumn.name.html │ ├── extract-pg-schema.viewcolumn.ordinalposition.html │ ├── extract-pg-schema.viewcolumn.reference.html │ ├── extract-pg-schema.viewcolumn.references.html │ ├── extract-pg-schema.viewcolumn.source.html │ ├── extract-pg-schema.viewcolumn.type.html │ ├── extract-pg-schema.viewcolumntype.html │ ├── extract-pg-schema.viewdetails.columns.html │ ├── extract-pg-schema.viewdetails.definition.html │ ├── extract-pg-schema.viewdetails.html │ ├── extract-pg-schema.viewdetails.informationschemavalue.html │ ├── extract-pg-schema.viewdetails.options.html │ ├── extract-pg-schema.viewdetails.triggers.html │ ├── extract-pg-schema.yesno.html │ └── index.html ├── assets │ ├── api_extract-pg-schema.attributetype.md.DoWDLkRw.js │ ├── api_extract-pg-schema.attributetype.md.DoWDLkRw.lean.js │ ├── api_extract-pg-schema.columnreference.md.CxG__Hbu.js │ ├── api_extract-pg-schema.columnreference.md.CxG__Hbu.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.comment.md.ISeEDoj5.js │ ├── api_extract-pg-schema.compositetypeattribute.comment.md.ISeEDoj5.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.defaultvalue.md.CFgPitLH.js │ ├── api_extract-pg-schema.compositetypeattribute.defaultvalue.md.CFgPitLH.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.expandedtype.md.B6w2EFIL.js │ ├── api_extract-pg-schema.compositetypeattribute.expandedtype.md.B6w2EFIL.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.fakeinformationschemavalue.md.BqohKnqb.js │ ├── api_extract-pg-schema.compositetypeattribute.fakeinformationschemavalue.md.BqohKnqb.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.generated.md.Cbh4Q_Sr.js │ ├── api_extract-pg-schema.compositetypeattribute.generated.md.Cbh4Q_Sr.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.isarray.md.VBPdnJtF.js │ ├── api_extract-pg-schema.compositetypeattribute.isarray.md.VBPdnJtF.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.isidentity.md.C5sLCYAD.js │ ├── api_extract-pg-schema.compositetypeattribute.isidentity.md.C5sLCYAD.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.isnullable.md.DG9ol6lO.js │ ├── api_extract-pg-schema.compositetypeattribute.isnullable.md.DG9ol6lO.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.isupdatable.md.DU02jaGK.js │ ├── api_extract-pg-schema.compositetypeattribute.isupdatable.md.DU02jaGK.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.maxlength.md.C-r25NzO.js │ ├── api_extract-pg-schema.compositetypeattribute.maxlength.md.C-r25NzO.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.md.fwrzGB8e.js │ ├── api_extract-pg-schema.compositetypeattribute.md.fwrzGB8e.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.name.md.CEdEuPa-.js │ ├── api_extract-pg-schema.compositetypeattribute.name.md.CEdEuPa-.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.ordinalposition.md.S7gYV3Bm.js │ ├── api_extract-pg-schema.compositetypeattribute.ordinalposition.md.S7gYV3Bm.lean.js │ ├── api_extract-pg-schema.compositetypeattribute.type.md.Dhjl82Oe.js │ ├── api_extract-pg-schema.compositetypeattribute.type.md.Dhjl82Oe.lean.js │ ├── api_extract-pg-schema.compositetypedetails.attributes.md.BppfuhKh.js │ ├── api_extract-pg-schema.compositetypedetails.attributes.md.BppfuhKh.lean.js │ ├── api_extract-pg-schema.compositetypedetails.md.nztJryFq.js │ ├── api_extract-pg-schema.compositetypedetails.md.nztJryFq.lean.js │ ├── api_extract-pg-schema.domaindetails.informationschemavalue.md.BoIK9irB.js │ ├── api_extract-pg-schema.domaindetails.informationschemavalue.md.BoIK9irB.lean.js │ ├── api_extract-pg-schema.domaindetails.innertype.md.Fv_9CQqR.js │ ├── api_extract-pg-schema.domaindetails.innertype.md.Fv_9CQqR.lean.js │ ├── api_extract-pg-schema.domaindetails.md.C8EJ5NNL.js │ ├── api_extract-pg-schema.domaindetails.md.C8EJ5NNL.lean.js │ ├── api_extract-pg-schema.enumdetails.md.BRQve08P.js │ ├── api_extract-pg-schema.enumdetails.md.BRQve08P.lean.js │ ├── api_extract-pg-schema.enumdetails.values.md.99AOxz11.js │ ├── api_extract-pg-schema.enumdetails.values.md.99AOxz11.lean.js │ ├── api_extract-pg-schema.extractschema.md.nFnX5TaS.js │ ├── api_extract-pg-schema.extractschema.md.nFnX5TaS.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.md.BcYoW5vB.js │ ├── api_extract-pg-schema.extractschemaoptions.md.BcYoW5vB.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.onprogress.md.BSLvvXJA.js │ ├── api_extract-pg-schema.extractschemaoptions.onprogress.md.BSLvvXJA.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.onprogressend.md.WIBlgho4.js │ ├── api_extract-pg-schema.extractschemaoptions.onprogressend.md.WIBlgho4.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.onprogressstart.md.BOrYu3P7.js │ ├── api_extract-pg-schema.extractschemaoptions.onprogressstart.md.BOrYu3P7.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.resolveviews.md.DxanF9Ai.js │ ├── api_extract-pg-schema.extractschemaoptions.resolveviews.md.DxanF9Ai.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.schemas.md.ZtAK4vus.js │ ├── api_extract-pg-schema.extractschemaoptions.schemas.md.ZtAK4vus.lean.js │ ├── api_extract-pg-schema.extractschemaoptions.typefilter.md.DYSW8zjM.js │ ├── api_extract-pg-schema.extractschemaoptions.typefilter.md.DYSW8zjM.lean.js │ ├── api_extract-pg-schema.extractschemas.md.Di_zJqdQ.js │ ├── api_extract-pg-schema.extractschemas.md.Di_zJqdQ.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.comment.md.uDuCDLuQ.js │ ├── api_extract-pg-schema.foreigntablecolumn.comment.md.uDuCDLuQ.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.defaultvalue.md.GjgEtpim.js │ ├── api_extract-pg-schema.foreigntablecolumn.defaultvalue.md.GjgEtpim.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.expandedtype.md.5amv5-Jl.js │ ├── api_extract-pg-schema.foreigntablecolumn.expandedtype.md.5amv5-Jl.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.generated.md.D1Kv4xLV.js │ ├── api_extract-pg-schema.foreigntablecolumn.generated.md.D1Kv4xLV.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.informationschemavalue.md.Df6VzrRO.js │ ├── api_extract-pg-schema.foreigntablecolumn.informationschemavalue.md.Df6VzrRO.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.isarray.md.h_DkLCCt.js │ ├── api_extract-pg-schema.foreigntablecolumn.isarray.md.h_DkLCCt.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.isidentity.md.DV5W3q0Q.js │ ├── api_extract-pg-schema.foreigntablecolumn.isidentity.md.DV5W3q0Q.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.isnullable.md.CuqzuCWp.js │ ├── api_extract-pg-schema.foreigntablecolumn.isnullable.md.CuqzuCWp.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.isprimarykey.md.Cn6K-P9c.js │ ├── api_extract-pg-schema.foreigntablecolumn.isprimarykey.md.Cn6K-P9c.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.isupdatable.md.C3Kkx20Q.js │ ├── api_extract-pg-schema.foreigntablecolumn.isupdatable.md.C3Kkx20Q.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.maxlength.md.D9_xNFNR.js │ ├── api_extract-pg-schema.foreigntablecolumn.maxlength.md.D9_xNFNR.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.md.mQp4N_Fn.js │ ├── api_extract-pg-schema.foreigntablecolumn.md.mQp4N_Fn.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.name.md.TkRyQ1Pr.js │ ├── api_extract-pg-schema.foreigntablecolumn.name.md.TkRyQ1Pr.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.ordinalposition.md.ClLoyPgJ.js │ ├── api_extract-pg-schema.foreigntablecolumn.ordinalposition.md.ClLoyPgJ.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.source.md.DOhqzsT6.js │ ├── api_extract-pg-schema.foreigntablecolumn.source.md.DOhqzsT6.lean.js │ ├── api_extract-pg-schema.foreigntablecolumn.type.md.z2NlbDba.js │ ├── api_extract-pg-schema.foreigntablecolumn.type.md.z2NlbDba.lean.js │ ├── api_extract-pg-schema.foreigntablecolumntype.md.Cc6Gqfuu.js │ ├── api_extract-pg-schema.foreigntablecolumntype.md.Cc6Gqfuu.lean.js │ ├── api_extract-pg-schema.foreigntabledetails.columns.md.CcOhqbFR.js │ ├── api_extract-pg-schema.foreigntabledetails.columns.md.CcOhqbFR.lean.js │ ├── api_extract-pg-schema.foreigntabledetails.informationschemavalue.md.xM6nTRhh.js │ ├── api_extract-pg-schema.foreigntabledetails.informationschemavalue.md.xM6nTRhh.lean.js │ ├── api_extract-pg-schema.foreigntabledetails.md.BKrtXZlq.js │ ├── api_extract-pg-schema.foreigntabledetails.md.BKrtXZlq.lean.js │ ├── api_extract-pg-schema.functiondetails.comment.md.xyevJwse.js │ ├── api_extract-pg-schema.functiondetails.comment.md.xyevJwse.lean.js │ ├── api_extract-pg-schema.functiondetails.definition.md.BX6EBdy2.js │ ├── api_extract-pg-schema.functiondetails.definition.md.BX6EBdy2.lean.js │ ├── api_extract-pg-schema.functiondetails.estimatedcost.md.DugK69j2.js │ ├── api_extract-pg-schema.functiondetails.estimatedcost.md.DugK69j2.lean.js │ ├── api_extract-pg-schema.functiondetails.estimatedrows.md.D0iAHViQ.js │ ├── api_extract-pg-schema.functiondetails.estimatedrows.md.D0iAHViQ.lean.js │ ├── api_extract-pg-schema.functiondetails.informationschemavalue.md.BIpYTJPH.js │ ├── api_extract-pg-schema.functiondetails.informationschemavalue.md.BIpYTJPH.lean.js │ ├── api_extract-pg-schema.functiondetails.isleakproof.md.BTcUrAA3.js │ ├── api_extract-pg-schema.functiondetails.isleakproof.md.BTcUrAA3.lean.js │ ├── api_extract-pg-schema.functiondetails.issecuritydefiner.md.DUtULDI-.js │ ├── api_extract-pg-schema.functiondetails.issecuritydefiner.md.DUtULDI-.lean.js │ ├── api_extract-pg-schema.functiondetails.isstrict.md.CjhWaTiv.js │ ├── api_extract-pg-schema.functiondetails.isstrict.md.CjhWaTiv.lean.js │ ├── api_extract-pg-schema.functiondetails.language.md.DsiCxesO.js │ ├── api_extract-pg-schema.functiondetails.language.md.DsiCxesO.lean.js │ ├── api_extract-pg-schema.functiondetails.md.CdnFp-ut.js │ ├── api_extract-pg-schema.functiondetails.md.CdnFp-ut.lean.js │ ├── api_extract-pg-schema.functiondetails.parallelsafety.md.Dj_0FKbD.js │ ├── api_extract-pg-schema.functiondetails.parallelsafety.md.Dj_0FKbD.lean.js │ ├── api_extract-pg-schema.functiondetails.parameters.md.1mzBRW82.js │ ├── api_extract-pg-schema.functiondetails.parameters.md.1mzBRW82.lean.js │ ├── api_extract-pg-schema.functiondetails.returnsset.md.CMso7HD2.js │ ├── api_extract-pg-schema.functiondetails.returnsset.md.CMso7HD2.lean.js │ ├── api_extract-pg-schema.functiondetails.returntype.md.BdA482WZ.js │ ├── api_extract-pg-schema.functiondetails.returntype.md.BdA482WZ.lean.js │ ├── api_extract-pg-schema.functiondetails.volatility.md.DC69bPe6.js │ ├── api_extract-pg-schema.functiondetails.volatility.md.DC69bPe6.lean.js │ ├── api_extract-pg-schema.functionparameter.md.DwN9idBy.js │ ├── api_extract-pg-schema.functionparameter.md.DwN9idBy.lean.js │ ├── api_extract-pg-schema.index.md.9KlC5OOe.js │ ├── api_extract-pg-schema.index.md.9KlC5OOe.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.character_maximum_length.md.C2-P9otB.js │ ├── api_extract-pg-schema.informationschemacolumn.character_maximum_length.md.C2-P9otB.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.character_octet_length.md.Csrchs95.js │ ├── api_extract-pg-schema.informationschemacolumn.character_octet_length.md.Csrchs95.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.character_set_catalog.md.CH6T3coi.js │ ├── api_extract-pg-schema.informationschemacolumn.character_set_catalog.md.CH6T3coi.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.character_set_name.md.BywH7W4_.js │ ├── api_extract-pg-schema.informationschemacolumn.character_set_name.md.BywH7W4_.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.character_set_schema.md.6pjtY2PI.js │ ├── api_extract-pg-schema.informationschemacolumn.character_set_schema.md.6pjtY2PI.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.collation_catalog.md.B5BxI41i.js │ ├── api_extract-pg-schema.informationschemacolumn.collation_catalog.md.B5BxI41i.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.collation_name.md.DUAjyjBf.js │ ├── api_extract-pg-schema.informationschemacolumn.collation_name.md.DUAjyjBf.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.collation_schema.md.CtSeElmJ.js │ ├── api_extract-pg-schema.informationschemacolumn.collation_schema.md.CtSeElmJ.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.column_default.md.CQz3WFNH.js │ ├── api_extract-pg-schema.informationschemacolumn.column_default.md.CQz3WFNH.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.column_name.md.KyR_Q1Xt.js │ ├── api_extract-pg-schema.informationschemacolumn.column_name.md.KyR_Q1Xt.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.data_type.md.NCy__umG.js │ ├── api_extract-pg-schema.informationschemacolumn.data_type.md.NCy__umG.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.datetime_precision.md.ClPqtxoy.js │ ├── api_extract-pg-schema.informationschemacolumn.datetime_precision.md.ClPqtxoy.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.domain_catalog.md.4s2AyH9t.js │ ├── api_extract-pg-schema.informationschemacolumn.domain_catalog.md.4s2AyH9t.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.domain_name.md.Df8CWmrr.js │ ├── api_extract-pg-schema.informationschemacolumn.domain_name.md.Df8CWmrr.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.domain_schema.md.TyP6G8dZ.js │ ├── api_extract-pg-schema.informationschemacolumn.domain_schema.md.TyP6G8dZ.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.dtd_identifier.md.CsuMHVM6.js │ ├── api_extract-pg-schema.informationschemacolumn.dtd_identifier.md.CsuMHVM6.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.generation_expression.md.iUzgeojE.js │ ├── api_extract-pg-schema.informationschemacolumn.generation_expression.md.iUzgeojE.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_cycle.md.vm1cDtHN.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_cycle.md.vm1cDtHN.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_generation.md.CgAtEdOC.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_generation.md.CgAtEdOC.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_increment.md.BsQEfqep.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_increment.md.BsQEfqep.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_maximum.md.CVuHTuq1.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_maximum.md.CVuHTuq1.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_minimum.md.DdiZVz0q.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_minimum.md.DdiZVz0q.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_start.md.C2DAXu1R.js │ ├── api_extract-pg-schema.informationschemacolumn.identity_start.md.C2DAXu1R.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.interval_precision.md.IXpAsJpm.js │ ├── api_extract-pg-schema.informationschemacolumn.interval_precision.md.IXpAsJpm.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.interval_type.md.BRzzFuBa.js │ ├── api_extract-pg-schema.informationschemacolumn.interval_type.md.BRzzFuBa.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.is_generated.md.C-Nl_s0b.js │ ├── api_extract-pg-schema.informationschemacolumn.is_generated.md.C-Nl_s0b.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.is_identity.md.CyMMHyjz.js │ ├── api_extract-pg-schema.informationschemacolumn.is_identity.md.CyMMHyjz.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.is_nullable.md.TSRFdCH6.js │ ├── api_extract-pg-schema.informationschemacolumn.is_nullable.md.TSRFdCH6.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.is_self_referencing.md.CfasziXr.js │ ├── api_extract-pg-schema.informationschemacolumn.is_self_referencing.md.CfasziXr.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.is_updatable.md.Bsx4zlYV.js │ ├── api_extract-pg-schema.informationschemacolumn.is_updatable.md.Bsx4zlYV.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.maximum_cardinality.md.BkQ_NN13.js │ ├── api_extract-pg-schema.informationschemacolumn.maximum_cardinality.md.BkQ_NN13.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.md.CQfIlioB.js │ ├── api_extract-pg-schema.informationschemacolumn.md.CQfIlioB.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.numeric_precision.md.BrcGE5Q_.js │ ├── api_extract-pg-schema.informationschemacolumn.numeric_precision.md.BrcGE5Q_.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.numeric_precision_radix.md.DEeczLib.js │ ├── api_extract-pg-schema.informationschemacolumn.numeric_precision_radix.md.DEeczLib.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.numeric_scale.md.ChhbWvLW.js │ ├── api_extract-pg-schema.informationschemacolumn.numeric_scale.md.ChhbWvLW.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.ordinal_position.md.CCUZLBUl.js │ ├── api_extract-pg-schema.informationschemacolumn.ordinal_position.md.CCUZLBUl.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.scope_catalog.md.Bilf7GUQ.js │ ├── api_extract-pg-schema.informationschemacolumn.scope_catalog.md.Bilf7GUQ.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.scope_name.md.T3Ookmng.js │ ├── api_extract-pg-schema.informationschemacolumn.scope_name.md.T3Ookmng.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.scope_schema.md.DbExgbbh.js │ ├── api_extract-pg-schema.informationschemacolumn.scope_schema.md.DbExgbbh.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.table_catalog.md.DFwXM8Z6.js │ ├── api_extract-pg-schema.informationschemacolumn.table_catalog.md.DFwXM8Z6.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.table_name.md.Dm8JFcYL.js │ ├── api_extract-pg-schema.informationschemacolumn.table_name.md.Dm8JFcYL.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.table_schema.md.CIVwXrEK.js │ ├── api_extract-pg-schema.informationschemacolumn.table_schema.md.CIVwXrEK.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.udt_catalog.md.CKiJd2xh.js │ ├── api_extract-pg-schema.informationschemacolumn.udt_catalog.md.CKiJd2xh.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.udt_name.md.C6NJiA-C.js │ ├── api_extract-pg-schema.informationschemacolumn.udt_name.md.C6NJiA-C.lean.js │ ├── api_extract-pg-schema.informationschemacolumn.udt_schema.md.BvDgmPWa.js │ ├── api_extract-pg-schema.informationschemacolumn.udt_schema.md.BvDgmPWa.lean.js │ ├── api_extract-pg-schema.informationschemadomain.character_maximum_length.md.O2Kx3UAR.js │ ├── api_extract-pg-schema.informationschemadomain.character_maximum_length.md.O2Kx3UAR.lean.js │ ├── api_extract-pg-schema.informationschemadomain.character_octet_length.md.CPYv4ld9.js │ ├── api_extract-pg-schema.informationschemadomain.character_octet_length.md.CPYv4ld9.lean.js │ ├── api_extract-pg-schema.informationschemadomain.character_set_catalog.md.B7xHQUWr.js │ ├── api_extract-pg-schema.informationschemadomain.character_set_catalog.md.B7xHQUWr.lean.js │ ├── api_extract-pg-schema.informationschemadomain.character_set_name.md.Q_hj5CVD.js │ ├── api_extract-pg-schema.informationschemadomain.character_set_name.md.Q_hj5CVD.lean.js │ ├── api_extract-pg-schema.informationschemadomain.character_set_schema.md.B4zo7XzT.js │ ├── api_extract-pg-schema.informationschemadomain.character_set_schema.md.B4zo7XzT.lean.js │ ├── api_extract-pg-schema.informationschemadomain.collation_catalog.md.CxV3GUQi.js │ ├── api_extract-pg-schema.informationschemadomain.collation_catalog.md.CxV3GUQi.lean.js │ ├── api_extract-pg-schema.informationschemadomain.collation_name.md.CppMxLeF.js │ ├── api_extract-pg-schema.informationschemadomain.collation_name.md.CppMxLeF.lean.js │ ├── api_extract-pg-schema.informationschemadomain.collation_schema.md.BboBdSE-.js │ ├── api_extract-pg-schema.informationschemadomain.collation_schema.md.BboBdSE-.lean.js │ ├── api_extract-pg-schema.informationschemadomain.data_type.md.D29E2---.js │ ├── api_extract-pg-schema.informationschemadomain.data_type.md.D29E2---.lean.js │ ├── api_extract-pg-schema.informationschemadomain.datetime_precision.md.Cl7_YdY4.js │ ├── api_extract-pg-schema.informationschemadomain.datetime_precision.md.Cl7_YdY4.lean.js │ ├── api_extract-pg-schema.informationschemadomain.domain_catalog.md.CcAZ-Eqg.js │ ├── api_extract-pg-schema.informationschemadomain.domain_catalog.md.CcAZ-Eqg.lean.js │ ├── api_extract-pg-schema.informationschemadomain.domain_default.md.CodZrwYI.js │ ├── api_extract-pg-schema.informationschemadomain.domain_default.md.CodZrwYI.lean.js │ ├── api_extract-pg-schema.informationschemadomain.domain_name.md.DtLCUHBd.js │ ├── api_extract-pg-schema.informationschemadomain.domain_name.md.DtLCUHBd.lean.js │ ├── api_extract-pg-schema.informationschemadomain.domain_schema.md.CvoDW0J3.js │ ├── api_extract-pg-schema.informationschemadomain.domain_schema.md.CvoDW0J3.lean.js │ ├── api_extract-pg-schema.informationschemadomain.dtd_identifier.md.kQsMGOYF.js │ ├── api_extract-pg-schema.informationschemadomain.dtd_identifier.md.kQsMGOYF.lean.js │ ├── api_extract-pg-schema.informationschemadomain.interval_precision.md.BmpmC8cC.js │ ├── api_extract-pg-schema.informationschemadomain.interval_precision.md.BmpmC8cC.lean.js │ ├── api_extract-pg-schema.informationschemadomain.interval_type.md.CTivacsX.js │ ├── api_extract-pg-schema.informationschemadomain.interval_type.md.CTivacsX.lean.js │ ├── api_extract-pg-schema.informationschemadomain.maximum_cardinality.md.Dy5fj4e1.js │ ├── api_extract-pg-schema.informationschemadomain.maximum_cardinality.md.Dy5fj4e1.lean.js │ ├── api_extract-pg-schema.informationschemadomain.md.AYIS_NLA.js │ ├── api_extract-pg-schema.informationschemadomain.md.AYIS_NLA.lean.js │ ├── api_extract-pg-schema.informationschemadomain.numeric_precision.md.Djt8Xbnb.js │ ├── api_extract-pg-schema.informationschemadomain.numeric_precision.md.Djt8Xbnb.lean.js │ ├── api_extract-pg-schema.informationschemadomain.numeric_precision_radix.md.B6dXUkcs.js │ ├── api_extract-pg-schema.informationschemadomain.numeric_precision_radix.md.B6dXUkcs.lean.js │ ├── api_extract-pg-schema.informationschemadomain.numeric_scale.md.D31omna3.js │ ├── api_extract-pg-schema.informationschemadomain.numeric_scale.md.D31omna3.lean.js │ ├── api_extract-pg-schema.informationschemadomain.scope_catalog.md.BOpNCn11.js │ ├── api_extract-pg-schema.informationschemadomain.scope_catalog.md.BOpNCn11.lean.js │ ├── api_extract-pg-schema.informationschemadomain.scope_name.md.C8s-3MJE.js │ ├── api_extract-pg-schema.informationschemadomain.scope_name.md.C8s-3MJE.lean.js │ ├── api_extract-pg-schema.informationschemadomain.scope_schema.md.B8Kdu1Yq.js │ ├── api_extract-pg-schema.informationschemadomain.scope_schema.md.B8Kdu1Yq.lean.js │ ├── api_extract-pg-schema.informationschemadomain.udt_catalog.md.C8fuvrWB.js │ ├── api_extract-pg-schema.informationschemadomain.udt_catalog.md.C8fuvrWB.lean.js │ ├── api_extract-pg-schema.informationschemadomain.udt_name.md.Diw5kQvL.js │ ├── api_extract-pg-schema.informationschemadomain.udt_name.md.Diw5kQvL.lean.js │ ├── api_extract-pg-schema.informationschemadomain.udt_schema.md.BZuQZBkN.js │ ├── api_extract-pg-schema.informationschemadomain.udt_schema.md.BZuQZBkN.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.as_locator.md.tltOjr1c.js │ ├── api_extract-pg-schema.informationschemaroutine.as_locator.md.tltOjr1c.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.character_maximum_length.md.BO4UWeF7.js │ ├── api_extract-pg-schema.informationschemaroutine.character_maximum_length.md.BO4UWeF7.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.character_octet_length.md.BoFjvwO_.js │ ├── api_extract-pg-schema.informationschemaroutine.character_octet_length.md.BoFjvwO_.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.character_set_catalog.md.C2K4eYhK.js │ ├── api_extract-pg-schema.informationschemaroutine.character_set_catalog.md.C2K4eYhK.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.character_set_name.md.rGWYqSHR.js │ ├── api_extract-pg-schema.informationschemaroutine.character_set_name.md.rGWYqSHR.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.character_set_schema.md.DhBHMMt9.js │ ├── api_extract-pg-schema.informationschemaroutine.character_set_schema.md.DhBHMMt9.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.collation_catalog.md.CgLvFNyY.js │ ├── api_extract-pg-schema.informationschemaroutine.collation_catalog.md.CgLvFNyY.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.collation_name.md.DmDn3qTZ.js │ ├── api_extract-pg-schema.informationschemaroutine.collation_name.md.DmDn3qTZ.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.collation_schema.md.CY7dUgkN.js │ ├── api_extract-pg-schema.informationschemaroutine.collation_schema.md.CY7dUgkN.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.created.md.BPmN8tL_.js │ ├── api_extract-pg-schema.informationschemaroutine.created.md.BPmN8tL_.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.data_type.md.Cf3vJYxY.js │ ├── api_extract-pg-schema.informationschemaroutine.data_type.md.Cf3vJYxY.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.datetime_precision.md.DvMqyTUp.js │ ├── api_extract-pg-schema.informationschemaroutine.datetime_precision.md.DvMqyTUp.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.dtd_identifier.md.BULf5dww.js │ ├── api_extract-pg-schema.informationschemaroutine.dtd_identifier.md.BULf5dww.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.external_language.md.C5RD666B.js │ ├── api_extract-pg-schema.informationschemaroutine.external_language.md.C5RD666B.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.external_name.md.9KWrbynC.js │ ├── api_extract-pg-schema.informationschemaroutine.external_name.md.9KWrbynC.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.interval_precision.md.Cu7uP-j0.js │ ├── api_extract-pg-schema.informationschemaroutine.interval_precision.md.Cu7uP-j0.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.interval_type.md.DAZspKp6.js │ ├── api_extract-pg-schema.informationschemaroutine.interval_type.md.DAZspKp6.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.is_deterministic.md.CBBOA6sf.js │ ├── api_extract-pg-schema.informationschemaroutine.is_deterministic.md.CBBOA6sf.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.is_implicitly_invocable.md.BiviPMRR.js │ ├── api_extract-pg-schema.informationschemaroutine.is_implicitly_invocable.md.BiviPMRR.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.is_null_call.md.DzEyLzVi.js │ ├── api_extract-pg-schema.informationschemaroutine.is_null_call.md.DzEyLzVi.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.is_udt_dependent.md.Bsss3Rke.js │ ├── api_extract-pg-schema.informationschemaroutine.is_udt_dependent.md.Bsss3Rke.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.is_user_defined_cast.md.BLrV4e3E.js │ ├── api_extract-pg-schema.informationschemaroutine.is_user_defined_cast.md.BLrV4e3E.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.last_altered.md.C1wjUzdy.js │ ├── api_extract-pg-schema.informationschemaroutine.last_altered.md.C1wjUzdy.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.max_dynamic_result_sets.md.W96lbRPN.js │ ├── api_extract-pg-schema.informationschemaroutine.max_dynamic_result_sets.md.W96lbRPN.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.maximum_cardinality.md.BFKCJtnH.js │ ├── api_extract-pg-schema.informationschemaroutine.maximum_cardinality.md.BFKCJtnH.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.md.BlfOCsRG.js │ ├── api_extract-pg-schema.informationschemaroutine.md.BlfOCsRG.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.module_catalog.md.B7w9eqKe.js │ ├── api_extract-pg-schema.informationschemaroutine.module_catalog.md.B7w9eqKe.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.module_name.md.BkaXqslL.js │ ├── api_extract-pg-schema.informationschemaroutine.module_name.md.BkaXqslL.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.module_schema.md.BLPrpQQU.js │ ├── api_extract-pg-schema.informationschemaroutine.module_schema.md.BLPrpQQU.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.new_savepoint_level.md.C_xsMWNh.js │ ├── api_extract-pg-schema.informationschemaroutine.new_savepoint_level.md.C_xsMWNh.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.numeric_precision.md.BaIrvlXc.js │ ├── api_extract-pg-schema.informationschemaroutine.numeric_precision.md.BaIrvlXc.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.numeric_precision_radix.md.DgANS-hj.js │ ├── api_extract-pg-schema.informationschemaroutine.numeric_precision_radix.md.DgANS-hj.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.numeric_scale.md.B7FyIMsd.js │ ├── api_extract-pg-schema.informationschemaroutine.numeric_scale.md.B7FyIMsd.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.parameter_style.md.B-Sce_zi.js │ ├── api_extract-pg-schema.informationschemaroutine.parameter_style.md.B-Sce_zi.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_as_locator.md.BAlSqpYW.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_as_locator.md.BAlSqpYW.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_max_length.md.DpZmmP1H.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_max_length.md.DpZmmP1H.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_octet_length.md.Cwroc1EC.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_octet_length.md.Cwroc1EC.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_set_catalog.md.B32AkW8P.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_set_catalog.md.B32AkW8P.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_set_name.md.DHFPyJd7.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_set_name.md.DHFPyJd7.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_set_schema.md.BDgcAltO.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_char_set_schema.md.BDgcAltO.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_collation_catalog.md.C4zjwRrd.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_collation_catalog.md.C4zjwRrd.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_collation_name.md.DV8qvnZ4.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_collation_name.md.DV8qvnZ4.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_collation_schema.md.DCzxfBSC.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_collation_schema.md.DCzxfBSC.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_datetime_precision.md.Db_2wVfq.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_datetime_precision.md.Db_2wVfq.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_dtd_identifier.md.BAGnW-M8.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_dtd_identifier.md.BAGnW-M8.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_from_data_type.md.DwZGWw7h.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_from_data_type.md.DwZGWw7h.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_interval_precision.md.Dy7R4_6g.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_interval_precision.md.Dy7R4_6g.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_interval_type.md.-HOlXIxn.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_interval_type.md.-HOlXIxn.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_maximum_cardinality.md.CTjDlFa4.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_maximum_cardinality.md.CTjDlFa4.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_numeric_precision.md.CSDQRoVd.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_numeric_precision.md.CSDQRoVd.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_numeric_precision_radix.md.D9ap9O6F.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_numeric_precision_radix.md.D9ap9O6F.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_numeric_scale.md.BdHK7de3.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_numeric_scale.md.BdHK7de3.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_scope_catalog.md.91VAjDx_.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_scope_catalog.md.91VAjDx_.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_scope_name.md.BAgzuhYf.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_scope_name.md.BAgzuhYf.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_scope_schema.md.ZyjzjKVj.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_scope_schema.md.ZyjzjKVj.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_type_udt_catalog.md.D3sxfreZ.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_type_udt_catalog.md.D3sxfreZ.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_type_udt_name.md.CVx1486P.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_type_udt_name.md.CVx1486P.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_type_udt_schema.md.CLDwQ95J.js │ ├── api_extract-pg-schema.informationschemaroutine.result_cast_type_udt_schema.md.CLDwQ95J.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_body.md.kTzzw6QG.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_body.md.kTzzw6QG.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_catalog.md.88KNf1SH.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_catalog.md.88KNf1SH.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_definition.md.CjfjTpH2.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_definition.md.CjfjTpH2.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_name.md.BNI3Isex.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_name.md.BNI3Isex.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_schema.md.C6hg7vRS.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_schema.md.C6hg7vRS.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_type.md.CeoUKHw-.js │ ├── api_extract-pg-schema.informationschemaroutine.routine_type.md.CeoUKHw-.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.schema_level_routine.md.BJEPngTL.js │ ├── api_extract-pg-schema.informationschemaroutine.schema_level_routine.md.BJEPngTL.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.scope_catalog.md.BW2Nl-mu.js │ ├── api_extract-pg-schema.informationschemaroutine.scope_catalog.md.BW2Nl-mu.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.scope_name.md.BPMrQ4m5.js │ ├── api_extract-pg-schema.informationschemaroutine.scope_name.md.BPMrQ4m5.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.scope_schema.md.D_rm8c3H.js │ ├── api_extract-pg-schema.informationschemaroutine.scope_schema.md.D_rm8c3H.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.security_type.md.BvIDWyD-.js │ ├── api_extract-pg-schema.informationschemaroutine.security_type.md.BvIDWyD-.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.specific_catalog.md.D5ILF8qO.js │ ├── api_extract-pg-schema.informationschemaroutine.specific_catalog.md.D5ILF8qO.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.specific_name.md.kevORWYO.js │ ├── api_extract-pg-schema.informationschemaroutine.specific_name.md.kevORWYO.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.specific_schema.md.B5gFsNpL.js │ ├── api_extract-pg-schema.informationschemaroutine.specific_schema.md.B5gFsNpL.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.sql_data_access.md.CkAgQIDP.js │ ├── api_extract-pg-schema.informationschemaroutine.sql_data_access.md.CkAgQIDP.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.sql_path.md.BlDgycNw.js │ ├── api_extract-pg-schema.informationschemaroutine.sql_path.md.BlDgycNw.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.to_sql_specific_catalog.md.D2QRia5m.js │ ├── api_extract-pg-schema.informationschemaroutine.to_sql_specific_catalog.md.D2QRia5m.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.to_sql_specific_name.md.DeP8IV7m.js │ ├── api_extract-pg-schema.informationschemaroutine.to_sql_specific_name.md.DeP8IV7m.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.to_sql_specific_schema.md.DXSrLcgy.js │ ├── api_extract-pg-schema.informationschemaroutine.to_sql_specific_schema.md.DXSrLcgy.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.type_udt_catalog.md.C8rwUeTu.js │ ├── api_extract-pg-schema.informationschemaroutine.type_udt_catalog.md.C8rwUeTu.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.type_udt_name.md.IJljjdEV.js │ ├── api_extract-pg-schema.informationschemaroutine.type_udt_name.md.IJljjdEV.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.type_udt_schema.md.C2ZNJBtY.js │ ├── api_extract-pg-schema.informationschemaroutine.type_udt_schema.md.C2ZNJBtY.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.udt_catalog.md.DTxtxyNB.js │ ├── api_extract-pg-schema.informationschemaroutine.udt_catalog.md.DTxtxyNB.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.udt_name.md.vmNnMp9z.js │ ├── api_extract-pg-schema.informationschemaroutine.udt_name.md.vmNnMp9z.lean.js │ ├── api_extract-pg-schema.informationschemaroutine.udt_schema.md.C-IqYCRA.js │ ├── api_extract-pg-schema.informationschemaroutine.udt_schema.md.C-IqYCRA.lean.js │ ├── api_extract-pg-schema.informationschematable.commit_action.md.BegoSVDV.js │ ├── api_extract-pg-schema.informationschematable.commit_action.md.BegoSVDV.lean.js │ ├── api_extract-pg-schema.informationschematable.is_insertable_into.md.CKuNn5QT.js │ ├── api_extract-pg-schema.informationschematable.is_insertable_into.md.CKuNn5QT.lean.js │ ├── api_extract-pg-schema.informationschematable.is_typed.md.B5sIMiRh.js │ ├── api_extract-pg-schema.informationschematable.is_typed.md.B5sIMiRh.lean.js │ ├── api_extract-pg-schema.informationschematable.md.BwMqLP8Q.js │ ├── api_extract-pg-schema.informationschematable.md.BwMqLP8Q.lean.js │ ├── api_extract-pg-schema.informationschematable.reference_generation.md.CpDMgV7S.js │ ├── api_extract-pg-schema.informationschematable.reference_generation.md.CpDMgV7S.lean.js │ ├── api_extract-pg-schema.informationschematable.self_referencing_column_name.md.BNOz66ft.js │ ├── api_extract-pg-schema.informationschematable.self_referencing_column_name.md.BNOz66ft.lean.js │ ├── api_extract-pg-schema.informationschematable.table_catalog.md.DbeNDOZa.js │ ├── api_extract-pg-schema.informationschematable.table_catalog.md.DbeNDOZa.lean.js │ ├── api_extract-pg-schema.informationschematable.table_name.md.Z_ZvVspn.js │ ├── api_extract-pg-schema.informationschematable.table_name.md.Z_ZvVspn.lean.js │ ├── api_extract-pg-schema.informationschematable.table_schema.md.DMix6_Co.js │ ├── api_extract-pg-schema.informationschematable.table_schema.md.DMix6_Co.lean.js │ ├── api_extract-pg-schema.informationschematable.table_type.md.C68oOOMd.js │ ├── api_extract-pg-schema.informationschematable.table_type.md.C68oOOMd.lean.js │ ├── api_extract-pg-schema.informationschematable.user_defined_type_catalog.md.sa08spMn.js │ ├── api_extract-pg-schema.informationschematable.user_defined_type_catalog.md.sa08spMn.lean.js │ ├── api_extract-pg-schema.informationschematable.user_defined_type_name.md.BR8HEzHV.js │ ├── api_extract-pg-schema.informationschematable.user_defined_type_name.md.BR8HEzHV.lean.js │ ├── api_extract-pg-schema.informationschematable.user_defined_type_schema.md.CyAOXsha.js │ ├── api_extract-pg-schema.informationschematable.user_defined_type_schema.md.CyAOXsha.lean.js │ ├── api_extract-pg-schema.informationschemaview.check_option.md.CFjNpPal.js │ ├── api_extract-pg-schema.informationschemaview.check_option.md.CFjNpPal.lean.js │ ├── api_extract-pg-schema.informationschemaview.is_insertable_into.md.DHyir-xx.js │ ├── api_extract-pg-schema.informationschemaview.is_insertable_into.md.DHyir-xx.lean.js │ ├── api_extract-pg-schema.informationschemaview.is_trigger_deletable.md.BYxdV7us.js │ ├── api_extract-pg-schema.informationschemaview.is_trigger_deletable.md.BYxdV7us.lean.js │ ├── api_extract-pg-schema.informationschemaview.is_trigger_insertable_into.md.DxG0KJq4.js │ ├── api_extract-pg-schema.informationschemaview.is_trigger_insertable_into.md.DxG0KJq4.lean.js │ ├── api_extract-pg-schema.informationschemaview.is_trigger_updatable.md.CaAD6Vbt.js │ ├── api_extract-pg-schema.informationschemaview.is_trigger_updatable.md.CaAD6Vbt.lean.js │ ├── api_extract-pg-schema.informationschemaview.is_updatable.md.DxcTZmip.js │ ├── api_extract-pg-schema.informationschemaview.is_updatable.md.DxcTZmip.lean.js │ ├── api_extract-pg-schema.informationschemaview.md.Bxh5DHDR.js │ ├── api_extract-pg-schema.informationschemaview.md.Bxh5DHDR.lean.js │ ├── api_extract-pg-schema.informationschemaview.table_catalog.md.BCFcLMKe.js │ ├── api_extract-pg-schema.informationschemaview.table_catalog.md.BCFcLMKe.lean.js │ ├── api_extract-pg-schema.informationschemaview.table_name.md.CyJQ7ur1.js │ ├── api_extract-pg-schema.informationschemaview.table_name.md.CyJQ7ur1.lean.js │ ├── api_extract-pg-schema.informationschemaview.table_schema.md.LfbO1ZJ4.js │ ├── api_extract-pg-schema.informationschemaview.table_schema.md.LfbO1ZJ4.lean.js │ ├── api_extract-pg-schema.informationschemaview.view_definition.md.DqvcyfS6.js │ ├── api_extract-pg-schema.informationschemaview.view_definition.md.DqvcyfS6.lean.js │ ├── api_extract-pg-schema.kind.md.DOM7fobG.js │ ├── api_extract-pg-schema.kind.md.DOM7fobG.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.comment.md.CBvhfT5g.js │ ├── api_extract-pg-schema.materializedviewcolumn.comment.md.CBvhfT5g.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.defaultvalue.md.CbZowT61.js │ ├── api_extract-pg-schema.materializedviewcolumn.defaultvalue.md.CbZowT61.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.expandedtype.md.BO7d6m92.js │ ├── api_extract-pg-schema.materializedviewcolumn.expandedtype.md.BO7d6m92.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.fakeinformationschemavalue.md.lSDSWcVJ.js │ ├── api_extract-pg-schema.materializedviewcolumn.fakeinformationschemavalue.md.lSDSWcVJ.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.generated.md.CZ5E2Srr.js │ ├── api_extract-pg-schema.materializedviewcolumn.generated.md.CZ5E2Srr.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.indices.md.BoW6dtMg.js │ ├── api_extract-pg-schema.materializedviewcolumn.indices.md.BoW6dtMg.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.isarray.md.s1pivLJk.js │ ├── api_extract-pg-schema.materializedviewcolumn.isarray.md.s1pivLJk.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.isidentity.md.Dqs7k8W8.js │ ├── api_extract-pg-schema.materializedviewcolumn.isidentity.md.Dqs7k8W8.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.isnullable.md.aGL-rEwC.js │ ├── api_extract-pg-schema.materializedviewcolumn.isnullable.md.aGL-rEwC.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.isprimarykey.md.llPiZkN_.js │ ├── api_extract-pg-schema.materializedviewcolumn.isprimarykey.md.llPiZkN_.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.isupdatable.md.tkq9obKx.js │ ├── api_extract-pg-schema.materializedviewcolumn.isupdatable.md.tkq9obKx.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.maxlength.md.hL61RW5Y.js │ ├── api_extract-pg-schema.materializedviewcolumn.maxlength.md.hL61RW5Y.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.md.DT8HEW6w.js │ ├── api_extract-pg-schema.materializedviewcolumn.md.DT8HEW6w.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.name.md.CZH1vR_A.js │ ├── api_extract-pg-schema.materializedviewcolumn.name.md.CZH1vR_A.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.ordinalposition.md.CiXinM7-.js │ ├── api_extract-pg-schema.materializedviewcolumn.ordinalposition.md.CiXinM7-.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.reference.md.ByUn1bHl.js │ ├── api_extract-pg-schema.materializedviewcolumn.reference.md.ByUn1bHl.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.references.md.B5MarO3g.js │ ├── api_extract-pg-schema.materializedviewcolumn.references.md.B5MarO3g.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.source.md.BL0n8Hh1.js │ ├── api_extract-pg-schema.materializedviewcolumn.source.md.BL0n8Hh1.lean.js │ ├── api_extract-pg-schema.materializedviewcolumn.type.md.BQNlrdwK.js │ ├── api_extract-pg-schema.materializedviewcolumn.type.md.BQNlrdwK.lean.js │ ├── api_extract-pg-schema.materializedviewcolumntype.md.eGuTaKF_.js │ ├── api_extract-pg-schema.materializedviewcolumntype.md.eGuTaKF_.lean.js │ ├── api_extract-pg-schema.materializedviewdetails.columns.md.DHl0T82H.js │ ├── api_extract-pg-schema.materializedviewdetails.columns.md.DHl0T82H.lean.js │ ├── api_extract-pg-schema.materializedviewdetails.definition.md.vONdmhGM.js │ ├── api_extract-pg-schema.materializedviewdetails.definition.md.vONdmhGM.lean.js │ ├── api_extract-pg-schema.materializedviewdetails.fakeinformationschemavalue.md.D5ZILe5U.js │ ├── api_extract-pg-schema.materializedviewdetails.fakeinformationschemavalue.md.D5ZILe5U.lean.js │ ├── api_extract-pg-schema.materializedviewdetails.md.P_BJ8EK5.js │ ├── api_extract-pg-schema.materializedviewdetails.md.P_BJ8EK5.lean.js │ ├── api_extract-pg-schema.md.CknpqIrG.js │ ├── api_extract-pg-schema.md.CknpqIrG.lean.js │ ├── api_extract-pg-schema.pgtype.md.BxVxXqQO.js │ ├── api_extract-pg-schema.pgtype.md.BxVxXqQO.lean.js │ ├── api_extract-pg-schema.proceduredetails.md.DKnZnBmZ.js │ ├── api_extract-pg-schema.proceduredetails.md.DKnZnBmZ.lean.js │ ├── api_extract-pg-schema.procedureparameter.md.B498YFHB.js │ ├── api_extract-pg-schema.procedureparameter.md.B498YFHB.lean.js │ ├── api_extract-pg-schema.rangedetails.innertype.md.DPOh09oS.js │ ├── api_extract-pg-schema.rangedetails.innertype.md.DPOh09oS.lean.js │ ├── api_extract-pg-schema.rangedetails.md.BqTSeSrg.js │ ├── api_extract-pg-schema.rangedetails.md.BqTSeSrg.lean.js │ ├── api_extract-pg-schema.schema.md.BAdi2fU-.js │ ├── api_extract-pg-schema.schema.md.BAdi2fU-.lean.js │ ├── api_extract-pg-schema.tablecheck.clause.md.CT02sveW.js │ ├── api_extract-pg-schema.tablecheck.clause.md.CT02sveW.lean.js │ ├── api_extract-pg-schema.tablecheck.md.DzA2TQgG.js │ ├── api_extract-pg-schema.tablecheck.md.DzA2TQgG.lean.js │ ├── api_extract-pg-schema.tablecheck.name.md.DFNKmh2j.js │ ├── api_extract-pg-schema.tablecheck.name.md.DFNKmh2j.lean.js │ ├── api_extract-pg-schema.tablecolumn.comment.md.y71fx4tD.js │ ├── api_extract-pg-schema.tablecolumn.comment.md.y71fx4tD.lean.js │ ├── api_extract-pg-schema.tablecolumn.defaultvalue.md.Cg4KRdkD.js │ ├── api_extract-pg-schema.tablecolumn.defaultvalue.md.Cg4KRdkD.lean.js │ ├── api_extract-pg-schema.tablecolumn.dimensions.md.BpiqRqoZ.js │ ├── api_extract-pg-schema.tablecolumn.dimensions.md.BpiqRqoZ.lean.js │ ├── api_extract-pg-schema.tablecolumn.expandedtype.md.BB-aXVTI.js │ ├── api_extract-pg-schema.tablecolumn.expandedtype.md.BB-aXVTI.lean.js │ ├── api_extract-pg-schema.tablecolumn.generated.md.B7iYOKfk.js │ ├── api_extract-pg-schema.tablecolumn.generated.md.B7iYOKfk.lean.js │ ├── api_extract-pg-schema.tablecolumn.indices.md.CifMtCTW.js │ ├── api_extract-pg-schema.tablecolumn.indices.md.CifMtCTW.lean.js │ ├── api_extract-pg-schema.tablecolumn.informationschemavalue.md.D1Bwez2F.js │ ├── api_extract-pg-schema.tablecolumn.informationschemavalue.md.D1Bwez2F.lean.js │ ├── api_extract-pg-schema.tablecolumn.isarray.md.CAgewSF3.js │ ├── api_extract-pg-schema.tablecolumn.isarray.md.CAgewSF3.lean.js │ ├── api_extract-pg-schema.tablecolumn.isidentity.md.Dv1KJX35.js │ ├── api_extract-pg-schema.tablecolumn.isidentity.md.Dv1KJX35.lean.js │ ├── api_extract-pg-schema.tablecolumn.isnullable.md.C-yojfji.js │ ├── api_extract-pg-schema.tablecolumn.isnullable.md.C-yojfji.lean.js │ ├── api_extract-pg-schema.tablecolumn.isprimarykey.md.6fk3idf-.js │ ├── api_extract-pg-schema.tablecolumn.isprimarykey.md.6fk3idf-.lean.js │ ├── api_extract-pg-schema.tablecolumn.isupdatable.md.BT8JGUMD.js │ ├── api_extract-pg-schema.tablecolumn.isupdatable.md.BT8JGUMD.lean.js │ ├── api_extract-pg-schema.tablecolumn.maxlength.md.DUUJwPay.js │ ├── api_extract-pg-schema.tablecolumn.maxlength.md.DUUJwPay.lean.js │ ├── api_extract-pg-schema.tablecolumn.md.DKpA5BJS.js │ ├── api_extract-pg-schema.tablecolumn.md.DKpA5BJS.lean.js │ ├── api_extract-pg-schema.tablecolumn.name.md.CxKKj7i_.js │ ├── api_extract-pg-schema.tablecolumn.name.md.CxKKj7i_.lean.js │ ├── api_extract-pg-schema.tablecolumn.ordinalposition.md.CBNuR8_L.js │ ├── api_extract-pg-schema.tablecolumn.ordinalposition.md.CBNuR8_L.lean.js │ ├── api_extract-pg-schema.tablecolumn.parenttable.md.CiIFBctK.js │ ├── api_extract-pg-schema.tablecolumn.parenttable.md.CiIFBctK.lean.js │ ├── api_extract-pg-schema.tablecolumn.reference.md.CU156XOR.js │ ├── api_extract-pg-schema.tablecolumn.reference.md.CU156XOR.lean.js │ ├── api_extract-pg-schema.tablecolumn.references.md.BS2cS1IP.js │ ├── api_extract-pg-schema.tablecolumn.references.md.BS2cS1IP.lean.js │ ├── api_extract-pg-schema.tablecolumn.type.md.ke7ZZPEC.js │ ├── api_extract-pg-schema.tablecolumn.type.md.ke7ZZPEC.lean.js │ ├── api_extract-pg-schema.tablecolumntype.md.s3hde0fj.js │ ├── api_extract-pg-schema.tablecolumntype.md.s3hde0fj.lean.js │ ├── api_extract-pg-schema.tabledetails.checks.md.CV0oCeAZ.js │ ├── api_extract-pg-schema.tabledetails.checks.md.CV0oCeAZ.lean.js │ ├── api_extract-pg-schema.tabledetails.columns.md.Bf8JeEqA.js │ ├── api_extract-pg-schema.tabledetails.columns.md.Bf8JeEqA.lean.js │ ├── api_extract-pg-schema.tabledetails.indices.md.Cfu7CZR7.js │ ├── api_extract-pg-schema.tabledetails.indices.md.Cfu7CZR7.lean.js │ ├── api_extract-pg-schema.tabledetails.informationschemavalue.md.CgCqA1GD.js │ ├── api_extract-pg-schema.tabledetails.informationschemavalue.md.CgCqA1GD.lean.js │ ├── api_extract-pg-schema.tabledetails.isrowlevelsecurityenabled.md.G98ZaAHr.js │ ├── api_extract-pg-schema.tabledetails.isrowlevelsecurityenabled.md.G98ZaAHr.lean.js │ ├── api_extract-pg-schema.tabledetails.isrowlevelsecurityenforced.md.DwmxZLDj.js │ ├── api_extract-pg-schema.tabledetails.isrowlevelsecurityenforced.md.DwmxZLDj.lean.js │ ├── api_extract-pg-schema.tabledetails.md.Dv71b9Yk.js │ ├── api_extract-pg-schema.tabledetails.md.Dv71b9Yk.lean.js │ ├── api_extract-pg-schema.tabledetails.securitypolicies.md.C0dZdNlV.js │ ├── api_extract-pg-schema.tabledetails.securitypolicies.md.C0dZdNlV.lean.js │ ├── api_extract-pg-schema.tabledetails.triggers.md.Z1Zjt965.js │ ├── api_extract-pg-schema.tabledetails.triggers.md.Z1Zjt965.lean.js │ ├── api_extract-pg-schema.tableindex.columns.md.Ccz-GAXL.js │ ├── api_extract-pg-schema.tableindex.columns.md.Ccz-GAXL.lean.js │ ├── api_extract-pg-schema.tableindex.isprimary.md.Cst9fGNT.js │ ├── api_extract-pg-schema.tableindex.isprimary.md.Cst9fGNT.lean.js │ ├── api_extract-pg-schema.tableindex.isunique.md.ZGgdZrHx.js │ ├── api_extract-pg-schema.tableindex.isunique.md.ZGgdZrHx.lean.js │ ├── api_extract-pg-schema.tableindex.md.C5K-cm9F.js │ ├── api_extract-pg-schema.tableindex.md.C5K-cm9F.lean.js │ ├── api_extract-pg-schema.tableindex.name.md.B7IiY0vp.js │ ├── api_extract-pg-schema.tableindex.name.md.B7IiY0vp.lean.js │ ├── api_extract-pg-schema.tableindexcolumn.definition.md.CIJ-9pKJ.js │ ├── api_extract-pg-schema.tableindexcolumn.definition.md.CIJ-9pKJ.lean.js │ ├── api_extract-pg-schema.tableindexcolumn.md.CooU8MQ0.js │ ├── api_extract-pg-schema.tableindexcolumn.md.CooU8MQ0.lean.js │ ├── api_extract-pg-schema.tableindexcolumn.name.md.CzdazFyr.js │ ├── api_extract-pg-schema.tableindexcolumn.name.md.CzdazFyr.lean.js │ ├── api_extract-pg-schema.tableindexcolumn.predicate.md.Cke0n8Da.js │ ├── api_extract-pg-schema.tableindexcolumn.predicate.md.Cke0n8Da.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.commandtype.md.DmSo6Rv8.js │ ├── api_extract-pg-schema.tablesecuritypolicy.commandtype.md.DmSo6Rv8.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.ispermissive.md.BNcH17SV.js │ ├── api_extract-pg-schema.tablesecuritypolicy.ispermissive.md.BNcH17SV.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.md.BKrbCVes.js │ ├── api_extract-pg-schema.tablesecuritypolicy.md.BKrbCVes.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.modifiabilityexpression.md.DW1TJv_D.js │ ├── api_extract-pg-schema.tablesecuritypolicy.modifiabilityexpression.md.DW1TJv_D.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.name.md.Ds21G2Oq.js │ ├── api_extract-pg-schema.tablesecuritypolicy.name.md.Ds21G2Oq.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.rolesappliedto.md.HSM0glqb.js │ ├── api_extract-pg-schema.tablesecuritypolicy.rolesappliedto.md.HSM0glqb.lean.js │ ├── api_extract-pg-schema.tablesecuritypolicy.visibilityexpression.md.IIwYQH91.js │ ├── api_extract-pg-schema.tablesecuritypolicy.visibilityexpression.md.IIwYQH91.lean.js │ ├── api_extract-pg-schema.trigger.actiontiming.md.BtDIrSoX.js │ ├── api_extract-pg-schema.trigger.actiontiming.md.BtDIrSoX.lean.js │ ├── api_extract-pg-schema.trigger.comment.md.dBqMXBbO.js │ ├── api_extract-pg-schema.trigger.comment.md.dBqMXBbO.lean.js │ ├── api_extract-pg-schema.trigger.condition.md.BfyFsBEO.js │ ├── api_extract-pg-schema.trigger.condition.md.BfyFsBEO.lean.js │ ├── api_extract-pg-schema.trigger.enabled.md.DDANDF_g.js │ ├── api_extract-pg-schema.trigger.enabled.md.DDANDF_g.lean.js │ ├── api_extract-pg-schema.trigger.eventmanipulation.md.DnM_x6fl.js │ ├── api_extract-pg-schema.trigger.eventmanipulation.md.DnM_x6fl.lean.js │ ├── api_extract-pg-schema.trigger.functionargs.md.DCBB7vOX.js │ ├── api_extract-pg-schema.trigger.functionargs.md.DCBB7vOX.lean.js │ ├── api_extract-pg-schema.trigger.functionname.md.BCPEZ7oe.js │ ├── api_extract-pg-schema.trigger.functionname.md.BCPEZ7oe.lean.js │ ├── api_extract-pg-schema.trigger.functionschema.md.9ns3Diue.js │ ├── api_extract-pg-schema.trigger.functionschema.md.9ns3Diue.lean.js │ ├── api_extract-pg-schema.trigger.informationschemavalue.md.CHdAoO-_.js │ ├── api_extract-pg-schema.trigger.informationschemavalue.md.CHdAoO-_.lean.js │ ├── api_extract-pg-schema.trigger.md.B0H3cvZd.js │ ├── api_extract-pg-schema.trigger.md.B0H3cvZd.lean.js │ ├── api_extract-pg-schema.trigger.name.md.h5tx03Eq.js │ ├── api_extract-pg-schema.trigger.name.md.h5tx03Eq.lean.js │ ├── api_extract-pg-schema.trigger.orientation.md.BbtU_e_o.js │ ├── api_extract-pg-schema.trigger.orientation.md.BbtU_e_o.lean.js │ ├── api_extract-pg-schema.updateaction.md.Iurv0duF.js │ ├── api_extract-pg-schema.updateaction.md.Iurv0duF.lean.js │ ├── api_extract-pg-schema.updateactionmap.md.8U-q0Yar.js │ ├── api_extract-pg-schema.updateactionmap.md.8U-q0Yar.lean.js │ ├── api_extract-pg-schema.viewcolumn.comment.md.CHwpPJ0T.js │ ├── api_extract-pg-schema.viewcolumn.comment.md.CHwpPJ0T.lean.js │ ├── api_extract-pg-schema.viewcolumn.defaultvalue.md.B7R5PRX5.js │ ├── api_extract-pg-schema.viewcolumn.defaultvalue.md.B7R5PRX5.lean.js │ ├── api_extract-pg-schema.viewcolumn.expandedtype.md.BP7gzZqf.js │ ├── api_extract-pg-schema.viewcolumn.expandedtype.md.BP7gzZqf.lean.js │ ├── api_extract-pg-schema.viewcolumn.generated.md.BO_GA9mI.js │ ├── api_extract-pg-schema.viewcolumn.generated.md.BO_GA9mI.lean.js │ ├── api_extract-pg-schema.viewcolumn.indices.md.DcjkUjaz.js │ ├── api_extract-pg-schema.viewcolumn.indices.md.DcjkUjaz.lean.js │ ├── api_extract-pg-schema.viewcolumn.informationschemavalue.md.D5jQct_f.js │ ├── api_extract-pg-schema.viewcolumn.informationschemavalue.md.D5jQct_f.lean.js │ ├── api_extract-pg-schema.viewcolumn.isarray.md.DLC3OLQF.js │ ├── api_extract-pg-schema.viewcolumn.isarray.md.DLC3OLQF.lean.js │ ├── api_extract-pg-schema.viewcolumn.isidentity.md.BYprNNTl.js │ ├── api_extract-pg-schema.viewcolumn.isidentity.md.BYprNNTl.lean.js │ ├── api_extract-pg-schema.viewcolumn.isnullable.md.C7B6Lq3C.js │ ├── api_extract-pg-schema.viewcolumn.isnullable.md.C7B6Lq3C.lean.js │ ├── api_extract-pg-schema.viewcolumn.isprimarykey.md.D5DfpEgr.js │ ├── api_extract-pg-schema.viewcolumn.isprimarykey.md.D5DfpEgr.lean.js │ ├── api_extract-pg-schema.viewcolumn.isupdatable.md.y7uDvJqZ.js │ ├── api_extract-pg-schema.viewcolumn.isupdatable.md.y7uDvJqZ.lean.js │ ├── api_extract-pg-schema.viewcolumn.maxlength.md.SmlokAeh.js │ ├── api_extract-pg-schema.viewcolumn.maxlength.md.SmlokAeh.lean.js │ ├── api_extract-pg-schema.viewcolumn.md.bqSf0EA-.js │ ├── api_extract-pg-schema.viewcolumn.md.bqSf0EA-.lean.js │ ├── api_extract-pg-schema.viewcolumn.name.md.D7ZXZ7hf.js │ ├── api_extract-pg-schema.viewcolumn.name.md.D7ZXZ7hf.lean.js │ ├── api_extract-pg-schema.viewcolumn.ordinalposition.md.DTF6OVWj.js │ ├── api_extract-pg-schema.viewcolumn.ordinalposition.md.DTF6OVWj.lean.js │ ├── api_extract-pg-schema.viewcolumn.reference.md.DyvUk2dz.js │ ├── api_extract-pg-schema.viewcolumn.reference.md.DyvUk2dz.lean.js │ ├── api_extract-pg-schema.viewcolumn.references.md.Jl4OLHaS.js │ ├── api_extract-pg-schema.viewcolumn.references.md.Jl4OLHaS.lean.js │ ├── api_extract-pg-schema.viewcolumn.source.md.kUvufV8j.js │ ├── api_extract-pg-schema.viewcolumn.source.md.kUvufV8j.lean.js │ ├── api_extract-pg-schema.viewcolumn.type.md.DfXkT3vX.js │ ├── api_extract-pg-schema.viewcolumn.type.md.DfXkT3vX.lean.js │ ├── api_extract-pg-schema.viewcolumntype.md.BdnWlY7X.js │ ├── api_extract-pg-schema.viewcolumntype.md.BdnWlY7X.lean.js │ ├── api_extract-pg-schema.viewdetails.columns.md.D-aEFDKW.js │ ├── api_extract-pg-schema.viewdetails.columns.md.D-aEFDKW.lean.js │ ├── api_extract-pg-schema.viewdetails.definition.md.Dz1MtuGt.js │ ├── api_extract-pg-schema.viewdetails.definition.md.Dz1MtuGt.lean.js │ ├── api_extract-pg-schema.viewdetails.informationschemavalue.md.B3iqvYlf.js │ ├── api_extract-pg-schema.viewdetails.informationschemavalue.md.B3iqvYlf.lean.js │ ├── api_extract-pg-schema.viewdetails.md.BnRFVl-4.js │ ├── api_extract-pg-schema.viewdetails.md.BnRFVl-4.lean.js │ ├── api_extract-pg-schema.viewdetails.options.md.BMlPbPsC.js │ ├── api_extract-pg-schema.viewdetails.options.md.BMlPbPsC.lean.js │ ├── api_extract-pg-schema.viewdetails.triggers.md.CTOduGrM.js │ ├── api_extract-pg-schema.viewdetails.triggers.md.CTOduGrM.lean.js │ ├── api_extract-pg-schema.yesno.md.ChLm3MOW.js │ ├── api_extract-pg-schema.yesno.md.ChLm3MOW.lean.js │ ├── api_index.md.Co2hSQo4.js │ ├── api_index.md.Co2hSQo4.lean.js │ ├── app.D4wBGpya.js │ ├── chunks │ │ ├── framework.49ZIXp9w.js │ │ └── theme.CEj-Esbm.js │ ├── index.md.BFL34CzL.js │ ├── index.md.BFL34CzL.lean.js │ ├── inter-italic-cyrillic-ext.r48I6akx.woff2 │ ├── inter-italic-cyrillic.By2_1cv3.woff2 │ ├── inter-italic-greek-ext.1u6EdAuj.woff2 │ ├── inter-italic-greek.DJ8dCoTZ.woff2 │ ├── inter-italic-latin-ext.CN1xVJS-.woff2 │ ├── inter-italic-latin.C2AdPX0b.woff2 │ ├── inter-italic-vietnamese.BSbpV94h.woff2 │ ├── inter-roman-cyrillic-ext.BBPuwvHQ.woff2 │ ├── inter-roman-cyrillic.C5lxZ8CY.woff2 │ ├── inter-roman-greek-ext.CqjqNYQ-.woff2 │ ├── inter-roman-greek.BBVDIX6e.woff2 │ ├── inter-roman-latin-ext.4ZJIpNVo.woff2 │ ├── inter-roman-latin.Di8DUHzh.woff2 │ ├── inter-roman-vietnamese.BjW4sHH5.woff2 │ └── style.CgbedSl0.css ├── hashmap.json ├── index.html └── vp-icons.css ├── dvdrental.json ├── eslint.config.mjs ├── generate-dvdrental.js ├── package-lock.json ├── package.json ├── renovate.json ├── src ├── cli.test.ts ├── cli.ts ├── deprecatia │ ├── extract-schema.ts │ └── integration-tests │ │ ├── __snapshots__ │ │ └── index.test.js.snap │ │ └── index.test.js ├── extractSchemas.ts ├── fetchExtensionItemIds.test.ts ├── fetchExtensionItemIds.ts ├── index.ts ├── information_schema │ ├── InformationSchemaColumn.ts │ ├── InformationSchemaDomain.ts │ ├── InformationSchemaRoutine.ts │ ├── InformationSchemaTable.ts │ ├── InformationSchemaTrigger.ts │ ├── InformationSchemaView.ts │ └── YesNo.ts ├── kinds │ ├── PgType.ts │ ├── extractCompositeType.test.ts │ ├── extractCompositeType.ts │ ├── extractDomain.test.ts │ ├── extractDomain.ts │ ├── extractEnum.test.ts │ ├── extractEnum.ts │ ├── extractForeignTable.test.ts │ ├── extractForeignTable.ts │ ├── extractFunction.test.ts │ ├── extractFunction.ts │ ├── extractMaterializedView.test.ts │ ├── extractMaterializedView.ts │ ├── extractProcedure.test.ts │ ├── extractProcedure.ts │ ├── extractRange.test.ts │ ├── extractRange.ts │ ├── extractTable.test.ts │ ├── extractTable.ts │ ├── extractView.test.ts │ ├── extractView.ts │ ├── fetchTypes.test.ts │ ├── fetchTypes.ts │ ├── parsePostgresArray.ts │ ├── parseViewDefinition.test.ts │ ├── parseViewDefinition.ts │ └── query-parts │ │ ├── commentMapQueryPart.ts │ │ ├── fakeInformationSchemaColumnsQueryPart.ts │ │ ├── fakeInformationSchemaViewsQueryPart.ts │ │ ├── indexMapQueryPart.ts │ │ └── inheritsQueryPart.ts ├── pg-query-emscripten.d.ts ├── resolveViewColumns.ts └── tests │ ├── globalSetup.ts │ ├── startTestContainer.ts │ ├── usePostgresContainer.ts │ ├── useSchema.ts │ └── useTestKnex.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | charset = utf-8 7 | trim_trailing_whitespace = false 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | example 3 | -------------------------------------------------------------------------------- /bin/extract-pg-schema: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // eslint-disable-next-line unicorn/prefer-module 3 | require("../build/cli.js"); 4 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.attributetype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [AttributeType](./extract-pg-schema.attributetype.md) 4 | 5 | ## AttributeType type 6 | 7 | Attribute type in a composite type. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | export type AttributeType = { 13 | fullName: string; 14 | kind: "base" | "range" | "domain" | "composite" | "enum"; 15 | }; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [comment](./extract-pg-schema.compositetypeattribute.comment.md) 4 | 5 | ## CompositeTypeAttribute.comment property 6 | 7 | Comment on the attribute. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | comment: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.defaultvalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [defaultValue](./extract-pg-schema.compositetypeattribute.defaultvalue.md) 4 | 5 | ## CompositeTypeAttribute.defaultValue property 6 | 7 | Default value of the attribute. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | defaultValue: any; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.isarray.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [isArray](./extract-pg-schema.compositetypeattribute.isarray.md) 4 | 5 | ## CompositeTypeAttribute.isArray property 6 | 7 | Whether the attribute is an array. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isArray: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.isidentity.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [isIdentity](./extract-pg-schema.compositetypeattribute.isidentity.md) 4 | 5 | ## CompositeTypeAttribute.isIdentity property 6 | 7 | Whether the attribute is an identity attribute. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isIdentity: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.isnullable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [isNullable](./extract-pg-schema.compositetypeattribute.isnullable.md) 4 | 5 | ## CompositeTypeAttribute.isNullable property 6 | 7 | Whether the attribute is nullable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isNullable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.isupdatable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [isUpdatable](./extract-pg-schema.compositetypeattribute.isupdatable.md) 4 | 5 | ## CompositeTypeAttribute.isUpdatable property 6 | 7 | Whether the attribute is updatable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isUpdatable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.maxlength.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [maxLength](./extract-pg-schema.compositetypeattribute.maxlength.md) 4 | 5 | ## CompositeTypeAttribute.maxLength property 6 | 7 | Maximum length of the attribute. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | maxLength: number | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [name](./extract-pg-schema.compositetypeattribute.name.md) 4 | 5 | ## CompositeTypeAttribute.name property 6 | 7 | Attribute name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypeattribute.type.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeAttribute](./extract-pg-schema.compositetypeattribute.md) > [type](./extract-pg-schema.compositetypeattribute.type.md) 4 | 5 | ## CompositeTypeAttribute.type property 6 | 7 | Type information. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | type: AttributeType; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.compositetypedetails.attributes.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [CompositeTypeDetails](./extract-pg-schema.compositetypedetails.md) > [attributes](./extract-pg-schema.compositetypedetails.attributes.md) 4 | 5 | ## CompositeTypeDetails.attributes property 6 | 7 | Attributes of the composite type. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | attributes: CompositeTypeAttribute[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.domaindetails.innertype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [DomainDetails](./extract-pg-schema.domaindetails.md) > [innerType](./extract-pg-schema.domaindetails.innertype.md) 4 | 5 | ## DomainDetails.innerType property 6 | 7 | Qualified name of the inner type of the domain. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | innerType: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.enumdetails.values.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [EnumDetails](./extract-pg-schema.enumdetails.md) > [values](./extract-pg-schema.enumdetails.values.md) 4 | 5 | ## EnumDetails.values property 6 | 7 | Array of enum values in order. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | values: string[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.extractschemaoptions.onprogress.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ExtractSchemaOptions](./extract-pg-schema.extractschemaoptions.md) > [onProgress](./extract-pg-schema.extractschemaoptions.onprogress.md) 4 | 5 | ## ExtractSchemaOptions.onProgress property 6 | 7 | Called once for each type that is extracted. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | onProgress?: () => void; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.extractschemaoptions.onprogressend.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ExtractSchemaOptions](./extract-pg-schema.extractschemaoptions.md) > [onProgressEnd](./extract-pg-schema.extractschemaoptions.onprogressend.md) 4 | 5 | ## ExtractSchemaOptions.onProgressEnd property 6 | 7 | Called when all types have been extracted. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | onProgressEnd?: () => void; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [comment](./extract-pg-schema.foreigntablecolumn.comment.md) 4 | 5 | ## ForeignTableColumn.comment property 6 | 7 | Comment on the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | comment: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.defaultvalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [defaultValue](./extract-pg-schema.foreigntablecolumn.defaultvalue.md) 4 | 5 | ## ForeignTableColumn.defaultValue property 6 | 7 | Default value of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | defaultValue: any; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.isarray.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [isArray](./extract-pg-schema.foreigntablecolumn.isarray.md) 4 | 5 | ## ForeignTableColumn.isArray property 6 | 7 | Whether the column is an array. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isArray: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.isidentity.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [isIdentity](./extract-pg-schema.foreigntablecolumn.isidentity.md) 4 | 5 | ## ForeignTableColumn.isIdentity property 6 | 7 | Whether the column is an identity column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isIdentity: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.isupdatable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [isUpdatable](./extract-pg-schema.foreigntablecolumn.isupdatable.md) 4 | 5 | ## ForeignTableColumn.isUpdatable property 6 | 7 | Whether the column is updatable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isUpdatable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.maxlength.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [maxLength](./extract-pg-schema.foreigntablecolumn.maxlength.md) 4 | 5 | ## ForeignTableColumn.maxLength property 6 | 7 | Maximum length of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | maxLength: number | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [name](./extract-pg-schema.foreigntablecolumn.name.md) 4 | 5 | ## ForeignTableColumn.name property 6 | 7 | Column name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumn.type.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumn](./extract-pg-schema.foreigntablecolumn.md) > [type](./extract-pg-schema.foreigntablecolumn.type.md) 4 | 5 | ## ForeignTableColumn.type property 6 | 7 | Type information. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | type: ForeignTableColumnType; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntablecolumntype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableColumnType](./extract-pg-schema.foreigntablecolumntype.md) 4 | 5 | ## ForeignTableColumnType type 6 | 7 | Column type in a foreign table. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | export type ForeignTableColumnType = { 13 | fullName: string; 14 | kind: "base" | "range" | "domain" | "composite" | "enum"; 15 | }; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.foreigntabledetails.columns.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ForeignTableDetails](./extract-pg-schema.foreigntabledetails.md) > [columns](./extract-pg-schema.foreigntabledetails.columns.md) 4 | 5 | ## ForeignTableDetails.columns property 6 | 7 | Columns in the view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | columns: ForeignTableColumn[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [comment](./extract-pg-schema.functiondetails.comment.md) 4 | 5 | ## FunctionDetails.comment property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | comment: string | null; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.definition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [definition](./extract-pg-schema.functiondetails.definition.md) 4 | 5 | ## FunctionDetails.definition property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | definition: string; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.estimatedcost.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [estimatedCost](./extract-pg-schema.functiondetails.estimatedcost.md) 4 | 5 | ## FunctionDetails.estimatedCost property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | estimatedCost: number; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.estimatedrows.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [estimatedRows](./extract-pg-schema.functiondetails.estimatedrows.md) 4 | 5 | ## FunctionDetails.estimatedRows property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | estimatedRows: number | null; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.informationschemavalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [informationSchemaValue](./extract-pg-schema.functiondetails.informationschemavalue.md) 4 | 5 | ## FunctionDetails.informationSchemaValue property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | informationSchemaValue: InformationSchemaRoutine; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.isleakproof.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [isLeakProof](./extract-pg-schema.functiondetails.isleakproof.md) 4 | 5 | ## FunctionDetails.isLeakProof property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | isLeakProof: boolean; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.issecuritydefiner.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [isSecurityDefiner](./extract-pg-schema.functiondetails.issecuritydefiner.md) 4 | 5 | ## FunctionDetails.isSecurityDefiner property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | isSecurityDefiner: boolean; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.isstrict.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [isStrict](./extract-pg-schema.functiondetails.isstrict.md) 4 | 5 | ## FunctionDetails.isStrict property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | isStrict: boolean; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.language.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [language](./extract-pg-schema.functiondetails.language.md) 4 | 5 | ## FunctionDetails.language property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | language: string; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.parallelsafety.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [parallelSafety](./extract-pg-schema.functiondetails.parallelsafety.md) 4 | 5 | ## FunctionDetails.parallelSafety property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | parallelSafety: FunctionParallelSafety; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.parameters.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [parameters](./extract-pg-schema.functiondetails.parameters.md) 4 | 5 | ## FunctionDetails.parameters property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | parameters: FunctionParameter[]; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.returnsset.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [returnsSet](./extract-pg-schema.functiondetails.returnsset.md) 4 | 5 | ## FunctionDetails.returnsSet property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | returnsSet: boolean; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.returntype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [returnType](./extract-pg-schema.functiondetails.returntype.md) 4 | 5 | ## FunctionDetails.returnType property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | returnType: string | TableReturnType; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functiondetails.volatility.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionDetails](./extract-pg-schema.functiondetails.md) > [volatility](./extract-pg-schema.functiondetails.volatility.md) 4 | 5 | ## FunctionDetails.volatility property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | volatility: FunctionVolatility; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.functionparameter.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [FunctionParameter](./extract-pg-schema.functionparameter.md) 4 | 5 | ## FunctionParameter type 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | export type FunctionParameter = { 11 | name: string; 12 | type: string; 13 | mode: ParameterMode; 14 | hasDefault: boolean; 15 | ordinalPosition: number; 16 | }; 17 | ``` 18 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.index.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Index](./extract-pg-schema.index.md) 4 | 5 | ## Index type 6 | 7 | Index for a column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | export type Index = { 13 | name: string; 14 | isPrimary: boolean; 15 | }; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemacolumn.column_name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaColumn](./extract-pg-schema.informationschemacolumn.md) > [column\_name](./extract-pg-schema.informationschemacolumn.column_name.md) 4 | 5 | ## InformationSchemaColumn.column\_name property 6 | 7 | Name of the column 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | column_name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemacolumn.table_name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaColumn](./extract-pg-schema.informationschemacolumn.md) > [table\_name](./extract-pg-schema.informationschemacolumn.table_name.md) 4 | 5 | ## InformationSchemaColumn.table\_name property 6 | 7 | Name of the table 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | table_name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemadomain.domain_name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaDomain](./extract-pg-schema.informationschemadomain.md) > [domain\_name](./extract-pg-schema.informationschemadomain.domain_name.md) 4 | 5 | ## InformationSchemaDomain.domain\_name property 6 | 7 | Name of the domain 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | domain_name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemadomain.udt_name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaDomain](./extract-pg-schema.informationschemadomain.md) > [udt\_name](./extract-pg-schema.informationschemadomain.udt_name.md) 4 | 5 | ## InformationSchemaDomain.udt\_name property 6 | 7 | Name of the domain data type 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | udt_name: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemaroutine.created.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaRoutine](./extract-pg-schema.informationschemaroutine.md) > [created](./extract-pg-schema.informationschemaroutine.created.md) 4 | 5 | ## InformationSchemaRoutine.created property 6 | 7 | Applies to a feature not available in PostgreSQL 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | created: Date | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemaroutine.data_type.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaRoutine](./extract-pg-schema.informationschemaroutine.md) > [data\_type](./extract-pg-schema.informationschemaroutine.data_type.md) 4 | 5 | ## InformationSchemaRoutine.data\_type property 6 | 7 | Return data type of the function 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | data_type: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschematable.commit_action.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaTable](./extract-pg-schema.informationschematable.md) > [commit\_action](./extract-pg-schema.informationschematable.commit_action.md) 4 | 5 | ## InformationSchemaTable.commit\_action property 6 | 7 | Not yet implemented 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | commit_action: any; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschematable.is_typed.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaTable](./extract-pg-schema.informationschematable.md) > [is\_typed](./extract-pg-schema.informationschematable.is_typed.md) 4 | 5 | ## InformationSchemaTable.is\_typed property 6 | 7 | YES if the table is a typed table, NO if not 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | is_typed: YesNo; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschematable.table_name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaTable](./extract-pg-schema.informationschematable.md) > [table\_name](./extract-pg-schema.informationschematable.table_name.md) 4 | 5 | ## InformationSchemaTable.table\_name property 6 | 7 | Name of the table 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | table_name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschematable.table_schema.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaTable](./extract-pg-schema.informationschematable.md) > [table\_schema](./extract-pg-schema.informationschematable.table_schema.md) 4 | 5 | ## InformationSchemaTable.table\_schema property 6 | 7 | Name of the schema that contains the table 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | table_schema: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemaview.table_name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaView](./extract-pg-schema.informationschemaview.md) > [table\_name](./extract-pg-schema.informationschemaview.table_name.md) 4 | 5 | ## InformationSchemaView.table\_name property 6 | 7 | Name of the table 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | table_name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.informationschemaview.table_schema.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [InformationSchemaView](./extract-pg-schema.informationschemaview.md) > [table\_schema](./extract-pg-schema.informationschemaview.table_schema.md) 4 | 5 | ## InformationSchemaView.table\_schema property 6 | 7 | Name of the schema that contains the table 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | table_schema: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.kind.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Kind](./extract-pg-schema.kind.md) 4 | 5 | ## Kind type 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | export type Kind = TypeKind | ClassKind | RoutineKind; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [comment](./extract-pg-schema.materializedviewcolumn.comment.md) 4 | 5 | ## MaterializedViewColumn.comment property 6 | 7 | Comment on the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | comment: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.defaultvalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [defaultValue](./extract-pg-schema.materializedviewcolumn.defaultvalue.md) 4 | 5 | ## MaterializedViewColumn.defaultValue property 6 | 7 | Default value of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | defaultValue: any; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.isarray.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [isArray](./extract-pg-schema.materializedviewcolumn.isarray.md) 4 | 5 | ## MaterializedViewColumn.isArray property 6 | 7 | Whether the column is an array. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isArray: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.isidentity.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [isIdentity](./extract-pg-schema.materializedviewcolumn.isidentity.md) 4 | 5 | ## MaterializedViewColumn.isIdentity property 6 | 7 | Whether the column is an identity column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isIdentity: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.isupdatable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [isUpdatable](./extract-pg-schema.materializedviewcolumn.isupdatable.md) 4 | 5 | ## MaterializedViewColumn.isUpdatable property 6 | 7 | Whether the column is updatable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isUpdatable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.maxlength.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [maxLength](./extract-pg-schema.materializedviewcolumn.maxlength.md) 4 | 5 | ## MaterializedViewColumn.maxLength property 6 | 7 | Maximum length of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | maxLength: number | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [name](./extract-pg-schema.materializedviewcolumn.name.md) 4 | 5 | ## MaterializedViewColumn.name property 6 | 7 | Column name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewcolumn.type.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewColumn](./extract-pg-schema.materializedviewcolumn.md) > [type](./extract-pg-schema.materializedviewcolumn.type.md) 4 | 5 | ## MaterializedViewColumn.type property 6 | 7 | Type information. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | type: MaterializedViewColumnType; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewdetails.columns.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewDetails](./extract-pg-schema.materializedviewdetails.md) > [columns](./extract-pg-schema.materializedviewdetails.columns.md) 4 | 5 | ## MaterializedViewDetails.columns property 6 | 7 | Columns in the materialized view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | columns: MaterializedViewColumn[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.materializedviewdetails.definition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [MaterializedViewDetails](./extract-pg-schema.materializedviewdetails.md) > [definition](./extract-pg-schema.materializedviewdetails.definition.md) 4 | 5 | ## MaterializedViewDetails.definition property 6 | 7 | The SQL definition of the view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | definition: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.procedureparameter.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ProcedureParameter](./extract-pg-schema.procedureparameter.md) 4 | 5 | ## ProcedureParameter type 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | export type ProcedureParameter = { 11 | name: string; 12 | type: string; 13 | mode: ParameterMode; 14 | hasDefault: boolean; 15 | ordinalPosition: number; 16 | }; 17 | ``` 18 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.rangedetails.innertype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [RangeDetails](./extract-pg-schema.rangedetails.md) > [innerType](./extract-pg-schema.rangedetails.innertype.md) 4 | 5 | ## RangeDetails.innerType property 6 | 7 | Qualified name of the inner type of the range. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | innerType: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecheck.clause.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableCheck](./extract-pg-schema.tablecheck.md) > [clause](./extract-pg-schema.tablecheck.clause.md) 4 | 5 | ## TableCheck.clause property 6 | 7 | Check constraint clause. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | clause: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecheck.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableCheck](./extract-pg-schema.tablecheck.md) > [name](./extract-pg-schema.tablecheck.name.md) 4 | 5 | ## TableCheck.name property 6 | 7 | Name of the check constraint. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [comment](./extract-pg-schema.tablecolumn.comment.md) 4 | 5 | ## TableColumn.comment property 6 | 7 | Comment on the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | comment: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.defaultvalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [defaultValue](./extract-pg-schema.tablecolumn.defaultvalue.md) 4 | 5 | ## TableColumn.defaultValue property 6 | 7 | Default value of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | defaultValue: any; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.dimensions.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [dimensions](./extract-pg-schema.tablecolumn.dimensions.md) 4 | 5 | ## TableColumn.dimensions property 6 | 7 | Number of dimensions of the array type. 0 if not an array. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | dimensions: number; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.expandedtype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [expandedType](./extract-pg-schema.tablecolumn.expandedtype.md) 4 | 5 | ## TableColumn.expandedType property 6 | 7 | Expanded type name. If the type is an array, brackets will be appended to the type name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | expandedType: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.indices.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [indices](./extract-pg-schema.tablecolumn.indices.md) 4 | 5 | ## TableColumn.indices property 6 | 7 | > Warning: This API is now obsolete. 8 | > 9 | > use TableDetails.indices instead 10 | > 11 | 12 | **Signature:** 13 | 14 | ```typescript 15 | indices: Index[]; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.isarray.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [isArray](./extract-pg-schema.tablecolumn.isarray.md) 4 | 5 | ## TableColumn.isArray property 6 | 7 | Whether the column is an array. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isArray: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.isidentity.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [isIdentity](./extract-pg-schema.tablecolumn.isidentity.md) 4 | 5 | ## TableColumn.isIdentity property 6 | 7 | Whether the column is an identity column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isIdentity: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.isnullable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [isNullable](./extract-pg-schema.tablecolumn.isnullable.md) 4 | 5 | ## TableColumn.isNullable property 6 | 7 | Whether the column is nullable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isNullable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.isprimarykey.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [isPrimaryKey](./extract-pg-schema.tablecolumn.isprimarykey.md) 4 | 5 | ## TableColumn.isPrimaryKey property 6 | 7 | Whether the column is a primary key. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isPrimaryKey: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.isupdatable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [isUpdatable](./extract-pg-schema.tablecolumn.isupdatable.md) 4 | 5 | ## TableColumn.isUpdatable property 6 | 7 | Whether the column is updatable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isUpdatable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.maxlength.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [maxLength](./extract-pg-schema.tablecolumn.maxlength.md) 4 | 5 | ## TableColumn.maxLength property 6 | 7 | Maximum length of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | maxLength: number | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [name](./extract-pg-schema.tablecolumn.name.md) 4 | 5 | ## TableColumn.name property 6 | 7 | Column name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.ordinalposition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [ordinalPosition](./extract-pg-schema.tablecolumn.ordinalposition.md) 4 | 5 | ## TableColumn.ordinalPosition property 6 | 7 | Ordinal position of the column in the table. Starts from 1. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | ordinalPosition: number; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.parenttable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [parentTable](./extract-pg-schema.tablecolumn.parenttable.md) 4 | 5 | ## TableColumn.parentTable property 6 | 7 | Name of the table the column is inherited from if table is using inheritance 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | parentTable: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.reference.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [reference](./extract-pg-schema.tablecolumn.reference.md) 4 | 5 | ## TableColumn.reference property 6 | 7 | > Warning: This API is now obsolete. 8 | > 9 | > use references instead 10 | > 11 | 12 | **Signature:** 13 | 14 | ```typescript 15 | reference: ColumnReference | null; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.references.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [references](./extract-pg-schema.tablecolumn.references.md) 4 | 5 | ## TableColumn.references property 6 | 7 | Array of references from this column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | references: ColumnReference[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumn.type.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumn](./extract-pg-schema.tablecolumn.md) > [type](./extract-pg-schema.tablecolumn.type.md) 4 | 5 | ## TableColumn.type property 6 | 7 | Type information. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | type: TableColumnType; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablecolumntype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableColumnType](./extract-pg-schema.tablecolumntype.md) 4 | 5 | ## TableColumnType type 6 | 7 | Column type in a table. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | export type TableColumnType = { 13 | fullName: string; 14 | kind: "base" | "range" | "domain" | "composite" | "enum"; 15 | }; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tabledetails.checks.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableDetails](./extract-pg-schema.tabledetails.md) > [checks](./extract-pg-schema.tabledetails.checks.md) 4 | 5 | ## TableDetails.checks property 6 | 7 | Array of check constraints in the table. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | checks: TableCheck[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tabledetails.columns.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableDetails](./extract-pg-schema.tabledetails.md) > [columns](./extract-pg-schema.tabledetails.columns.md) 4 | 5 | ## TableDetails.columns property 6 | 7 | Array of columns in the table. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | columns: TableColumn[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tabledetails.indices.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableDetails](./extract-pg-schema.tabledetails.md) > [indices](./extract-pg-schema.tabledetails.indices.md) 4 | 5 | ## TableDetails.indices property 6 | 7 | Array of indices in the table. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | indices: TableIndex[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tabledetails.securitypolicies.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableDetails](./extract-pg-schema.tabledetails.md) > [securityPolicies](./extract-pg-schema.tabledetails.securitypolicies.md) 4 | 5 | ## TableDetails.securityPolicies property 6 | 7 | Array of security policies on the table. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | securityPolicies: TableSecurityPolicy[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tabledetails.triggers.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableDetails](./extract-pg-schema.tabledetails.md) > [triggers](./extract-pg-schema.tabledetails.triggers.md) 4 | 5 | ## TableDetails.triggers property 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | triggers: Trigger[]; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindex.columns.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndex](./extract-pg-schema.tableindex.md) > [columns](./extract-pg-schema.tableindex.columns.md) 4 | 5 | ## TableIndex.columns property 6 | 7 | Array of index columns in order. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | columns: TableIndexColumn[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindex.isprimary.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndex](./extract-pg-schema.tableindex.md) > [isPrimary](./extract-pg-schema.tableindex.isprimary.md) 4 | 5 | ## TableIndex.isPrimary property 6 | 7 | Whether the index is a primary key. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isPrimary: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindex.isunique.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndex](./extract-pg-schema.tableindex.md) > [isUnique](./extract-pg-schema.tableindex.isunique.md) 4 | 5 | ## TableIndex.isUnique property 6 | 7 | Whether the index is unique. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isUnique: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindex.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndex](./extract-pg-schema.tableindex.md) > [name](./extract-pg-schema.tableindex.name.md) 4 | 5 | ## TableIndex.name property 6 | 7 | Name of the index. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindexcolumn.definition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndexColumn](./extract-pg-schema.tableindexcolumn.md) > [definition](./extract-pg-schema.tableindexcolumn.definition.md) 4 | 5 | ## TableIndexColumn.definition property 6 | 7 | Definition of index column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | definition: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindexcolumn.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndexColumn](./extract-pg-schema.tableindexcolumn.md) > [name](./extract-pg-schema.tableindexcolumn.name.md) 4 | 5 | ## TableIndexColumn.name property 6 | 7 | Column name or null if functional index. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tableindexcolumn.predicate.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableIndexColumn](./extract-pg-schema.tableindexcolumn.md) > [predicate](./extract-pg-schema.tableindexcolumn.predicate.md) 4 | 5 | ## TableIndexColumn.predicate property 6 | 7 | Predicate of the partial index or null if regular index. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | predicate: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablesecuritypolicy.ispermissive.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableSecurityPolicy](./extract-pg-schema.tablesecuritypolicy.md) > [isPermissive](./extract-pg-schema.tablesecuritypolicy.ispermissive.md) 4 | 5 | ## TableSecurityPolicy.isPermissive property 6 | 7 | Whether the policy is permissive. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isPermissive: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.tablesecuritypolicy.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [TableSecurityPolicy](./extract-pg-schema.tablesecuritypolicy.md) > [name](./extract-pg-schema.tablesecuritypolicy.name.md) 4 | 5 | ## TableSecurityPolicy.name property 6 | 7 | Name of the security policy. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.actiontiming.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [actionTiming](./extract-pg-schema.trigger.actiontiming.md) 4 | 5 | ## Trigger.actionTiming property 6 | 7 | Timing of the trigger (BEFORE, AFTER, INSTEAD OF). 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | actionTiming: "BEFORE" | "AFTER" | "INSTEAD OF"; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [comment](./extract-pg-schema.trigger.comment.md) 4 | 5 | ## Trigger.comment property 6 | 7 | Comment on the trigger, if any. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | comment: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.condition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [condition](./extract-pg-schema.trigger.condition.md) 4 | 5 | ## Trigger.condition property 6 | 7 | WHEN condition for the trigger, if any. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | condition: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.enabled.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [enabled](./extract-pg-schema.trigger.enabled.md) 4 | 5 | ## Trigger.enabled property 6 | 7 | Whether the trigger is enabled. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | enabled: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.functionargs.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [functionArgs](./extract-pg-schema.trigger.functionargs.md) 4 | 5 | ## Trigger.functionArgs property 6 | 7 | Arguments passed to the function. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | functionArgs: string[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.functionname.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [functionName](./extract-pg-schema.trigger.functionname.md) 4 | 5 | ## Trigger.functionName property 6 | 7 | Name of the function called by the trigger. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | functionName: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.functionschema.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [functionSchema](./extract-pg-schema.trigger.functionschema.md) 4 | 5 | ## Trigger.functionSchema property 6 | 7 | Schema of the function called by the trigger. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | functionSchema: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.informationschemavalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [informationSchemaValue](./extract-pg-schema.trigger.informationschemavalue.md) 4 | 5 | ## Trigger.informationSchemaValue property 6 | 7 | Information schema value for the trigger. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | informationSchemaValue: InformationSchemaTrigger; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [name](./extract-pg-schema.trigger.name.md) 4 | 5 | ## Trigger.name property 6 | 7 | Name of the trigger. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.trigger.orientation.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [Trigger](./extract-pg-schema.trigger.md) > [orientation](./extract-pg-schema.trigger.orientation.md) 4 | 5 | ## Trigger.orientation property 6 | 7 | Orientation: ROW or STATEMENT. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | orientation: "ROW" | "STATEMENT"; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.updateaction.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [UpdateAction](./extract-pg-schema.updateaction.md) 4 | 5 | ## UpdateAction type 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | export type UpdateAction = (typeof updateActionMap)[keyof typeof updateActionMap]; 11 | ``` 12 | **References:** [updateActionMap](./extract-pg-schema.updateactionmap.md) 13 | 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.updateactionmap.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [updateActionMap](./extract-pg-schema.updateactionmap.md) 4 | 5 | ## updateActionMap variable 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | updateActionMap: { 11 | readonly a: "NO ACTION"; 12 | readonly r: "RESTRICT"; 13 | readonly c: "CASCADE"; 14 | readonly n: "SET NULL"; 15 | readonly d: "SET DEFAULT"; 16 | } 17 | ``` 18 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.comment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [comment](./extract-pg-schema.viewcolumn.comment.md) 4 | 5 | ## ViewColumn.comment property 6 | 7 | Comment on the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | comment: string | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.defaultvalue.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [defaultValue](./extract-pg-schema.viewcolumn.defaultvalue.md) 4 | 5 | ## ViewColumn.defaultValue property 6 | 7 | Default value of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | defaultValue: any; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.expandedtype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [expandedType](./extract-pg-schema.viewcolumn.expandedtype.md) 4 | 5 | ## ViewColumn.expandedType property 6 | 7 | Expanded type name. If the type is an array, brackets will be appended to the type name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | expandedType: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.indices.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [indices](./extract-pg-schema.viewcolumn.indices.md) 4 | 5 | ## ViewColumn.indices property 6 | 7 | > Warning: This API is now obsolete. 8 | > 9 | > use TableDetails.indices instead 10 | > 11 | 12 | **Signature:** 13 | 14 | ```typescript 15 | indices?: Index[]; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.isarray.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [isArray](./extract-pg-schema.viewcolumn.isarray.md) 4 | 5 | ## ViewColumn.isArray property 6 | 7 | Whether the column is an array. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isArray: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.isidentity.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [isIdentity](./extract-pg-schema.viewcolumn.isidentity.md) 4 | 5 | ## ViewColumn.isIdentity property 6 | 7 | Whether the column is an identity column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isIdentity: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.isnullable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [isNullable](./extract-pg-schema.viewcolumn.isnullable.md) 4 | 5 | ## ViewColumn.isNullable property 6 | 7 | Whether the column is nullable. This is only present if the view is resolved. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isNullable?: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.isprimarykey.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [isPrimaryKey](./extract-pg-schema.viewcolumn.isprimarykey.md) 4 | 5 | ## ViewColumn.isPrimaryKey property 6 | 7 | Whether the column is a primary key. This is only present if the view is resolved. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isPrimaryKey?: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.isupdatable.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [isUpdatable](./extract-pg-schema.viewcolumn.isupdatable.md) 4 | 5 | ## ViewColumn.isUpdatable property 6 | 7 | Whether the column is updatable. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | isUpdatable: boolean; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.maxlength.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [maxLength](./extract-pg-schema.viewcolumn.maxlength.md) 4 | 5 | ## ViewColumn.maxLength property 6 | 7 | Maximum length of the column. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | maxLength: number | null; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.name.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [name](./extract-pg-schema.viewcolumn.name.md) 4 | 5 | ## ViewColumn.name property 6 | 7 | Column name. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | name: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.ordinalposition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [ordinalPosition](./extract-pg-schema.viewcolumn.ordinalposition.md) 4 | 5 | ## ViewColumn.ordinalPosition property 6 | 7 | Ordinal position of the column in the view. Starts from 1. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | ordinalPosition: number; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.reference.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [reference](./extract-pg-schema.viewcolumn.reference.md) 4 | 5 | ## ViewColumn.reference property 6 | 7 | > Warning: This API is now obsolete. 8 | > 9 | > use references instead 10 | > 11 | 12 | **Signature:** 13 | 14 | ```typescript 15 | reference?: ColumnReference | null; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumn.type.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumn](./extract-pg-schema.viewcolumn.md) > [type](./extract-pg-schema.viewcolumn.type.md) 4 | 5 | ## ViewColumn.type property 6 | 7 | Type information. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | type: ViewColumnType; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewcolumntype.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewColumnType](./extract-pg-schema.viewcolumntype.md) 4 | 5 | ## ViewColumnType type 6 | 7 | Column type in a view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | export type ViewColumnType = { 13 | fullName: string; 14 | kind: "base" | "range" | "domain" | "composite" | "enum"; 15 | }; 16 | ``` 17 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewdetails.columns.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewDetails](./extract-pg-schema.viewdetails.md) > [columns](./extract-pg-schema.viewdetails.columns.md) 4 | 5 | ## ViewDetails.columns property 6 | 7 | Columns in the view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | columns: ViewColumn[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewdetails.definition.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewDetails](./extract-pg-schema.viewdetails.md) > [definition](./extract-pg-schema.viewdetails.definition.md) 4 | 5 | ## ViewDetails.definition property 6 | 7 | The SQL definition of the view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | definition: string; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.viewdetails.triggers.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [ViewDetails](./extract-pg-schema.viewdetails.md) > [triggers](./extract-pg-schema.viewdetails.triggers.md) 4 | 5 | ## ViewDetails.triggers property 6 | 7 | Triggers on the view. 8 | 9 | **Signature:** 10 | 11 | ```typescript 12 | triggers: Trigger[]; 13 | ``` 14 | -------------------------------------------------------------------------------- /docs-src/api/extract-pg-schema.yesno.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) > [extract-pg-schema](./extract-pg-schema.md) > [YesNo](./extract-pg-schema.yesno.md) 4 | 5 | ## YesNo type 6 | 7 | **Signature:** 8 | 9 | ```typescript 10 | type YesNo = "YES" | "NO"; 11 | ``` 12 | -------------------------------------------------------------------------------- /docs-src/api/index.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](./index.md) 4 | 5 | ## API Reference 6 | 7 | ## Packages 8 | 9 |
10 | 11 | Package 12 | 13 | 14 | | 15 | 16 | Description 17 | 18 | 19 | |
---|---|
21 | 22 | [extract-pg-schema](./extract-pg-schema.md) 23 | 24 | 25 | | 26 | 27 | 28 | |