From f29735d460af9275015bfb23fb03234d11b917db Mon Sep 17 00:00:00 2001 From: ilyin Date: Thu, 18 Jul 2024 18:09:18 +0300 Subject: [PATCH] database --- .../ervu_secret/db_beans/DefaultCatalog.java | 63 + .../db_beans/information_schema/Domains.java | 73 + .../information_schema/InformationSchema.java | 542 + .../db_beans/information_schema/Routines.java | 509 + .../db_beans/information_schema/Tables.java | 433 + .../routines/_PgCharMaxLength.java | 80 + .../routines/_PgCharOctetLength.java | 82 + .../routines/_PgDatetimePrecision.java | 82 + .../routines/_PgIndexPosition.java | 80 + .../routines/_PgIntervalType.java | 80 + .../routines/_PgNumericPrecision.java | 82 + .../routines/_PgNumericPrecisionRadix.java | 82 + .../routines/_PgNumericScale.java | 80 + .../routines/_PgTruetypid.java | 83 + .../routines/_PgTruetypmod.java | 84 + .../AdministrableRoleAuthorizations.java | 237 + .../tables/ApplicableRoles.java | 246 + .../information_schema/tables/Attributes.java | 426 + .../tables/CharacterSets.java | 274 + .../tables/CheckConstraintRoutineUsage.java | 261 + .../tables/CheckConstraints.java | 253 + .../CollationCharacterSetApplicability.java | 261 + .../information_schema/tables/Collations.java | 238 + .../tables/ColumnColumnUsage.java | 253 + .../tables/ColumnDomainUsage.java | 266 + .../tables/ColumnOptions.java | 246 + .../tables/ColumnPrivileges.java | 316 + .../tables/ColumnUdtUsage.java | 261 + .../information_schema/tables/Columns.java | 550 + .../tables/ConstraintColumnUsage.java | 295 + .../tables/ConstraintTableUsage.java | 258 + .../tables/DataTypePrivileges.java | 275 + .../tables/DomainConstraints.java | 280 + .../tables/DomainUdtUsage.java | 253 + .../information_schema/tables/Domains.java | 387 + .../tables/ElementTypes.java | 456 + .../tables/EnabledRoles.java | 217 + .../tables/ForeignDataWrapperOptions.java | 242 + .../tables/ForeignDataWrappers.java | 247 + .../tables/ForeignServerOptions.java | 240 + .../tables/ForeignServers.java | 259 + .../tables/ForeignTableOptions.java | 247 + .../tables/ForeignTables.java | 245 + .../tables/InformationSchemaCatalogName.java | 220 + .../tables/KeyColumnUsage.java | 293 + .../information_schema/tables/Parameters.java | 438 + .../tables/ReferentialConstraints.java | 308 + .../tables/RoleColumnGrants.java | 268 + .../tables/RoleRoutineGrants.java | 283 + .../tables/RoleTableGrants.java | 268 + .../tables/RoleUdtGrants.java | 256 + .../tables/RoleUsageGrants.java | 267 + .../tables/RoutineColumnUsage.java | 288 + .../tables/RoutinePrivileges.java | 301 + .../tables/RoutineRoutineUsage.java | 259 + .../tables/RoutineSequenceUsage.java | 280 + .../tables/RoutineTableUsage.java | 280 + .../information_schema/tables/Routines.java | 788 + .../information_schema/tables/Schemata.java | 257 + .../information_schema/tables/Sequences.java | 292 + .../tables/SqlFeatures.java | 243 + .../tables/SqlImplementationInfo.java | 240 + .../information_schema/tables/SqlSizing.java | 228 + .../tables/TableConstraints.java | 332 + .../tables/TablePrivileges.java | 288 + .../information_schema/tables/Tables.java | 306 + .../tables/TriggeredUpdateColumns.java | 271 + .../information_schema/tables/Triggers.java | 335 + .../tables/UdtPrivileges.java | 274 + .../tables/UsagePrivileges.java | 387 + .../tables/UserDefinedTypes.java | 416 + .../tables/UserMappingOptions.java | 254 + .../tables/UserMappings.java | 231 + .../tables/ViewColumnUsage.java | 264 + .../tables/ViewRoutineUsage.java | 259 + .../tables/ViewTableUsage.java | 254 + .../information_schema/tables/Views.java | 306 + .../tables/_PgExpandarray.java | 166 + ...AdministrableRoleAuthorizationsRecord.java | 90 + .../tables/records/ApplicableRolesRecord.java | 84 + .../tables/records/AttributesRecord.java | 522 + .../tables/records/CharacterSetsRecord.java | 173 + .../CheckConstraintRoutineUsageRecord.java | 141 + .../records/CheckConstraintsRecord.java | 107 + ...lationCharacterSetApplicabilityRecord.java | 141 + .../tables/records/CollationsRecord.java | 99 + .../records/ColumnColumnUsageRecord.java | 124 + .../records/ColumnDomainUsageRecord.java | 158 + .../tables/records/ColumnOptionsRecord.java | 129 + .../records/ColumnPrivilegesRecord.java | 167 + .../tables/records/ColumnUdtUsageRecord.java | 146 + .../tables/records/ColumnsRecord.java | 705 + .../records/ConstraintColumnUsageRecord.java | 158 + .../records/ConstraintTableUsageRecord.java | 141 + .../records/DataTypePrivilegesRecord.java | 124 + .../records/DomainConstraintsRecord.java | 175 + .../tables/records/DomainUdtUsageRecord.java | 133 + .../tables/records/DomainsRecord.java | 450 + .../tables/records/ElementTypesRecord.java | 500 + .../tables/records/EnabledRolesRecord.java | 54 + .../ForeignDataWrapperOptionsRecord.java | 107 + .../records/ForeignDataWrappersRecord.java | 124 + .../records/ForeignServerOptionsRecord.java | 107 + .../tables/records/ForeignServersRecord.java | 158 + .../records/ForeignTableOptionsRecord.java | 124 + .../tables/records/ForeignTablesRecord.java | 124 + .../InformationSchemaCatalogNameRecord.java | 56 + .../tables/records/KeyColumnUsageRecord.java | 186 + .../tables/records/ParametersRecord.java | 531 + .../records/ReferentialConstraintsRecord.java | 192 + .../records/RoleColumnGrantsRecord.java | 169 + .../records/RoleRoutineGrantsRecord.java | 205 + .../tables/records/RoleTableGrantsRecord.java | 169 + .../tables/records/RoleUdtGrantsRecord.java | 146 + .../tables/records/RoleUsageGrantsRecord.java | 167 + .../records/RoutineColumnUsageRecord.java | 209 + .../records/RoutinePrivilegesRecord.java | 205 + .../records/RoutineRoutineUsageRecord.java | 141 + .../records/RoutineSequenceUsageRecord.java | 192 + .../records/RoutineTableUsageRecord.java | 192 + .../tables/records/RoutinesRecord.java | 1335 + .../tables/records/SchemataRecord.java | 150 + .../tables/records/SequencesRecord.java | 221 + .../tables/records/SqlFeaturesRecord.java | 144 + .../records/SqlImplementationInfoRecord.java | 124 + .../tables/records/SqlSizingRecord.java | 99 + .../records/TableConstraintsRecord.java | 222 + .../tables/records/TablePrivilegesRecord.java | 165 + .../tables/records/TablesRecord.java | 225 + .../records/TriggeredUpdateColumnsRecord.java | 158 + .../tables/records/TriggersRecord.java | 304 + .../tables/records/UdtPrivilegesRecord.java | 144 + .../tables/records/UsagePrivilegesRecord.java | 165 + .../records/UserDefinedTypesRecord.java | 528 + .../records/UserMappingOptionsRecord.java | 124 + .../tables/records/UserMappingsRecord.java | 90 + .../tables/records/ViewColumnUsageRecord.java | 150 + .../records/ViewRoutineUsageRecord.java | 139 + .../tables/records/ViewTableUsageRecord.java | 131 + .../tables/records/ViewsRecord.java | 191 + .../tables/records/_PgExpandarrayRecord.java | 81 + .../ervu_secret/db_beans/pg_catalog/Keys.java | 241 + .../db_beans/pg_catalog/PgCatalog.java | 3699 + .../db_beans/pg_catalog/Routines.java | 158603 +++++++++++++++ .../db_beans/pg_catalog/Tables.java | 3480 + .../db_beans/pg_catalog/routines/Abbrev1.java | 66 + .../db_beans/pg_catalog/routines/Abbrev2.java | 66 + .../db_beans/pg_catalog/routines/Abs1.java | 59 + .../db_beans/pg_catalog/routines/Abs2.java | 59 + .../db_beans/pg_catalog/routines/Abs3.java | 59 + .../db_beans/pg_catalog/routines/Abs4.java | 59 + .../db_beans/pg_catalog/routines/Abs5.java | 59 + .../db_beans/pg_catalog/routines/Abs6.java | 61 + .../pg_catalog/routines/Aclcontains.java | 79 + .../pg_catalog/routines/Acldefault.java | 79 + .../pg_catalog/routines/Aclinsert.java | 79 + .../pg_catalog/routines/Aclitemeq.java | 79 + .../pg_catalog/routines/Aclitemin.java | 65 + .../pg_catalog/routines/Aclitemout.java | 71 + .../pg_catalog/routines/Aclremove.java | 79 + .../db_beans/pg_catalog/routines/Acos.java | 58 + .../db_beans/pg_catalog/routines/Acosd.java | 58 + .../db_beans/pg_catalog/routines/Acosh.java | 58 + .../db_beans/pg_catalog/routines/Age1.java | 59 + .../db_beans/pg_catalog/routines/Age2.java | 83 + .../db_beans/pg_catalog/routines/Age3.java | 62 + .../db_beans/pg_catalog/routines/Age4.java | 83 + .../db_beans/pg_catalog/routines/Age5.java | 62 + .../pg_catalog/routines/Amvalidate.java | 58 + .../db_beans/pg_catalog/routines/AnyIn.java | 77 + .../db_beans/pg_catalog/routines/AnyOut.java | 77 + .../pg_catalog/routines/AnyarrayIn.java | 65 + .../pg_catalog/routines/AnyarrayOut.java | 71 + .../pg_catalog/routines/AnyarrayRecv.java | 65 + .../pg_catalog/routines/AnyarraySend.java | 58 + .../pg_catalog/routines/AnycompatibleIn.java | 76 + .../pg_catalog/routines/AnycompatibleOut.java | 76 + .../routines/AnycompatiblearrayIn.java | 76 + .../routines/AnycompatiblearrayOut.java | 76 + .../routines/AnycompatiblearrayRecv.java | 76 + .../routines/AnycompatiblearraySend.java | 66 + .../routines/AnycompatiblemultirangeIn.java | 119 + .../routines/AnycompatiblemultirangeOut.java | 76 + .../routines/AnycompatiblenonarrayIn.java | 76 + .../routines/AnycompatiblenonarrayOut.java | 76 + .../routines/AnycompatiblerangeIn.java | 119 + .../routines/AnycompatiblerangeOut.java | 76 + .../pg_catalog/routines/AnyelementIn.java | 76 + .../pg_catalog/routines/AnyelementOut.java | 76 + .../pg_catalog/routines/AnyenumIn.java | 76 + .../pg_catalog/routines/AnyenumOut.java | 76 + .../pg_catalog/routines/AnymultirangeIn.java | 119 + .../pg_catalog/routines/AnymultirangeOut.java | 76 + .../pg_catalog/routines/AnynonarrayIn.java | 76 + .../pg_catalog/routines/AnynonarrayOut.java | 76 + .../pg_catalog/routines/AnyrangeIn.java | 119 + .../pg_catalog/routines/AnyrangeOut.java | 76 + .../pg_catalog/routines/Anytextcat.java | 86 + .../db_beans/pg_catalog/routines/Area1.java | 66 + .../db_beans/pg_catalog/routines/Area2.java | 66 + .../db_beans/pg_catalog/routines/Area3.java | 66 + .../pg_catalog/routines/Areajoinsel.java | 161 + .../db_beans/pg_catalog/routines/Areasel.java | 134 + .../pg_catalog/routines/ArrayAgg1.java | 66 + .../pg_catalog/routines/ArrayAgg2.java | 59 + .../routines/ArrayAggArrayFinalfn.java | 87 + .../routines/ArrayAggArrayTransfn.java | 98 + .../pg_catalog/routines/ArrayAggFinalfn.java | 92 + .../pg_catalog/routines/ArrayAggTransfn.java | 103 + .../pg_catalog/routines/ArrayAppend.java | 103 + .../pg_catalog/routines/ArrayCat.java | 103 + .../pg_catalog/routines/ArrayDims.java | 58 + .../db_beans/pg_catalog/routines/ArrayEq.java | 79 + .../pg_catalog/routines/ArrayFill1.java | 87 + .../pg_catalog/routines/ArrayFill2.java | 108 + .../db_beans/pg_catalog/routines/ArrayGe.java | 79 + .../db_beans/pg_catalog/routines/ArrayGt.java | 79 + .../db_beans/pg_catalog/routines/ArrayIn.java | 107 + .../pg_catalog/routines/ArrayLarger.java | 79 + .../db_beans/pg_catalog/routines/ArrayLe.java | 79 + .../pg_catalog/routines/ArrayLength.java | 79 + .../pg_catalog/routines/ArrayLower.java | 79 + .../db_beans/pg_catalog/routines/ArrayLt.java | 79 + .../pg_catalog/routines/ArrayNdims.java | 58 + .../db_beans/pg_catalog/routines/ArrayNe.java | 79 + .../pg_catalog/routines/ArrayOut.java | 71 + .../pg_catalog/routines/ArrayPosition1.java | 93 + .../pg_catalog/routines/ArrayPosition2.java | 114 + .../pg_catalog/routines/ArrayPositions.java | 92 + .../pg_catalog/routines/ArrayPrepend.java | 103 + .../pg_catalog/routines/ArrayRecv.java | 107 + .../pg_catalog/routines/ArrayRemove.java | 103 + .../pg_catalog/routines/ArrayReplace.java | 130 + .../pg_catalog/routines/ArraySend.java | 58 + .../pg_catalog/routines/ArraySmaller.java | 79 + .../routines/ArraySubscriptHandler.java | 76 + .../pg_catalog/routines/ArrayToJson1.java | 60 + .../pg_catalog/routines/ArrayToJson2.java | 81 + .../pg_catalog/routines/ArrayToString1.java | 101 + .../pg_catalog/routines/ArrayToString2.java | 80 + .../pg_catalog/routines/ArrayToTsvector.java | 71 + .../pg_catalog/routines/ArrayTypanalyze.java | 65 + .../routines/ArrayUnnestSupport.java | 76 + .../pg_catalog/routines/ArrayUpper.java | 79 + .../pg_catalog/routines/Arraycontained.java | 79 + .../pg_catalog/routines/Arraycontains.java | 79 + .../pg_catalog/routines/Arraycontjoinsel.java | 161 + .../pg_catalog/routines/Arraycontsel.java | 134 + .../pg_catalog/routines/Arrayoverlap.java | 79 + .../db_beans/pg_catalog/routines/Ascii.java | 58 + .../db_beans/pg_catalog/routines/Asin.java | 58 + .../db_beans/pg_catalog/routines/Asind.java | 58 + .../db_beans/pg_catalog/routines/Asinh.java | 58 + .../db_beans/pg_catalog/routines/Atan.java | 58 + .../db_beans/pg_catalog/routines/Atan2.java | 79 + .../db_beans/pg_catalog/routines/Atan2d.java | 79 + .../db_beans/pg_catalog/routines/Atand.java | 58 + .../db_beans/pg_catalog/routines/Atanh.java | 58 + .../db_beans/pg_catalog/routines/Avg1.java | 61 + .../db_beans/pg_catalog/routines/Avg2.java | 61 + .../db_beans/pg_catalog/routines/Avg3.java | 61 + .../db_beans/pg_catalog/routines/Avg4.java | 61 + .../db_beans/pg_catalog/routines/Avg5.java | 59 + .../db_beans/pg_catalog/routines/Avg6.java | 59 + .../db_beans/pg_catalog/routines/Avg7.java | 60 + .../pg_catalog/routines/Bernoulli.java | 76 + .../pg_catalog/routines/Big5ToEucTw.java | 176 + .../pg_catalog/routines/Big5ToMic.java | 176 + .../pg_catalog/routines/Big5ToUtf8.java | 176 + .../BinaryUpgradeCreateEmptyExtension.java | 128 + .../BinaryUpgradeSetMissingValue.java | 72 + .../BinaryUpgradeSetNextArrayPgTypeOid.java | 44 + .../BinaryUpgradeSetNextHeapPgClassOid.java | 44 + .../BinaryUpgradeSetNextHeapRelfilenode.java | 44 + .../BinaryUpgradeSetNextIndexPgClassOid.java | 44 + .../BinaryUpgradeSetNextIndexRelfilenode.java | 44 + ...pgradeSetNextMultirangeArrayPgTypeOid.java | 44 + ...naryUpgradeSetNextMultirangePgTypeOid.java | 44 + .../BinaryUpgradeSetNextPgAuthidOid.java | 44 + .../BinaryUpgradeSetNextPgEnumOid.java | 44 + .../BinaryUpgradeSetNextPgTablespaceOid.java | 44 + .../BinaryUpgradeSetNextPgTypeOid.java | 44 + .../BinaryUpgradeSetNextToastPgClassOid.java | 44 + .../BinaryUpgradeSetNextToastRelfilenode.java | 44 + .../BinaryUpgradeSetRecordInitPrivs.java | 44 + .../db_beans/pg_catalog/routines/Bit1.java | 80 + .../db_beans/pg_catalog/routines/Bit2.java | 101 + .../db_beans/pg_catalog/routines/Bit3.java | 80 + .../db_beans/pg_catalog/routines/BitAnd1.java | 59 + .../db_beans/pg_catalog/routines/BitAnd2.java | 59 + .../db_beans/pg_catalog/routines/BitAnd3.java | 59 + .../db_beans/pg_catalog/routines/BitAnd4.java | 59 + .../pg_catalog/routines/BitCount1.java | 59 + .../pg_catalog/routines/BitCount2.java | 59 + .../db_beans/pg_catalog/routines/BitIn.java | 107 + .../pg_catalog/routines/BitLength1.java | 59 + .../pg_catalog/routines/BitLength2.java | 59 + .../pg_catalog/routines/BitLength3.java | 59 + .../db_beans/pg_catalog/routines/BitOr1.java | 59 + .../db_beans/pg_catalog/routines/BitOr2.java | 59 + .../db_beans/pg_catalog/routines/BitOr3.java | 59 + .../db_beans/pg_catalog/routines/BitOr4.java | 59 + .../db_beans/pg_catalog/routines/BitOut.java | 71 + .../db_beans/pg_catalog/routines/BitRecv.java | 107 + .../db_beans/pg_catalog/routines/BitSend.java | 58 + .../db_beans/pg_catalog/routines/BitXor1.java | 59 + .../db_beans/pg_catalog/routines/BitXor2.java | 59 + .../db_beans/pg_catalog/routines/BitXor3.java | 59 + .../db_beans/pg_catalog/routines/BitXor4.java | 59 + .../db_beans/pg_catalog/routines/Bitand.java | 79 + .../db_beans/pg_catalog/routines/Bitcat.java | 79 + .../db_beans/pg_catalog/routines/Bitcmp.java | 79 + .../db_beans/pg_catalog/routines/Biteq.java | 79 + .../db_beans/pg_catalog/routines/Bitge.java | 79 + .../db_beans/pg_catalog/routines/Bitgt.java | 79 + .../db_beans/pg_catalog/routines/Bitle.java | 79 + .../db_beans/pg_catalog/routines/Bitlt.java | 79 + .../db_beans/pg_catalog/routines/Bitne.java | 79 + .../db_beans/pg_catalog/routines/Bitnot.java | 58 + .../db_beans/pg_catalog/routines/Bitor.java | 79 + .../pg_catalog/routines/Bitshiftleft.java | 79 + .../pg_catalog/routines/Bitshiftright.java | 79 + .../pg_catalog/routines/Bittypmodin.java | 59 + .../pg_catalog/routines/Bittypmodout.java | 71 + .../db_beans/pg_catalog/routines/Bitxor.java | 79 + .../db_beans/pg_catalog/routines/Bool1.java | 59 + .../db_beans/pg_catalog/routines/Bool2.java | 60 + .../pg_catalog/routines/BoolAccum.java | 98 + .../pg_catalog/routines/BoolAccumInv.java | 98 + .../pg_catalog/routines/BoolAlltrue.java | 65 + .../db_beans/pg_catalog/routines/BoolAnd.java | 58 + .../pg_catalog/routines/BoolAnytrue.java | 65 + .../db_beans/pg_catalog/routines/BoolOr.java | 58 + .../pg_catalog/routines/BoolandStatefunc.java | 79 + .../db_beans/pg_catalog/routines/Booleq.java | 79 + .../db_beans/pg_catalog/routines/Boolge.java | 79 + .../db_beans/pg_catalog/routines/Boolgt.java | 79 + .../db_beans/pg_catalog/routines/Boolin.java | 65 + .../db_beans/pg_catalog/routines/Boolle.java | 79 + .../db_beans/pg_catalog/routines/Boollt.java | 79 + .../db_beans/pg_catalog/routines/Boolne.java | 79 + .../pg_catalog/routines/BoolorStatefunc.java | 79 + .../db_beans/pg_catalog/routines/Boolout.java | 71 + .../pg_catalog/routines/Boolrecv.java | 65 + .../pg_catalog/routines/Boolsend.java | 58 + .../pg_catalog/routines/BoundBox.java | 103 + .../db_beans/pg_catalog/routines/Box1.java | 104 + .../db_beans/pg_catalog/routines/Box2.java | 77 + .../db_beans/pg_catalog/routines/Box3.java | 77 + .../db_beans/pg_catalog/routines/Box4.java | 77 + .../pg_catalog/routines/BoxAbove.java | 92 + .../pg_catalog/routines/BoxAboveEq.java | 92 + .../db_beans/pg_catalog/routines/BoxAdd.java | 103 + .../pg_catalog/routines/BoxBelow.java | 92 + .../pg_catalog/routines/BoxBelowEq.java | 92 + .../pg_catalog/routines/BoxCenter.java | 76 + .../pg_catalog/routines/BoxContain.java | 92 + .../pg_catalog/routines/BoxContainPt.java | 92 + .../pg_catalog/routines/BoxContained.java | 92 + .../pg_catalog/routines/BoxDistance.java | 92 + .../db_beans/pg_catalog/routines/BoxDiv.java | 103 + .../db_beans/pg_catalog/routines/BoxEq.java | 92 + .../db_beans/pg_catalog/routines/BoxGe.java | 92 + .../db_beans/pg_catalog/routines/BoxGt.java | 92 + .../db_beans/pg_catalog/routines/BoxIn.java | 76 + .../pg_catalog/routines/BoxIntersect.java | 103 + .../db_beans/pg_catalog/routines/BoxLe.java | 92 + .../db_beans/pg_catalog/routines/BoxLeft.java | 92 + .../db_beans/pg_catalog/routines/BoxLt.java | 92 + .../db_beans/pg_catalog/routines/BoxMul.java | 103 + .../db_beans/pg_catalog/routines/BoxOut.java | 76 + .../pg_catalog/routines/BoxOverabove.java | 92 + .../pg_catalog/routines/BoxOverbelow.java | 92 + .../pg_catalog/routines/BoxOverlap.java | 92 + .../pg_catalog/routines/BoxOverleft.java | 92 + .../pg_catalog/routines/BoxOverright.java | 92 + .../db_beans/pg_catalog/routines/BoxRecv.java | 76 + .../pg_catalog/routines/BoxRight.java | 92 + .../db_beans/pg_catalog/routines/BoxSame.java | 92 + .../db_beans/pg_catalog/routines/BoxSend.java | 65 + .../db_beans/pg_catalog/routines/BoxSub.java | 103 + .../db_beans/pg_catalog/routines/Bpchar1.java | 59 + .../db_beans/pg_catalog/routines/Bpchar2.java | 101 + .../db_beans/pg_catalog/routines/Bpchar3.java | 59 + .../pg_catalog/routines/BpcharLarger.java | 79 + .../pg_catalog/routines/BpcharPatternGe.java | 79 + .../pg_catalog/routines/BpcharPatternGt.java | 79 + .../pg_catalog/routines/BpcharPatternLe.java | 79 + .../pg_catalog/routines/BpcharPatternLt.java | 79 + .../pg_catalog/routines/BpcharSmaller.java | 79 + .../routines/BpcharSortsupport.java | 49 + .../pg_catalog/routines/Bpcharcmp.java | 79 + .../pg_catalog/routines/Bpchareq.java | 79 + .../pg_catalog/routines/Bpcharge.java | 79 + .../pg_catalog/routines/Bpchargt.java | 79 + .../pg_catalog/routines/Bpchariclike.java | 79 + .../pg_catalog/routines/Bpcharicnlike.java | 79 + .../pg_catalog/routines/Bpcharicregexeq.java | 79 + .../pg_catalog/routines/Bpcharicregexne.java | 79 + .../pg_catalog/routines/Bpcharin.java | 107 + .../pg_catalog/routines/Bpcharle.java | 79 + .../pg_catalog/routines/Bpcharlike.java | 79 + .../pg_catalog/routines/Bpcharlt.java | 79 + .../pg_catalog/routines/Bpcharne.java | 79 + .../pg_catalog/routines/Bpcharnlike.java | 79 + .../pg_catalog/routines/Bpcharout.java | 71 + .../pg_catalog/routines/Bpcharrecv.java | 107 + .../pg_catalog/routines/Bpcharregexeq.java | 79 + .../pg_catalog/routines/Bpcharregexne.java | 79 + .../pg_catalog/routines/Bpcharsend.java | 58 + .../pg_catalog/routines/Bpchartypmodin.java | 59 + .../pg_catalog/routines/Bpchartypmodout.java | 71 + .../routines/BrinBloomAddValue.java | 146 + .../routines/BrinBloomConsistent.java | 140 + .../pg_catalog/routines/BrinBloomOpcinfo.java | 76 + .../pg_catalog/routines/BrinBloomOptions.java | 49 + .../routines/BrinBloomSummaryIn.java | 76 + .../routines/BrinBloomSummaryOut.java | 76 + .../routines/BrinBloomSummaryRecv.java | 76 + .../routines/BrinBloomSummarySend.java | 66 + .../pg_catalog/routines/BrinBloomUnion.java | 119 + .../routines/BrinDesummarizeRange.java | 63 + .../routines/BrinInclusionAddValue.java | 147 + .../routines/BrinInclusionConsistent.java | 120 + .../routines/BrinInclusionOpcinfo.java | 76 + .../routines/BrinInclusionUnion.java | 119 + .../routines/BrinMinmaxAddValue.java | 146 + .../routines/BrinMinmaxConsistent.java | 120 + .../routines/BrinMinmaxMultiAddValue.java | 147 + .../routines/BrinMinmaxMultiConsistent.java | 141 + .../routines/BrinMinmaxMultiDistanceDate.java | 93 + .../BrinMinmaxMultiDistanceFloat4.java | 93 + .../BrinMinmaxMultiDistanceFloat8.java | 93 + .../routines/BrinMinmaxMultiDistanceInet.java | 93 + .../routines/BrinMinmaxMultiDistanceInt2.java | 93 + .../routines/BrinMinmaxMultiDistanceInt4.java | 93 + .../routines/BrinMinmaxMultiDistanceInt8.java | 93 + .../BrinMinmaxMultiDistanceInterval.java | 93 + .../BrinMinmaxMultiDistanceMacaddr.java | 93 + .../BrinMinmaxMultiDistanceMacaddr8.java | 93 + .../BrinMinmaxMultiDistanceNumeric.java | 93 + .../BrinMinmaxMultiDistancePgLsn.java | 93 + .../routines/BrinMinmaxMultiDistanceTid.java | 93 + .../routines/BrinMinmaxMultiDistanceTime.java | 93 + .../BrinMinmaxMultiDistanceTimestamp.java | 93 + .../BrinMinmaxMultiDistanceTimetz.java | 93 + .../routines/BrinMinmaxMultiDistanceUuid.java | 93 + .../routines/BrinMinmaxMultiOpcinfo.java | 76 + .../routines/BrinMinmaxMultiOptions.java | 49 + .../routines/BrinMinmaxMultiSummaryIn.java | 76 + .../routines/BrinMinmaxMultiSummaryOut.java | 76 + .../routines/BrinMinmaxMultiSummaryRecv.java | 76 + .../routines/BrinMinmaxMultiSummarySend.java | 66 + .../routines/BrinMinmaxMultiUnion.java | 120 + .../routines/BrinMinmaxOpcinfo.java | 76 + .../pg_catalog/routines/BrinMinmaxUnion.java | 119 + .../routines/BrinSummarizeNewValues.java | 66 + .../routines/BrinSummarizeRange.java | 86 + .../pg_catalog/routines/Brinhandler.java | 76 + .../pg_catalog/routines/Broadcast.java | 76 + .../pg_catalog/routines/Btarraycmp.java | 79 + .../pg_catalog/routines/Btboolcmp.java | 79 + .../routines/BtbpcharPatternCmp.java | 79 + .../routines/BtbpcharPatternSortsupport.java | 49 + .../pg_catalog/routines/Btcharcmp.java | 79 + .../pg_catalog/routines/Btequalimage.java | 58 + .../pg_catalog/routines/Btfloat48cmp.java | 79 + .../pg_catalog/routines/Btfloat4cmp.java | 79 + .../routines/Btfloat4sortsupport.java | 49 + .../pg_catalog/routines/Btfloat84cmp.java | 79 + .../pg_catalog/routines/Btfloat8cmp.java | 79 + .../routines/Btfloat8sortsupport.java | 49 + .../pg_catalog/routines/Bthandler.java | 76 + .../pg_catalog/routines/Btint24cmp.java | 79 + .../pg_catalog/routines/Btint28cmp.java | 79 + .../pg_catalog/routines/Btint2cmp.java | 79 + .../routines/Btint2sortsupport.java | 49 + .../pg_catalog/routines/Btint42cmp.java | 79 + .../pg_catalog/routines/Btint48cmp.java | 79 + .../pg_catalog/routines/Btint4cmp.java | 79 + .../routines/Btint4sortsupport.java | 49 + .../pg_catalog/routines/Btint82cmp.java | 79 + .../pg_catalog/routines/Btint84cmp.java | 79 + .../pg_catalog/routines/Btint8cmp.java | 79 + .../routines/Btint8sortsupport.java | 49 + .../pg_catalog/routines/Btnamecmp.java | 79 + .../routines/Btnamesortsupport.java | 49 + .../pg_catalog/routines/Btnametextcmp.java | 79 + .../pg_catalog/routines/Btoidcmp.java | 79 + .../pg_catalog/routines/Btoidsortsupport.java | 49 + .../pg_catalog/routines/Btoidvectorcmp.java | 80 + .../pg_catalog/routines/Btrecordcmp.java | 80 + .../pg_catalog/routines/Btrecordimagecmp.java | 80 + .../db_beans/pg_catalog/routines/Btrim1.java | 80 + .../db_beans/pg_catalog/routines/Btrim2.java | 80 + .../db_beans/pg_catalog/routines/Btrim3.java | 59 + .../pg_catalog/routines/BttextPatternCmp.java | 79 + .../routines/BttextPatternSortsupport.java | 49 + .../pg_catalog/routines/Bttextcmp.java | 79 + .../pg_catalog/routines/Bttextnamecmp.java | 79 + .../routines/Bttextsortsupport.java | 49 + .../pg_catalog/routines/Bttidcmp.java | 79 + .../routines/Btvarstrequalimage.java | 58 + .../pg_catalog/routines/ByteaSortsupport.java | 49 + .../routines/ByteaStringAggFinalfn.java | 66 + .../routines/ByteaStringAggTransfn.java | 119 + .../pg_catalog/routines/Byteacat.java | 79 + .../pg_catalog/routines/Byteacmp.java | 79 + .../db_beans/pg_catalog/routines/Byteaeq.java | 79 + .../db_beans/pg_catalog/routines/Byteage.java | 79 + .../db_beans/pg_catalog/routines/Byteagt.java | 79 + .../db_beans/pg_catalog/routines/Byteain.java | 65 + .../db_beans/pg_catalog/routines/Byteale.java | 79 + .../pg_catalog/routines/Bytealike.java | 79 + .../db_beans/pg_catalog/routines/Bytealt.java | 79 + .../db_beans/pg_catalog/routines/Byteane.java | 79 + .../pg_catalog/routines/Byteanlike.java | 79 + .../pg_catalog/routines/Byteaout.java | 71 + .../pg_catalog/routines/Bytearecv.java | 65 + .../pg_catalog/routines/Byteasend.java | 58 + .../pg_catalog/routines/Cardinality.java | 58 + .../db_beans/pg_catalog/routines/CashCmp.java | 92 + .../pg_catalog/routines/CashDivCash.java | 92 + .../pg_catalog/routines/CashDivFlt4.java | 98 + .../pg_catalog/routines/CashDivFlt8.java | 98 + .../pg_catalog/routines/CashDivInt2.java | 98 + .../pg_catalog/routines/CashDivInt4.java | 98 + .../pg_catalog/routines/CashDivInt8.java | 98 + .../db_beans/pg_catalog/routines/CashEq.java | 92 + .../db_beans/pg_catalog/routines/CashGe.java | 92 + .../db_beans/pg_catalog/routines/CashGt.java | 92 + .../db_beans/pg_catalog/routines/CashIn.java | 76 + .../db_beans/pg_catalog/routines/CashLe.java | 92 + .../db_beans/pg_catalog/routines/CashLt.java | 92 + .../db_beans/pg_catalog/routines/CashMi.java | 103 + .../pg_catalog/routines/CashMulFlt4.java | 98 + .../pg_catalog/routines/CashMulFlt8.java | 98 + .../pg_catalog/routines/CashMulInt2.java | 98 + .../pg_catalog/routines/CashMulInt4.java | 98 + .../pg_catalog/routines/CashMulInt8.java | 98 + .../db_beans/pg_catalog/routines/CashNe.java | 92 + .../db_beans/pg_catalog/routines/CashOut.java | 76 + .../db_beans/pg_catalog/routines/CashPl.java | 103 + .../pg_catalog/routines/CashRecv.java | 76 + .../pg_catalog/routines/CashSend.java | 65 + .../pg_catalog/routines/CashWords.java | 65 + .../pg_catalog/routines/Cashlarger.java | 103 + .../pg_catalog/routines/Cashsmaller.java | 103 + .../db_beans/pg_catalog/routines/Cbrt.java | 58 + .../db_beans/pg_catalog/routines/Ceil1.java | 61 + .../db_beans/pg_catalog/routines/Ceil2.java | 59 + .../pg_catalog/routines/Ceiling1.java | 61 + .../pg_catalog/routines/Ceiling2.java | 59 + .../db_beans/pg_catalog/routines/Center1.java | 77 + .../db_beans/pg_catalog/routines/Center2.java | 77 + .../db_beans/pg_catalog/routines/Char1.java | 59 + .../db_beans/pg_catalog/routines/Char2.java | 59 + .../pg_catalog/routines/CharLength1.java | 59 + .../pg_catalog/routines/CharLength2.java | 59 + .../pg_catalog/routines/CharacterLength1.java | 59 + .../pg_catalog/routines/CharacterLength2.java | 59 + .../db_beans/pg_catalog/routines/Chareq.java | 79 + .../db_beans/pg_catalog/routines/Charge.java | 79 + .../db_beans/pg_catalog/routines/Chargt.java | 79 + .../db_beans/pg_catalog/routines/Charin.java | 65 + .../db_beans/pg_catalog/routines/Charle.java | 79 + .../db_beans/pg_catalog/routines/Charlt.java | 79 + .../db_beans/pg_catalog/routines/Charne.java | 79 + .../db_beans/pg_catalog/routines/Charout.java | 71 + .../pg_catalog/routines/Charrecv.java | 65 + .../pg_catalog/routines/Charsend.java | 58 + .../db_beans/pg_catalog/routines/Chr.java | 58 + .../db_beans/pg_catalog/routines/Cideq.java | 79 + .../db_beans/pg_catalog/routines/Cidin.java | 65 + .../db_beans/pg_catalog/routines/Cidout.java | 71 + .../db_beans/pg_catalog/routines/Cidr.java | 76 + .../db_beans/pg_catalog/routines/CidrIn.java | 76 + .../db_beans/pg_catalog/routines/CidrOut.java | 76 + .../pg_catalog/routines/CidrRecv.java | 76 + .../pg_catalog/routines/CidrSend.java | 65 + .../db_beans/pg_catalog/routines/Cidrecv.java | 65 + .../db_beans/pg_catalog/routines/Cidsend.java | 58 + .../db_beans/pg_catalog/routines/Circle1.java | 99 + .../db_beans/pg_catalog/routines/Circle2.java | 77 + .../db_beans/pg_catalog/routines/Circle3.java | 77 + .../pg_catalog/routines/CircleAbove.java | 92 + .../pg_catalog/routines/CircleAddPt.java | 103 + .../pg_catalog/routines/CircleBelow.java | 92 + .../pg_catalog/routines/CircleCenter.java | 76 + .../pg_catalog/routines/CircleContain.java | 92 + .../pg_catalog/routines/CircleContainPt.java | 92 + .../pg_catalog/routines/CircleContained.java | 92 + .../pg_catalog/routines/CircleDistance.java | 92 + .../pg_catalog/routines/CircleDivPt.java | 103 + .../pg_catalog/routines/CircleEq.java | 92 + .../pg_catalog/routines/CircleGe.java | 92 + .../pg_catalog/routines/CircleGt.java | 92 + .../pg_catalog/routines/CircleIn.java | 76 + .../pg_catalog/routines/CircleLe.java | 92 + .../pg_catalog/routines/CircleLeft.java | 92 + .../pg_catalog/routines/CircleLt.java | 92 + .../pg_catalog/routines/CircleMulPt.java | 103 + .../pg_catalog/routines/CircleNe.java | 92 + .../pg_catalog/routines/CircleOut.java | 76 + .../pg_catalog/routines/CircleOverabove.java | 92 + .../pg_catalog/routines/CircleOverbelow.java | 92 + .../pg_catalog/routines/CircleOverlap.java | 92 + .../pg_catalog/routines/CircleOverleft.java | 92 + .../pg_catalog/routines/CircleOverright.java | 92 + .../pg_catalog/routines/CircleRecv.java | 76 + .../pg_catalog/routines/CircleRight.java | 92 + .../pg_catalog/routines/CircleSame.java | 92 + .../pg_catalog/routines/CircleSend.java | 65 + .../pg_catalog/routines/CircleSubPt.java | 103 + .../pg_catalog/routines/ClockTimestamp.java | 38 + .../db_beans/pg_catalog/routines/CloseLs.java | 103 + .../pg_catalog/routines/CloseLseg.java | 103 + .../db_beans/pg_catalog/routines/ClosePb.java | 103 + .../db_beans/pg_catalog/routines/ClosePl.java | 103 + .../db_beans/pg_catalog/routines/ClosePs.java | 103 + .../db_beans/pg_catalog/routines/CloseSb.java | 103 + .../pg_catalog/routines/ColDescription.java | 79 + .../db_beans/pg_catalog/routines/Concat.java | 64 + .../pg_catalog/routines/ConcatWs.java | 85 + .../pg_catalog/routines/Contjoinsel.java | 161 + .../db_beans/pg_catalog/routines/Contsel.java | 134 + .../db_beans/pg_catalog/routines/Convert.java | 100 + .../pg_catalog/routines/ConvertFrom.java | 79 + .../pg_catalog/routines/ConvertTo.java | 79 + .../db_beans/pg_catalog/routines/Corr.java | 79 + .../db_beans/pg_catalog/routines/Cos.java | 58 + .../db_beans/pg_catalog/routines/Cosd.java | 58 + .../db_beans/pg_catalog/routines/Cosh.java | 58 + .../db_beans/pg_catalog/routines/Cot.java | 58 + .../db_beans/pg_catalog/routines/Cotd.java | 58 + .../db_beans/pg_catalog/routines/Count1.java | 65 + .../db_beans/pg_catalog/routines/Count2.java | 37 + .../pg_catalog/routines/CovarPop.java | 79 + .../pg_catalog/routines/CovarSamp.java | 79 + .../pg_catalog/routines/CstringIn.java | 76 + .../pg_catalog/routines/CstringOut.java | 76 + .../pg_catalog/routines/CstringRecv.java | 76 + .../pg_catalog/routines/CstringSend.java | 65 + .../pg_catalog/routines/CumeDist1.java | 37 + .../pg_catalog/routines/CumeDist2.java | 65 + .../pg_catalog/routines/CumeDistFinal.java | 92 + .../pg_catalog/routines/CurrentDatabase.java | 36 + .../pg_catalog/routines/CurrentQuery.java | 36 + .../pg_catalog/routines/CurrentSchema.java | 36 + .../pg_catalog/routines/CurrentSchemas.java | 58 + .../pg_catalog/routines/CurrentSetting1.java | 59 + .../pg_catalog/routines/CurrentSetting2.java | 80 + .../pg_catalog/routines/CurrentUser.java | 36 + .../pg_catalog/routines/Currtid2.java | 79 + .../db_beans/pg_catalog/routines/Currval.java | 65 + .../pg_catalog/routines/CursorToXml.java | 145 + .../routines/CursorToXmlschema.java | 124 + .../pg_catalog/routines/DatabaseToXml.java | 101 + .../routines/DatabaseToXmlAndXmlschema.java | 105 + .../routines/DatabaseToXmlschema.java | 101 + .../db_beans/pg_catalog/routines/Date1.java | 62 + .../db_beans/pg_catalog/routines/Date2.java | 62 + .../pg_catalog/routines/DateBin1.java | 104 + .../pg_catalog/routines/DateBin2.java | 104 + .../db_beans/pg_catalog/routines/DateCmp.java | 81 + .../pg_catalog/routines/DateCmpTimestamp.java | 82 + .../routines/DateCmpTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateEq.java | 81 + .../pg_catalog/routines/DateEqTimestamp.java | 82 + .../routines/DateEqTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateGe.java | 81 + .../pg_catalog/routines/DateGeTimestamp.java | 82 + .../routines/DateGeTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateGt.java | 81 + .../pg_catalog/routines/DateGtTimestamp.java | 82 + .../routines/DateGtTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateIn.java | 67 + .../pg_catalog/routines/DateLarger.java | 81 + .../db_beans/pg_catalog/routines/DateLe.java | 81 + .../pg_catalog/routines/DateLeTimestamp.java | 82 + .../routines/DateLeTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateLt.java | 81 + .../pg_catalog/routines/DateLtTimestamp.java | 82 + .../routines/DateLtTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateMi.java | 81 + .../pg_catalog/routines/DateMiInterval.java | 83 + .../db_beans/pg_catalog/routines/DateMii.java | 81 + .../db_beans/pg_catalog/routines/DateNe.java | 81 + .../pg_catalog/routines/DateNeTimestamp.java | 82 + .../routines/DateNeTimestamptz.java | 82 + .../db_beans/pg_catalog/routines/DateOut.java | 73 + .../pg_catalog/routines/DatePart1.java | 82 + .../pg_catalog/routines/DatePart2.java | 81 + .../pg_catalog/routines/DatePart3.java | 82 + .../pg_catalog/routines/DatePart4.java | 82 + .../pg_catalog/routines/DatePart5.java | 82 + .../pg_catalog/routines/DatePart6.java | 82 + .../pg_catalog/routines/DatePlInterval.java | 83 + .../db_beans/pg_catalog/routines/DatePli.java | 81 + .../pg_catalog/routines/DateRecv.java | 67 + .../pg_catalog/routines/DateSend.java | 60 + .../pg_catalog/routines/DateSmaller.java | 81 + .../pg_catalog/routines/DateSortsupport.java | 49 + .../pg_catalog/routines/DateTrunc1.java | 82 + .../pg_catalog/routines/DateTrunc2.java | 81 + .../pg_catalog/routines/DateTrunc3.java | 103 + .../pg_catalog/routines/DateTrunc4.java | 82 + .../pg_catalog/routines/Datemultirange1.java | 49 + .../pg_catalog/routines/Datemultirange2.java | 77 + .../pg_catalog/routines/Datemultirange3.java | 71 + .../pg_catalog/routines/Daterange1.java | 95 + .../pg_catalog/routines/Daterange2.java | 116 + .../routines/DaterangeCanonical.java | 76 + .../pg_catalog/routines/DaterangeSubdiff.java | 81 + .../pg_catalog/routines/DatetimePl.java | 83 + .../pg_catalog/routines/DatetimetzPl.java | 83 + .../db_beans/pg_catalog/routines/Dcbrt.java | 58 + .../db_beans/pg_catalog/routines/Decode.java | 79 + .../db_beans/pg_catalog/routines/Degrees.java | 58 + .../pg_catalog/routines/DenseRank1.java | 37 + .../pg_catalog/routines/DenseRank2.java | 65 + .../pg_catalog/routines/DenseRankFinal.java | 92 + .../db_beans/pg_catalog/routines/Dexp.java | 58 + .../pg_catalog/routines/Diagonal.java | 76 + .../pg_catalog/routines/Diameter.java | 65 + .../pg_catalog/routines/DispellInit.java | 76 + .../pg_catalog/routines/DispellLexize.java | 157 + .../db_beans/pg_catalog/routines/DistBp.java | 92 + .../db_beans/pg_catalog/routines/DistBs.java | 92 + .../pg_catalog/routines/DistCpoint.java | 92 + .../pg_catalog/routines/DistCpoly.java | 92 + .../db_beans/pg_catalog/routines/DistLp.java | 92 + .../db_beans/pg_catalog/routines/DistLs.java | 92 + .../pg_catalog/routines/DistPathp.java | 92 + .../db_beans/pg_catalog/routines/DistPb.java | 92 + .../db_beans/pg_catalog/routines/DistPc.java | 92 + .../db_beans/pg_catalog/routines/DistPl.java | 92 + .../pg_catalog/routines/DistPolyc.java | 92 + .../pg_catalog/routines/DistPolyp.java | 92 + .../pg_catalog/routines/DistPpath.java | 92 + .../pg_catalog/routines/DistPpoly.java | 92 + .../db_beans/pg_catalog/routines/DistPs.java | 92 + .../db_beans/pg_catalog/routines/DistSb.java | 92 + .../db_beans/pg_catalog/routines/DistSl.java | 92 + .../db_beans/pg_catalog/routines/DistSp.java | 92 + .../db_beans/pg_catalog/routines/Div.java | 81 + .../db_beans/pg_catalog/routines/Dlog1.java | 58 + .../db_beans/pg_catalog/routines/Dlog10.java | 58 + .../pg_catalog/routines/DomainIn.java | 119 + .../pg_catalog/routines/DomainRecv.java | 119 + .../db_beans/pg_catalog/routines/Dpow.java | 79 + .../db_beans/pg_catalog/routines/Dround.java | 58 + .../pg_catalog/routines/DsimpleInit.java | 76 + .../pg_catalog/routines/DsimpleLexize.java | 157 + .../pg_catalog/routines/DsnowballInit.java | 76 + .../pg_catalog/routines/DsnowballLexize.java | 157 + .../db_beans/pg_catalog/routines/Dsqrt.java | 58 + .../pg_catalog/routines/DsynonymInit.java | 76 + .../pg_catalog/routines/DsynonymLexize.java | 157 + .../db_beans/pg_catalog/routines/Dtrunc.java | 58 + .../routines/ElemContainedByMultirange.java | 93 + .../routines/ElemContainedByRange.java | 93 + .../db_beans/pg_catalog/routines/Encode.java | 79 + .../db_beans/pg_catalog/routines/EnumCmp.java | 92 + .../db_beans/pg_catalog/routines/EnumEq.java | 92 + .../pg_catalog/routines/EnumFirst.java | 76 + .../db_beans/pg_catalog/routines/EnumGe.java | 92 + .../db_beans/pg_catalog/routines/EnumGt.java | 92 + .../db_beans/pg_catalog/routines/EnumIn.java | 98 + .../pg_catalog/routines/EnumLarger.java | 103 + .../pg_catalog/routines/EnumLast.java | 76 + .../db_beans/pg_catalog/routines/EnumLe.java | 92 + .../db_beans/pg_catalog/routines/EnumLt.java | 92 + .../db_beans/pg_catalog/routines/EnumNe.java | 92 + .../db_beans/pg_catalog/routines/EnumOut.java | 76 + .../pg_catalog/routines/EnumRange1.java | 93 + .../pg_catalog/routines/EnumRange2.java | 66 + .../pg_catalog/routines/EnumRecv.java | 98 + .../pg_catalog/routines/EnumSend.java | 65 + .../pg_catalog/routines/EnumSmaller.java | 103 + .../pg_catalog/routines/Eqjoinsel.java | 161 + .../db_beans/pg_catalog/routines/Eqsel.java | 134 + .../pg_catalog/routines/EucCnToMic.java | 176 + .../pg_catalog/routines/EucCnToUtf8.java | 176 + .../routines/EucJis_2004ToShiftJis_2004.java | 177 + .../routines/EucJis_2004ToUtf8.java | 176 + .../pg_catalog/routines/EucJpToMic.java | 176 + .../pg_catalog/routines/EucJpToSjis.java | 176 + .../pg_catalog/routines/EucJpToUtf8.java | 176 + .../pg_catalog/routines/EucKrToMic.java | 176 + .../pg_catalog/routines/EucKrToUtf8.java | 176 + .../pg_catalog/routines/EucTwToBig5.java | 176 + .../pg_catalog/routines/EucTwToMic.java | 176 + .../pg_catalog/routines/EucTwToUtf8.java | 176 + .../pg_catalog/routines/EventTriggerIn.java | 76 + .../pg_catalog/routines/EventTriggerOut.java | 76 + .../db_beans/pg_catalog/routines/Every.java | 58 + .../db_beans/pg_catalog/routines/Exp1.java | 59 + .../db_beans/pg_catalog/routines/Exp2.java | 61 + .../pg_catalog/routines/Extract1.java | 83 + .../pg_catalog/routines/Extract2.java | 83 + .../pg_catalog/routines/Extract3.java | 83 + .../pg_catalog/routines/Extract4.java | 83 + .../pg_catalog/routines/Extract5.java | 83 + .../pg_catalog/routines/Extract6.java | 83 + .../pg_catalog/routines/Factorial.java | 60 + .../db_beans/pg_catalog/routines/Family.java | 65 + .../pg_catalog/routines/FdwHandlerIn.java | 76 + .../pg_catalog/routines/FdwHandlerOut.java | 76 + .../pg_catalog/routines/FirstValue.java | 76 + .../db_beans/pg_catalog/routines/Float41.java | 61 + .../db_beans/pg_catalog/routines/Float42.java | 59 + .../db_beans/pg_catalog/routines/Float43.java | 59 + .../db_beans/pg_catalog/routines/Float44.java | 59 + .../db_beans/pg_catalog/routines/Float45.java | 60 + .../db_beans/pg_catalog/routines/Float46.java | 59 + .../pg_catalog/routines/Float48div.java | 79 + .../pg_catalog/routines/Float48eq.java | 79 + .../pg_catalog/routines/Float48ge.java | 79 + .../pg_catalog/routines/Float48gt.java | 79 + .../pg_catalog/routines/Float48le.java | 79 + .../pg_catalog/routines/Float48lt.java | 79 + .../pg_catalog/routines/Float48mi.java | 79 + .../pg_catalog/routines/Float48mul.java | 79 + .../pg_catalog/routines/Float48ne.java | 79 + .../pg_catalog/routines/Float48pl.java | 79 + .../pg_catalog/routines/Float4Accum.java | 79 + .../pg_catalog/routines/Float4abs.java | 58 + .../pg_catalog/routines/Float4div.java | 79 + .../pg_catalog/routines/Float4eq.java | 79 + .../pg_catalog/routines/Float4ge.java | 79 + .../pg_catalog/routines/Float4gt.java | 79 + .../pg_catalog/routines/Float4in.java | 65 + .../pg_catalog/routines/Float4larger.java | 79 + .../pg_catalog/routines/Float4le.java | 79 + .../pg_catalog/routines/Float4lt.java | 79 + .../pg_catalog/routines/Float4mi.java | 79 + .../pg_catalog/routines/Float4mul.java | 79 + .../pg_catalog/routines/Float4ne.java | 79 + .../pg_catalog/routines/Float4out.java | 71 + .../pg_catalog/routines/Float4pl.java | 79 + .../pg_catalog/routines/Float4recv.java | 65 + .../pg_catalog/routines/Float4send.java | 58 + .../pg_catalog/routines/Float4smaller.java | 79 + .../pg_catalog/routines/Float4um.java | 58 + .../pg_catalog/routines/Float4up.java | 58 + .../db_beans/pg_catalog/routines/Float81.java | 61 + .../db_beans/pg_catalog/routines/Float82.java | 59 + .../db_beans/pg_catalog/routines/Float83.java | 60 + .../db_beans/pg_catalog/routines/Float84.java | 59 + .../pg_catalog/routines/Float84div.java | 79 + .../pg_catalog/routines/Float84eq.java | 79 + .../pg_catalog/routines/Float84ge.java | 79 + .../pg_catalog/routines/Float84gt.java | 79 + .../pg_catalog/routines/Float84le.java | 79 + .../pg_catalog/routines/Float84lt.java | 79 + .../pg_catalog/routines/Float84mi.java | 79 + .../pg_catalog/routines/Float84mul.java | 79 + .../pg_catalog/routines/Float84ne.java | 79 + .../pg_catalog/routines/Float84pl.java | 79 + .../db_beans/pg_catalog/routines/Float85.java | 59 + .../db_beans/pg_catalog/routines/Float86.java | 59 + .../pg_catalog/routines/Float8Accum.java | 79 + .../pg_catalog/routines/Float8Avg.java | 58 + .../pg_catalog/routines/Float8Combine.java | 79 + .../pg_catalog/routines/Float8Corr.java | 58 + .../pg_catalog/routines/Float8CovarPop.java | 58 + .../pg_catalog/routines/Float8CovarSamp.java | 58 + .../pg_catalog/routines/Float8RegrAccum.java | 100 + .../pg_catalog/routines/Float8RegrAvgx.java | 58 + .../pg_catalog/routines/Float8RegrAvgy.java | 58 + .../routines/Float8RegrCombine.java | 79 + .../routines/Float8RegrIntercept.java | 58 + .../pg_catalog/routines/Float8RegrR2.java | 58 + .../pg_catalog/routines/Float8RegrSlope.java | 58 + .../pg_catalog/routines/Float8RegrSxx.java | 58 + .../pg_catalog/routines/Float8RegrSxy.java | 58 + .../pg_catalog/routines/Float8RegrSyy.java | 58 + .../pg_catalog/routines/Float8StddevPop.java | 58 + .../pg_catalog/routines/Float8StddevSamp.java | 58 + .../pg_catalog/routines/Float8VarPop.java | 58 + .../pg_catalog/routines/Float8VarSamp.java | 58 + .../pg_catalog/routines/Float8abs.java | 58 + .../pg_catalog/routines/Float8div.java | 79 + .../pg_catalog/routines/Float8eq.java | 79 + .../pg_catalog/routines/Float8ge.java | 79 + .../pg_catalog/routines/Float8gt.java | 79 + .../pg_catalog/routines/Float8in.java | 65 + .../pg_catalog/routines/Float8larger.java | 79 + .../pg_catalog/routines/Float8le.java | 79 + .../pg_catalog/routines/Float8lt.java | 79 + .../pg_catalog/routines/Float8mi.java | 79 + .../pg_catalog/routines/Float8mul.java | 79 + .../pg_catalog/routines/Float8ne.java | 79 + .../pg_catalog/routines/Float8out.java | 71 + .../pg_catalog/routines/Float8pl.java | 79 + .../pg_catalog/routines/Float8recv.java | 65 + .../pg_catalog/routines/Float8send.java | 58 + .../pg_catalog/routines/Float8smaller.java | 79 + .../pg_catalog/routines/Float8um.java | 58 + .../pg_catalog/routines/Float8up.java | 58 + .../db_beans/pg_catalog/routines/Floor1.java | 61 + .../db_beans/pg_catalog/routines/Floor2.java | 59 + .../pg_catalog/routines/Flt4MulCash.java | 98 + .../pg_catalog/routines/Flt8MulCash.java | 98 + .../pg_catalog/routines/FmgrCValidator.java | 43 + .../routines/FmgrInternalValidator.java | 43 + .../pg_catalog/routines/FmgrSqlValidator.java | 43 + .../db_beans/pg_catalog/routines/Format1.java | 86 + .../db_beans/pg_catalog/routines/Format2.java | 59 + .../pg_catalog/routines/FormatType.java | 79 + .../pg_catalog/routines/Gb18030ToUtf8.java | 176 + .../pg_catalog/routines/GbkToUtf8.java | 176 + .../db_beans/pg_catalog/routines/Gcd1.java | 80 + .../db_beans/pg_catalog/routines/Gcd2.java | 80 + .../db_beans/pg_catalog/routines/Gcd3.java | 82 + .../pg_catalog/routines/GenRandomUuid.java | 38 + .../routines/GenerateSeriesInt4Support.java | 76 + .../routines/GenerateSeriesInt8Support.java | 76 + .../db_beans/pg_catalog/routines/GetBit1.java | 80 + .../db_beans/pg_catalog/routines/GetBit2.java | 80 + .../db_beans/pg_catalog/routines/GetByte.java | 79 + .../routines/GetCurrentTsConfig.java | 48 + .../routines/Getdatabaseencoding.java | 36 + .../pg_catalog/routines/Getpgusername.java | 36 + .../routines/GinCleanPendingList.java | 66 + .../pg_catalog/routines/GinCmpPrefix.java | 128 + .../pg_catalog/routines/GinCmpTslexeme.java | 79 + .../pg_catalog/routines/GinCompareJsonb.java | 79 + .../routines/GinConsistentJsonb.java | 237 + .../routines/GinConsistentJsonbPath.java | 238 + .../pg_catalog/routines/GinExtractJsonb.java | 126 + .../routines/GinExtractJsonbPath.java | 126 + .../routines/GinExtractJsonbQuery.java | 228 + .../routines/GinExtractJsonbQueryPath.java | 228 + .../routines/GinExtractTsquery1.java | 180 + .../routines/GinExtractTsquery2.java | 234 + .../routines/GinExtractTsquery3.java | 234 + .../routines/GinExtractTsvector1.java | 104 + .../routines/GinExtractTsvector2.java | 131 + .../routines/GinTriconsistentJsonb.java | 211 + .../routines/GinTriconsistentJsonbPath.java | 211 + .../routines/GinTsqueryConsistent1.java | 190 + .../routines/GinTsqueryConsistent2.java | 244 + .../routines/GinTsqueryConsistent3.java | 244 + .../routines/GinTsqueryTriconsistent.java | 216 + .../routines/Ginarrayconsistent.java | 236 + .../pg_catalog/routines/Ginarrayextract1.java | 126 + .../pg_catalog/routines/Ginarrayextract2.java | 99 + .../routines/Ginarraytriconsistent.java | 209 + .../pg_catalog/routines/Ginhandler.java | 76 + .../routines/Ginqueryarrayextract.java | 227 + .../routines/GistBoxConsistent.java | 161 + .../pg_catalog/routines/GistBoxDistance.java | 161 + .../pg_catalog/routines/GistBoxPenalty.java | 130 + .../pg_catalog/routines/GistBoxPicksplit.java | 103 + .../pg_catalog/routines/GistBoxSame.java | 130 + .../pg_catalog/routines/GistBoxUnion.java | 103 + .../routines/GistCircleCompress.java | 76 + .../routines/GistCircleConsistent.java | 162 + .../routines/GistCircleDistance.java | 161 + .../routines/GistPointCompress.java | 76 + .../routines/GistPointConsistent.java | 161 + .../routines/GistPointDistance.java | 161 + .../pg_catalog/routines/GistPointFetch.java | 76 + .../routines/GistPointSortsupport.java | 49 + .../pg_catalog/routines/GistPolyCompress.java | 76 + .../routines/GistPolyConsistent.java | 161 + .../pg_catalog/routines/GistPolyDistance.java | 161 + .../pg_catalog/routines/Gisthandler.java | 76 + .../pg_catalog/routines/GtsqueryCompress.java | 76 + .../routines/GtsqueryConsistent1.java | 162 + .../routines/GtsqueryConsistent2.java | 162 + .../pg_catalog/routines/GtsqueryPenalty.java | 130 + .../routines/GtsqueryPicksplit.java | 103 + .../pg_catalog/routines/GtsquerySame.java | 119 + .../pg_catalog/routines/GtsqueryUnion.java | 92 + .../routines/GtsvectorCompress.java | 76 + .../routines/GtsvectorConsistent1.java | 162 + .../routines/GtsvectorConsistent2.java | 162 + .../routines/GtsvectorDecompress.java | 76 + .../pg_catalog/routines/GtsvectorOptions.java | 49 + .../pg_catalog/routines/GtsvectorPenalty.java | 130 + .../routines/GtsvectorPicksplit.java | 103 + .../pg_catalog/routines/GtsvectorSame.java | 130 + .../pg_catalog/routines/GtsvectorUnion.java | 103 + .../pg_catalog/routines/Gtsvectorin.java | 76 + .../pg_catalog/routines/Gtsvectorout.java | 76 + .../routines/HasAnyColumnPrivilege1.java | 102 + .../routines/HasAnyColumnPrivilege2.java | 102 + .../routines/HasAnyColumnPrivilege3.java | 102 + .../routines/HasAnyColumnPrivilege4.java | 102 + .../routines/HasAnyColumnPrivilege5.java | 81 + .../routines/HasAnyColumnPrivilege6.java | 81 + .../routines/HasColumnPrivilege1.java | 122 + .../routines/HasColumnPrivilege10.java | 101 + .../routines/HasColumnPrivilege11.java | 101 + .../routines/HasColumnPrivilege12.java | 101 + .../routines/HasColumnPrivilege2.java | 122 + .../routines/HasColumnPrivilege3.java | 122 + .../routines/HasColumnPrivilege4.java | 122 + .../routines/HasColumnPrivilege5.java | 122 + .../routines/HasColumnPrivilege6.java | 122 + .../routines/HasColumnPrivilege7.java | 122 + .../routines/HasColumnPrivilege8.java | 122 + .../routines/HasColumnPrivilege9.java | 101 + .../routines/HasDatabasePrivilege1.java | 102 + .../routines/HasDatabasePrivilege2.java | 102 + .../routines/HasDatabasePrivilege3.java | 102 + .../routines/HasDatabasePrivilege4.java | 102 + .../routines/HasDatabasePrivilege5.java | 81 + .../routines/HasDatabasePrivilege6.java | 81 + .../HasForeignDataWrapperPrivilege1.java | 105 + .../HasForeignDataWrapperPrivilege2.java | 105 + .../HasForeignDataWrapperPrivilege3.java | 105 + .../HasForeignDataWrapperPrivilege4.java | 105 + .../HasForeignDataWrapperPrivilege5.java | 83 + .../HasForeignDataWrapperPrivilege6.java | 83 + .../routines/HasFunctionPrivilege1.java | 102 + .../routines/HasFunctionPrivilege2.java | 102 + .../routines/HasFunctionPrivilege3.java | 102 + .../routines/HasFunctionPrivilege4.java | 102 + .../routines/HasFunctionPrivilege5.java | 81 + .../routines/HasFunctionPrivilege6.java | 81 + .../routines/HasLanguagePrivilege1.java | 102 + .../routines/HasLanguagePrivilege2.java | 102 + .../routines/HasLanguagePrivilege3.java | 102 + .../routines/HasLanguagePrivilege4.java | 102 + .../routines/HasLanguagePrivilege5.java | 81 + .../routines/HasLanguagePrivilege6.java | 81 + .../routines/HasParameterPrivilege1.java | 102 + .../routines/HasParameterPrivilege2.java | 102 + .../routines/HasParameterPrivilege3.java | 81 + .../routines/HasSchemaPrivilege1.java | 101 + .../routines/HasSchemaPrivilege2.java | 101 + .../routines/HasSchemaPrivilege3.java | 101 + .../routines/HasSchemaPrivilege4.java | 101 + .../routines/HasSchemaPrivilege5.java | 80 + .../routines/HasSchemaPrivilege6.java | 80 + .../routines/HasSequencePrivilege1.java | 102 + .../routines/HasSequencePrivilege2.java | 102 + .../routines/HasSequencePrivilege3.java | 102 + .../routines/HasSequencePrivilege4.java | 102 + .../routines/HasSequencePrivilege5.java | 81 + .../routines/HasSequencePrivilege6.java | 81 + .../routines/HasServerPrivilege1.java | 101 + .../routines/HasServerPrivilege2.java | 101 + .../routines/HasServerPrivilege3.java | 101 + .../routines/HasServerPrivilege4.java | 101 + .../routines/HasServerPrivilege5.java | 80 + .../routines/HasServerPrivilege6.java | 80 + .../routines/HasTablePrivilege1.java | 101 + .../routines/HasTablePrivilege2.java | 101 + .../routines/HasTablePrivilege3.java | 101 + .../routines/HasTablePrivilege4.java | 101 + .../routines/HasTablePrivilege5.java | 80 + .../routines/HasTablePrivilege6.java | 80 + .../routines/HasTablespacePrivilege1.java | 102 + .../routines/HasTablespacePrivilege2.java | 102 + .../routines/HasTablespacePrivilege3.java | 102 + .../routines/HasTablespacePrivilege4.java | 102 + .../routines/HasTablespacePrivilege5.java | 81 + .../routines/HasTablespacePrivilege6.java | 81 + .../routines/HasTypePrivilege1.java | 101 + .../routines/HasTypePrivilege2.java | 101 + .../routines/HasTypePrivilege3.java | 101 + .../routines/HasTypePrivilege4.java | 101 + .../routines/HasTypePrivilege5.java | 80 + .../routines/HasTypePrivilege6.java | 80 + .../pg_catalog/routines/HashAclitem.java | 58 + .../routines/HashAclitemExtended.java | 79 + .../pg_catalog/routines/HashArray.java | 58 + .../routines/HashArrayExtended.java | 79 + .../pg_catalog/routines/HashMultirange.java | 65 + .../routines/HashMultirangeExtended.java | 87 + .../pg_catalog/routines/HashNumeric.java | 60 + .../routines/HashNumericExtended.java | 81 + .../pg_catalog/routines/HashRange.java | 65 + .../routines/HashRangeExtended.java | 86 + .../pg_catalog/routines/HashRecord.java | 59 + .../routines/HashRecordExtended.java | 80 + .../pg_catalog/routines/Hashbpchar.java | 58 + .../routines/Hashbpcharextended.java | 79 + .../pg_catalog/routines/Hashchar.java | 58 + .../pg_catalog/routines/Hashcharextended.java | 79 + .../pg_catalog/routines/Hashenum.java | 65 + .../pg_catalog/routines/Hashenumextended.java | 86 + .../pg_catalog/routines/Hashfloat4.java | 58 + .../routines/Hashfloat4extended.java | 79 + .../pg_catalog/routines/Hashfloat8.java | 58 + .../routines/Hashfloat8extended.java | 79 + .../pg_catalog/routines/Hashhandler.java | 76 + .../pg_catalog/routines/Hashinet.java | 65 + .../pg_catalog/routines/Hashinetextended.java | 86 + .../pg_catalog/routines/Hashint2.java | 58 + .../pg_catalog/routines/Hashint2extended.java | 79 + .../pg_catalog/routines/Hashint4.java | 58 + .../pg_catalog/routines/Hashint4extended.java | 79 + .../pg_catalog/routines/Hashint8.java | 58 + .../pg_catalog/routines/Hashint8extended.java | 79 + .../pg_catalog/routines/Hashmacaddr.java | 65 + .../pg_catalog/routines/Hashmacaddr8.java | 65 + .../routines/Hashmacaddr8extended.java | 86 + .../routines/Hashmacaddrextended.java | 86 + .../pg_catalog/routines/Hashname.java | 58 + .../pg_catalog/routines/Hashnameextended.java | 79 + .../db_beans/pg_catalog/routines/Hashoid.java | 58 + .../pg_catalog/routines/Hashoidextended.java | 79 + .../pg_catalog/routines/Hashoidvector.java | 59 + .../routines/Hashoidvectorextended.java | 80 + .../pg_catalog/routines/Hashtext.java | 58 + .../pg_catalog/routines/Hashtextextended.java | 79 + .../db_beans/pg_catalog/routines/Hashtid.java | 58 + .../pg_catalog/routines/Hashtidextended.java | 79 + .../pg_catalog/routines/Hashvarlena.java | 65 + .../routines/Hashvarlenaextended.java | 86 + .../routines/HeapTableamHandler.java | 76 + .../db_beans/pg_catalog/routines/Height.java | 65 + .../db_beans/pg_catalog/routines/Host.java | 65 + .../pg_catalog/routines/Hostmask.java | 76 + .../pg_catalog/routines/Iclikejoinsel.java | 161 + .../pg_catalog/routines/Iclikesel.java | 134 + .../pg_catalog/routines/Icnlikejoinsel.java | 161 + .../pg_catalog/routines/Icnlikesel.java | 134 + .../pg_catalog/routines/Icregexeqjoinsel.java | 161 + .../pg_catalog/routines/Icregexeqsel.java | 134 + .../pg_catalog/routines/Icregexnejoinsel.java | 161 + .../pg_catalog/routines/Icregexnesel.java | 134 + .../pg_catalog/routines/InRange1.java | 143 + .../pg_catalog/routines/InRange10.java | 146 + .../pg_catalog/routines/InRange11.java | 144 + .../pg_catalog/routines/InRange12.java | 146 + .../pg_catalog/routines/InRange13.java | 146 + .../pg_catalog/routines/InRange14.java | 143 + .../pg_catalog/routines/InRange15.java | 143 + .../pg_catalog/routines/InRange16.java | 145 + .../pg_catalog/routines/InRange2.java | 143 + .../pg_catalog/routines/InRange3.java | 143 + .../pg_catalog/routines/InRange4.java | 143 + .../pg_catalog/routines/InRange5.java | 143 + .../pg_catalog/routines/InRange6.java | 143 + .../pg_catalog/routines/InRange7.java | 143 + .../pg_catalog/routines/InRange8.java | 146 + .../pg_catalog/routines/InRange9.java | 146 + .../pg_catalog/routines/IndexAmHandlerIn.java | 76 + .../routines/IndexAmHandlerOut.java | 76 + .../pg_catalog/routines/InetClientAddr.java | 48 + .../pg_catalog/routines/InetClientPort.java | 36 + .../pg_catalog/routines/InetGistCompress.java | 76 + .../routines/InetGistConsistent.java | 161 + .../pg_catalog/routines/InetGistFetch.java | 76 + .../pg_catalog/routines/InetGistPenalty.java | 130 + .../routines/InetGistPicksplit.java | 103 + .../pg_catalog/routines/InetGistSame.java | 130 + .../pg_catalog/routines/InetGistUnion.java | 103 + .../db_beans/pg_catalog/routines/InetIn.java | 76 + .../pg_catalog/routines/InetMerge.java | 103 + .../db_beans/pg_catalog/routines/InetOut.java | 76 + .../pg_catalog/routines/InetRecv.java | 76 + .../pg_catalog/routines/InetSameFamily.java | 92 + .../pg_catalog/routines/InetSend.java | 65 + .../pg_catalog/routines/InetServerAddr.java | 48 + .../pg_catalog/routines/InetServerPort.java | 36 + .../pg_catalog/routines/InetSpgChoose.java | 68 + .../pg_catalog/routines/InetSpgConfig.java | 68 + .../routines/InetSpgInnerConsistent.java | 68 + .../routines/InetSpgLeafConsistent.java | 93 + .../pg_catalog/routines/InetSpgPicksplit.java | 68 + .../db_beans/pg_catalog/routines/Inetand.java | 103 + .../db_beans/pg_catalog/routines/Inetmi.java | 92 + .../pg_catalog/routines/InetmiInt8.java | 98 + .../db_beans/pg_catalog/routines/Inetnot.java | 76 + .../db_beans/pg_catalog/routines/Inetor.java | 103 + .../db_beans/pg_catalog/routines/Inetpl.java | 98 + .../db_beans/pg_catalog/routines/Initcap.java | 58 + .../db_beans/pg_catalog/routines/Int21.java | 61 + .../db_beans/pg_catalog/routines/Int22.java | 59 + .../db_beans/pg_catalog/routines/Int23.java | 59 + .../db_beans/pg_catalog/routines/Int24.java | 59 + .../pg_catalog/routines/Int24div.java | 79 + .../db_beans/pg_catalog/routines/Int24eq.java | 79 + .../db_beans/pg_catalog/routines/Int24ge.java | 79 + .../db_beans/pg_catalog/routines/Int24gt.java | 79 + .../db_beans/pg_catalog/routines/Int24le.java | 79 + .../db_beans/pg_catalog/routines/Int24lt.java | 79 + .../db_beans/pg_catalog/routines/Int24mi.java | 79 + .../pg_catalog/routines/Int24mul.java | 79 + .../db_beans/pg_catalog/routines/Int24ne.java | 79 + .../db_beans/pg_catalog/routines/Int24pl.java | 79 + .../db_beans/pg_catalog/routines/Int25.java | 60 + .../db_beans/pg_catalog/routines/Int26.java | 59 + .../pg_catalog/routines/Int28div.java | 79 + .../db_beans/pg_catalog/routines/Int28eq.java | 79 + .../db_beans/pg_catalog/routines/Int28ge.java | 79 + .../db_beans/pg_catalog/routines/Int28gt.java | 79 + .../db_beans/pg_catalog/routines/Int28le.java | 79 + .../db_beans/pg_catalog/routines/Int28lt.java | 79 + .../db_beans/pg_catalog/routines/Int28mi.java | 79 + .../pg_catalog/routines/Int28mul.java | 79 + .../db_beans/pg_catalog/routines/Int28ne.java | 79 + .../db_beans/pg_catalog/routines/Int28pl.java | 79 + .../pg_catalog/routines/Int2Accum.java | 98 + .../pg_catalog/routines/Int2AccumInv.java | 98 + .../pg_catalog/routines/Int2AvgAccum.java | 79 + .../pg_catalog/routines/Int2AvgAccumInv.java | 79 + .../pg_catalog/routines/Int2MulCash.java | 98 + .../db_beans/pg_catalog/routines/Int2Sum.java | 79 + .../db_beans/pg_catalog/routines/Int2abs.java | 58 + .../db_beans/pg_catalog/routines/Int2and.java | 79 + .../db_beans/pg_catalog/routines/Int2div.java | 79 + .../db_beans/pg_catalog/routines/Int2eq.java | 79 + .../db_beans/pg_catalog/routines/Int2ge.java | 79 + .../db_beans/pg_catalog/routines/Int2gt.java | 79 + .../db_beans/pg_catalog/routines/Int2in.java | 65 + .../pg_catalog/routines/Int2int4Sum.java | 58 + .../pg_catalog/routines/Int2larger.java | 79 + .../db_beans/pg_catalog/routines/Int2le.java | 79 + .../db_beans/pg_catalog/routines/Int2lt.java | 79 + .../db_beans/pg_catalog/routines/Int2mi.java | 79 + .../db_beans/pg_catalog/routines/Int2mod.java | 79 + .../db_beans/pg_catalog/routines/Int2mul.java | 79 + .../db_beans/pg_catalog/routines/Int2ne.java | 79 + .../db_beans/pg_catalog/routines/Int2not.java | 58 + .../db_beans/pg_catalog/routines/Int2or.java | 79 + .../db_beans/pg_catalog/routines/Int2out.java | 71 + .../db_beans/pg_catalog/routines/Int2pl.java | 79 + .../pg_catalog/routines/Int2recv.java | 65 + .../pg_catalog/routines/Int2send.java | 58 + .../db_beans/pg_catalog/routines/Int2shl.java | 79 + .../db_beans/pg_catalog/routines/Int2shr.java | 79 + .../pg_catalog/routines/Int2smaller.java | 79 + .../db_beans/pg_catalog/routines/Int2um.java | 58 + .../db_beans/pg_catalog/routines/Int2up.java | 58 + .../pg_catalog/routines/Int2vectorin.java | 64 + .../pg_catalog/routines/Int2vectorout.java | 70 + .../pg_catalog/routines/Int2vectorrecv.java | 64 + .../pg_catalog/routines/Int2vectorsend.java | 59 + .../db_beans/pg_catalog/routines/Int2xor.java | 79 + .../db_beans/pg_catalog/routines/Int41.java | 59 + .../db_beans/pg_catalog/routines/Int42.java | 61 + .../pg_catalog/routines/Int42div.java | 79 + .../db_beans/pg_catalog/routines/Int42eq.java | 79 + .../db_beans/pg_catalog/routines/Int42ge.java | 79 + .../db_beans/pg_catalog/routines/Int42gt.java | 79 + .../db_beans/pg_catalog/routines/Int42le.java | 79 + .../db_beans/pg_catalog/routines/Int42lt.java | 79 + .../db_beans/pg_catalog/routines/Int42mi.java | 79 + .../pg_catalog/routines/Int42mul.java | 79 + .../db_beans/pg_catalog/routines/Int42ne.java | 79 + .../db_beans/pg_catalog/routines/Int42pl.java | 79 + .../db_beans/pg_catalog/routines/Int43.java | 59 + .../db_beans/pg_catalog/routines/Int44.java | 59 + .../db_beans/pg_catalog/routines/Int45.java | 59 + .../db_beans/pg_catalog/routines/Int46.java | 59 + .../db_beans/pg_catalog/routines/Int47.java | 60 + .../db_beans/pg_catalog/routines/Int48.java | 59 + .../pg_catalog/routines/Int48div.java | 79 + .../db_beans/pg_catalog/routines/Int48eq.java | 79 + .../db_beans/pg_catalog/routines/Int48ge.java | 79 + .../db_beans/pg_catalog/routines/Int48gt.java | 79 + .../db_beans/pg_catalog/routines/Int48le.java | 79 + .../db_beans/pg_catalog/routines/Int48lt.java | 79 + .../db_beans/pg_catalog/routines/Int48mi.java | 79 + .../pg_catalog/routines/Int48mul.java | 79 + .../db_beans/pg_catalog/routines/Int48ne.java | 79 + .../db_beans/pg_catalog/routines/Int48pl.java | 79 + .../db_beans/pg_catalog/routines/Int49.java | 59 + .../pg_catalog/routines/Int4Accum.java | 98 + .../pg_catalog/routines/Int4AccumInv.java | 98 + .../pg_catalog/routines/Int4AvgAccum.java | 79 + .../pg_catalog/routines/Int4AvgAccumInv.java | 79 + .../pg_catalog/routines/Int4AvgCombine.java | 79 + .../pg_catalog/routines/Int4MulCash.java | 98 + .../db_beans/pg_catalog/routines/Int4Sum.java | 79 + .../db_beans/pg_catalog/routines/Int4abs.java | 58 + .../db_beans/pg_catalog/routines/Int4and.java | 79 + .../db_beans/pg_catalog/routines/Int4div.java | 79 + .../db_beans/pg_catalog/routines/Int4eq.java | 79 + .../db_beans/pg_catalog/routines/Int4ge.java | 79 + .../db_beans/pg_catalog/routines/Int4gt.java | 79 + .../db_beans/pg_catalog/routines/Int4in.java | 65 + .../db_beans/pg_catalog/routines/Int4inc.java | 58 + .../pg_catalog/routines/Int4larger.java | 79 + .../db_beans/pg_catalog/routines/Int4le.java | 79 + .../db_beans/pg_catalog/routines/Int4lt.java | 79 + .../db_beans/pg_catalog/routines/Int4mi.java | 79 + .../db_beans/pg_catalog/routines/Int4mod.java | 79 + .../db_beans/pg_catalog/routines/Int4mul.java | 79 + .../pg_catalog/routines/Int4multirange1.java | 49 + .../pg_catalog/routines/Int4multirange2.java | 77 + .../pg_catalog/routines/Int4multirange3.java | 71 + .../db_beans/pg_catalog/routines/Int4ne.java | 79 + .../db_beans/pg_catalog/routines/Int4not.java | 58 + .../db_beans/pg_catalog/routines/Int4or.java | 79 + .../db_beans/pg_catalog/routines/Int4out.java | 71 + .../db_beans/pg_catalog/routines/Int4pl.java | 79 + .../pg_catalog/routines/Int4range1.java | 93 + .../pg_catalog/routines/Int4range2.java | 114 + .../routines/Int4rangeCanonical.java | 76 + .../pg_catalog/routines/Int4rangeSubdiff.java | 79 + .../pg_catalog/routines/Int4recv.java | 65 + .../pg_catalog/routines/Int4send.java | 58 + .../db_beans/pg_catalog/routines/Int4shl.java | 79 + .../db_beans/pg_catalog/routines/Int4shr.java | 79 + .../pg_catalog/routines/Int4smaller.java | 79 + .../db_beans/pg_catalog/routines/Int4um.java | 58 + .../db_beans/pg_catalog/routines/Int4up.java | 58 + .../db_beans/pg_catalog/routines/Int4xor.java | 79 + .../db_beans/pg_catalog/routines/Int81.java | 59 + .../db_beans/pg_catalog/routines/Int82.java | 61 + .../pg_catalog/routines/Int82div.java | 79 + .../db_beans/pg_catalog/routines/Int82eq.java | 79 + .../db_beans/pg_catalog/routines/Int82ge.java | 79 + .../db_beans/pg_catalog/routines/Int82gt.java | 79 + .../db_beans/pg_catalog/routines/Int82le.java | 79 + .../db_beans/pg_catalog/routines/Int82lt.java | 79 + .../db_beans/pg_catalog/routines/Int82mi.java | 79 + .../pg_catalog/routines/Int82mul.java | 79 + .../db_beans/pg_catalog/routines/Int82ne.java | 79 + .../db_beans/pg_catalog/routines/Int82pl.java | 79 + .../db_beans/pg_catalog/routines/Int83.java | 59 + .../db_beans/pg_catalog/routines/Int84.java | 60 + .../pg_catalog/routines/Int84div.java | 79 + .../db_beans/pg_catalog/routines/Int84eq.java | 79 + .../db_beans/pg_catalog/routines/Int84ge.java | 79 + .../db_beans/pg_catalog/routines/Int84gt.java | 79 + .../db_beans/pg_catalog/routines/Int84le.java | 79 + .../db_beans/pg_catalog/routines/Int84lt.java | 79 + .../db_beans/pg_catalog/routines/Int84mi.java | 79 + .../pg_catalog/routines/Int84mul.java | 79 + .../db_beans/pg_catalog/routines/Int84ne.java | 79 + .../db_beans/pg_catalog/routines/Int84pl.java | 79 + .../db_beans/pg_catalog/routines/Int85.java | 59 + .../db_beans/pg_catalog/routines/Int86.java | 59 + .../db_beans/pg_catalog/routines/Int87.java | 59 + .../db_beans/pg_catalog/routines/Int88.java | 59 + .../pg_catalog/routines/Int8Accum.java | 98 + .../pg_catalog/routines/Int8AccumInv.java | 98 + .../db_beans/pg_catalog/routines/Int8Avg.java | 60 + .../pg_catalog/routines/Int8AvgAccum.java | 98 + .../pg_catalog/routines/Int8AvgAccumInv.java | 98 + .../pg_catalog/routines/Int8AvgCombine.java | 103 + .../routines/Int8AvgDeserialize.java | 98 + .../pg_catalog/routines/Int8AvgSerialize.java | 65 + .../pg_catalog/routines/Int8MulCash.java | 98 + .../db_beans/pg_catalog/routines/Int8Sum.java | 81 + .../db_beans/pg_catalog/routines/Int8abs.java | 58 + .../db_beans/pg_catalog/routines/Int8and.java | 79 + .../db_beans/pg_catalog/routines/Int8dec.java | 58 + .../pg_catalog/routines/Int8decAny.java | 85 + .../db_beans/pg_catalog/routines/Int8div.java | 79 + .../db_beans/pg_catalog/routines/Int8eq.java | 79 + .../db_beans/pg_catalog/routines/Int8ge.java | 79 + .../db_beans/pg_catalog/routines/Int8gt.java | 79 + .../db_beans/pg_catalog/routines/Int8in.java | 65 + .../db_beans/pg_catalog/routines/Int8inc.java | 58 + .../pg_catalog/routines/Int8incAny.java | 85 + .../routines/Int8incFloat8Float8.java | 100 + .../pg_catalog/routines/Int8incSupport.java | 76 + .../pg_catalog/routines/Int8larger.java | 79 + .../db_beans/pg_catalog/routines/Int8le.java | 79 + .../db_beans/pg_catalog/routines/Int8lt.java | 79 + .../db_beans/pg_catalog/routines/Int8mi.java | 79 + .../db_beans/pg_catalog/routines/Int8mod.java | 79 + .../db_beans/pg_catalog/routines/Int8mul.java | 79 + .../pg_catalog/routines/Int8multirange1.java | 49 + .../pg_catalog/routines/Int8multirange2.java | 77 + .../pg_catalog/routines/Int8multirange3.java | 71 + .../db_beans/pg_catalog/routines/Int8ne.java | 79 + .../db_beans/pg_catalog/routines/Int8not.java | 58 + .../db_beans/pg_catalog/routines/Int8or.java | 79 + .../db_beans/pg_catalog/routines/Int8out.java | 71 + .../db_beans/pg_catalog/routines/Int8pl.java | 79 + .../pg_catalog/routines/Int8plInet.java | 98 + .../pg_catalog/routines/Int8range1.java | 93 + .../pg_catalog/routines/Int8range2.java | 114 + .../routines/Int8rangeCanonical.java | 76 + .../pg_catalog/routines/Int8rangeSubdiff.java | 79 + .../pg_catalog/routines/Int8recv.java | 65 + .../pg_catalog/routines/Int8send.java | 58 + .../db_beans/pg_catalog/routines/Int8shl.java | 79 + .../db_beans/pg_catalog/routines/Int8shr.java | 79 + .../pg_catalog/routines/Int8smaller.java | 79 + .../db_beans/pg_catalog/routines/Int8um.java | 58 + .../db_beans/pg_catalog/routines/Int8up.java | 58 + .../db_beans/pg_catalog/routines/Int8xor.java | 79 + .../pg_catalog/routines/IntegerPlDate.java | 81 + .../db_beans/pg_catalog/routines/InterLb.java | 92 + .../db_beans/pg_catalog/routines/InterSb.java | 92 + .../db_beans/pg_catalog/routines/InterSl.java | 92 + .../pg_catalog/routines/InternalIn.java | 76 + .../pg_catalog/routines/InternalOut.java | 76 + .../pg_catalog/routines/Interval1.java | 81 + .../pg_catalog/routines/Interval2.java | 62 + .../pg_catalog/routines/IntervalAccum.java | 80 + .../pg_catalog/routines/IntervalAccumInv.java | 80 + .../pg_catalog/routines/IntervalAvg.java | 59 + .../pg_catalog/routines/IntervalCmp.java | 80 + .../pg_catalog/routines/IntervalCombine.java | 80 + .../pg_catalog/routines/IntervalDiv.java | 80 + .../pg_catalog/routines/IntervalEq.java | 80 + .../pg_catalog/routines/IntervalGe.java | 80 + .../pg_catalog/routines/IntervalGt.java | 80 + .../pg_catalog/routines/IntervalHash.java | 59 + .../routines/IntervalHashExtended.java | 81 + .../pg_catalog/routines/IntervalIn.java | 108 + .../pg_catalog/routines/IntervalLarger.java | 80 + .../pg_catalog/routines/IntervalLe.java | 80 + .../pg_catalog/routines/IntervalLt.java | 80 + .../pg_catalog/routines/IntervalMi.java | 80 + .../pg_catalog/routines/IntervalMul.java | 80 + .../pg_catalog/routines/IntervalNe.java | 80 + .../pg_catalog/routines/IntervalOut.java | 72 + .../pg_catalog/routines/IntervalPl.java | 80 + .../pg_catalog/routines/IntervalPlDate.java | 83 + .../pg_catalog/routines/IntervalPlTime.java | 82 + .../routines/IntervalPlTimestamp.java | 82 + .../routines/IntervalPlTimestamptz.java | 83 + .../pg_catalog/routines/IntervalPlTimetz.java | 82 + .../pg_catalog/routines/IntervalRecv.java | 108 + .../pg_catalog/routines/IntervalSend.java | 59 + .../pg_catalog/routines/IntervalSmaller.java | 80 + .../pg_catalog/routines/IntervalSupport.java | 76 + .../pg_catalog/routines/IntervalUm.java | 59 + .../pg_catalog/routines/Intervaltypmodin.java | 59 + .../routines/Intervaltypmodout.java | 71 + .../pg_catalog/routines/IsNormalized.java | 79 + .../pg_catalog/routines/Isclosed.java | 65 + .../pg_catalog/routines/Isempty1.java | 66 + .../pg_catalog/routines/Isempty2.java | 66 + .../pg_catalog/routines/Isfinite1.java | 61 + .../pg_catalog/routines/Isfinite2.java | 61 + .../pg_catalog/routines/Isfinite3.java | 60 + .../pg_catalog/routines/Isfinite4.java | 61 + .../pg_catalog/routines/Ishorizontal1.java | 93 + .../pg_catalog/routines/Ishorizontal2.java | 66 + .../pg_catalog/routines/Ishorizontal3.java | 66 + .../pg_catalog/routines/Iso8859ToUtf8.java | 176 + .../pg_catalog/routines/Iso8859_1ToUtf8.java | 176 + .../pg_catalog/routines/IsoToKoi8r.java | 176 + .../pg_catalog/routines/IsoToMic.java | 176 + .../pg_catalog/routines/IsoToWin1251.java | 176 + .../pg_catalog/routines/IsoToWin866.java | 176 + .../db_beans/pg_catalog/routines/Isopen.java | 65 + .../pg_catalog/routines/Isparallel1.java | 93 + .../pg_catalog/routines/Isparallel2.java | 93 + .../db_beans/pg_catalog/routines/Isperp1.java | 93 + .../db_beans/pg_catalog/routines/Isperp2.java | 93 + .../pg_catalog/routines/Isvertical1.java | 93 + .../pg_catalog/routines/Isvertical2.java | 66 + .../pg_catalog/routines/Isvertical3.java | 66 + .../pg_catalog/routines/JohabToUtf8.java | 176 + .../db_beans/pg_catalog/routines/JsonAgg.java | 66 + .../pg_catalog/routines/JsonAggFinalfn.java | 66 + .../pg_catalog/routines/JsonAggStrict.java | 66 + .../routines/JsonAggStrictTransfn.java | 103 + .../pg_catalog/routines/JsonAggTransfn.java | 103 + .../pg_catalog/routines/JsonArrayElement.java | 80 + .../routines/JsonArrayElementText.java | 82 + .../pg_catalog/routines/JsonArrayLength.java | 59 + .../pg_catalog/routines/JsonBuildArray1.java | 66 + .../pg_catalog/routines/JsonBuildArray2.java | 38 + .../pg_catalog/routines/JsonBuildObject1.java | 66 + .../pg_catalog/routines/JsonBuildObject2.java | 38 + .../pg_catalog/routines/JsonExtractPath.java | 80 + .../routines/JsonExtractPathText.java | 81 + .../db_beans/pg_catalog/routines/JsonIn.java | 66 + .../pg_catalog/routines/JsonObject1.java | 60 + .../pg_catalog/routines/JsonObject2.java | 81 + .../pg_catalog/routines/JsonObjectAgg.java | 92 + .../routines/JsonObjectAggFinalfn.java | 67 + .../routines/JsonObjectAggStrict.java | 93 + .../routines/JsonObjectAggStrictTransfn.java | 131 + .../routines/JsonObjectAggTransfn.java | 131 + .../routines/JsonObjectAggUnique.java | 93 + .../routines/JsonObjectAggUniqueStrict.java | 93 + .../JsonObjectAggUniqueStrictTransfn.java | 131 + .../routines/JsonObjectAggUniqueTransfn.java | 131 + .../pg_catalog/routines/JsonObjectField.java | 80 + .../routines/JsonObjectFieldText.java | 81 + .../db_beans/pg_catalog/routines/JsonOut.java | 72 + .../routines/JsonPopulateRecord.java | 121 + .../pg_catalog/routines/JsonRecv.java | 66 + .../pg_catalog/routines/JsonSend.java | 59 + .../pg_catalog/routines/JsonStripNulls.java | 59 + .../pg_catalog/routines/JsonToRecord.java | 60 + .../pg_catalog/routines/JsonToTsvector1.java | 95 + .../pg_catalog/routines/JsonToTsvector2.java | 122 + .../pg_catalog/routines/JsonTypeof.java | 59 + .../pg_catalog/routines/JsonbAgg.java | 66 + .../pg_catalog/routines/JsonbAggFinalfn.java | 66 + .../pg_catalog/routines/JsonbAggStrict.java | 66 + .../routines/JsonbAggStrictTransfn.java | 103 + .../pg_catalog/routines/JsonbAggTransfn.java | 103 + .../routines/JsonbArrayElement.java | 80 + .../routines/JsonbArrayElementText.java | 82 + .../pg_catalog/routines/JsonbArrayLength.java | 59 + .../pg_catalog/routines/JsonbBuildArray1.java | 66 + .../pg_catalog/routines/JsonbBuildArray2.java | 38 + .../routines/JsonbBuildObject1.java | 66 + .../routines/JsonbBuildObject2.java | 38 + .../pg_catalog/routines/JsonbCmp.java | 80 + .../pg_catalog/routines/JsonbConcat.java | 80 + .../pg_catalog/routines/JsonbContained.java | 80 + .../pg_catalog/routines/JsonbContains.java | 80 + .../pg_catalog/routines/JsonbDelete1.java | 81 + .../pg_catalog/routines/JsonbDelete2.java | 81 + .../pg_catalog/routines/JsonbDelete3.java | 81 + .../pg_catalog/routines/JsonbDeletePath.java | 80 + .../db_beans/pg_catalog/routines/JsonbEq.java | 80 + .../pg_catalog/routines/JsonbExists.java | 80 + .../pg_catalog/routines/JsonbExistsAll.java | 80 + .../pg_catalog/routines/JsonbExistsAny.java | 80 + .../pg_catalog/routines/JsonbExtractPath.java | 80 + .../routines/JsonbExtractPathText.java | 81 + .../db_beans/pg_catalog/routines/JsonbGe.java | 80 + .../db_beans/pg_catalog/routines/JsonbGt.java | 80 + .../pg_catalog/routines/JsonbHash.java | 59 + .../routines/JsonbHashExtended.java | 80 + .../db_beans/pg_catalog/routines/JsonbIn.java | 66 + .../pg_catalog/routines/JsonbInsert.java | 122 + .../db_beans/pg_catalog/routines/JsonbLe.java | 80 + .../db_beans/pg_catalog/routines/JsonbLt.java | 80 + .../db_beans/pg_catalog/routines/JsonbNe.java | 80 + .../pg_catalog/routines/JsonbObject1.java | 60 + .../pg_catalog/routines/JsonbObject2.java | 81 + .../pg_catalog/routines/JsonbObjectAgg.java | 92 + .../routines/JsonbObjectAggFinalfn.java | 67 + .../routines/JsonbObjectAggStrict.java | 93 + .../routines/JsonbObjectAggStrictTransfn.java | 131 + .../routines/JsonbObjectAggTransfn.java | 131 + .../routines/JsonbObjectAggUnique.java | 93 + .../routines/JsonbObjectAggUniqueStrict.java | 93 + .../JsonbObjectAggUniqueStrictTransfn.java | 131 + .../routines/JsonbObjectAggUniqueTransfn.java | 131 + .../pg_catalog/routines/JsonbObjectField.java | 80 + .../routines/JsonbObjectFieldText.java | 81 + .../pg_catalog/routines/JsonbOut.java | 72 + .../pg_catalog/routines/JsonbPathExists.java | 129 + .../routines/JsonbPathExistsOpr.java | 87 + .../routines/JsonbPathExistsTz.java | 129 + .../pg_catalog/routines/JsonbPathMatch.java | 129 + .../routines/JsonbPathMatchOpr.java | 87 + .../pg_catalog/routines/JsonbPathMatchTz.java | 129 + .../routines/JsonbPathQueryArray.java | 130 + .../routines/JsonbPathQueryArrayTz.java | 130 + .../routines/JsonbPathQueryFirst.java | 130 + .../routines/JsonbPathQueryFirstTz.java | 130 + .../routines/JsonbPopulateRecord.java | 99 + .../pg_catalog/routines/JsonbPretty.java | 59 + .../pg_catalog/routines/JsonbRecv.java | 66 + .../pg_catalog/routines/JsonbSend.java | 59 + .../pg_catalog/routines/JsonbSet.java | 122 + .../pg_catalog/routines/JsonbSetLax.java | 144 + .../pg_catalog/routines/JsonbStripNulls.java | 59 + .../routines/JsonbSubscriptHandler.java | 76 + .../pg_catalog/routines/JsonbToRecord.java | 60 + .../pg_catalog/routines/JsonbToTsvector1.java | 94 + .../pg_catalog/routines/JsonbToTsvector2.java | 121 + .../pg_catalog/routines/JsonbTypeof.java | 59 + .../pg_catalog/routines/JsonpathIn.java | 76 + .../pg_catalog/routines/JsonpathOut.java | 76 + .../pg_catalog/routines/JsonpathRecv.java | 76 + .../pg_catalog/routines/JsonpathSend.java | 65 + .../pg_catalog/routines/JustifyDays.java | 59 + .../pg_catalog/routines/JustifyHours.java | 59 + .../pg_catalog/routines/JustifyInterval.java | 59 + .../pg_catalog/routines/Koi8rToIso.java | 176 + .../pg_catalog/routines/Koi8rToMic.java | 176 + .../pg_catalog/routines/Koi8rToUtf8.java | 176 + .../pg_catalog/routines/Koi8rToWin1251.java | 176 + .../pg_catalog/routines/Koi8rToWin866.java | 176 + .../pg_catalog/routines/Koi8uToUtf8.java | 176 + .../db_beans/pg_catalog/routines/Lag1.java | 77 + .../db_beans/pg_catalog/routines/Lag2.java | 99 + .../db_beans/pg_catalog/routines/Lag3.java | 126 + .../routines/LanguageHandlerIn.java | 76 + .../routines/LanguageHandlerOut.java | 76 + .../pg_catalog/routines/LastValue.java | 76 + .../db_beans/pg_catalog/routines/Lastval.java | 36 + .../pg_catalog/routines/Latin1ToMic.java | 176 + .../pg_catalog/routines/Latin2ToMic.java | 176 + .../pg_catalog/routines/Latin2ToWin1250.java | 176 + .../pg_catalog/routines/Latin3ToMic.java | 176 + .../pg_catalog/routines/Latin4ToMic.java | 176 + .../db_beans/pg_catalog/routines/Lcm1.java | 80 + .../db_beans/pg_catalog/routines/Lcm2.java | 80 + .../db_beans/pg_catalog/routines/Lcm3.java | 82 + .../db_beans/pg_catalog/routines/Lead1.java | 77 + .../db_beans/pg_catalog/routines/Lead2.java | 99 + .../db_beans/pg_catalog/routines/Lead3.java | 126 + .../db_beans/pg_catalog/routines/Left.java | 79 + .../db_beans/pg_catalog/routines/Length1.java | 59 + .../db_beans/pg_catalog/routines/Length2.java | 59 + .../db_beans/pg_catalog/routines/Length3.java | 66 + .../db_beans/pg_catalog/routines/Length4.java | 66 + .../db_beans/pg_catalog/routines/Length5.java | 59 + .../db_beans/pg_catalog/routines/Length6.java | 80 + .../db_beans/pg_catalog/routines/Length7.java | 59 + .../db_beans/pg_catalog/routines/Length8.java | 66 + .../db_beans/pg_catalog/routines/Like1.java | 80 + .../db_beans/pg_catalog/routines/Like2.java | 80 + .../db_beans/pg_catalog/routines/Like3.java | 80 + .../pg_catalog/routines/LikeEscape1.java | 80 + .../pg_catalog/routines/LikeEscape2.java | 80 + .../pg_catalog/routines/Likejoinsel.java | 161 + .../db_beans/pg_catalog/routines/Likesel.java | 134 + .../db_beans/pg_catalog/routines/Line.java | 103 + .../pg_catalog/routines/LineDistance.java | 92 + .../db_beans/pg_catalog/routines/LineEq.java | 92 + .../pg_catalog/routines/LineHorizontal.java | 65 + .../db_beans/pg_catalog/routines/LineIn.java | 76 + .../pg_catalog/routines/LineInterpt.java | 103 + .../pg_catalog/routines/LineIntersect.java | 92 + .../db_beans/pg_catalog/routines/LineOut.java | 76 + .../pg_catalog/routines/LineParallel.java | 92 + .../pg_catalog/routines/LinePerp.java | 92 + .../pg_catalog/routines/LineRecv.java | 76 + .../pg_catalog/routines/LineSend.java | 65 + .../pg_catalog/routines/LineVertical.java | 65 + .../db_beans/pg_catalog/routines/Ln1.java | 59 + .../db_beans/pg_catalog/routines/Ln2.java | 61 + .../db_beans/pg_catalog/routines/LoClose.java | 58 + .../db_beans/pg_catalog/routines/LoCreat.java | 58 + .../pg_catalog/routines/LoCreate.java | 58 + .../pg_catalog/routines/LoFromBytea.java | 79 + .../db_beans/pg_catalog/routines/LoGet1.java | 59 + .../db_beans/pg_catalog/routines/LoGet2.java | 101 + .../db_beans/pg_catalog/routines/LoLseek.java | 100 + .../pg_catalog/routines/LoLseek64.java | 100 + .../db_beans/pg_catalog/routines/LoOpen.java | 79 + .../db_beans/pg_catalog/routines/LoPut.java | 69 + .../db_beans/pg_catalog/routines/LoTell.java | 58 + .../pg_catalog/routines/LoTell64.java | 58 + .../pg_catalog/routines/LoTruncate.java | 79 + .../pg_catalog/routines/LoTruncate64.java | 79 + .../pg_catalog/routines/LoUnlink.java | 58 + .../db_beans/pg_catalog/routines/Log1.java | 59 + .../db_beans/pg_catalog/routines/Log101.java | 59 + .../db_beans/pg_catalog/routines/Log102.java | 61 + .../db_beans/pg_catalog/routines/Log2.java | 82 + .../db_beans/pg_catalog/routines/Log3.java | 61 + .../db_beans/pg_catalog/routines/Loread.java | 79 + .../db_beans/pg_catalog/routines/Lower1.java | 77 + .../db_beans/pg_catalog/routines/Lower2.java | 77 + .../db_beans/pg_catalog/routines/Lower3.java | 59 + .../pg_catalog/routines/LowerInc1.java | 66 + .../pg_catalog/routines/LowerInc2.java | 66 + .../pg_catalog/routines/LowerInf1.java | 66 + .../pg_catalog/routines/LowerInf2.java | 66 + .../db_beans/pg_catalog/routines/Lowrite.java | 79 + .../db_beans/pg_catalog/routines/Lpad1.java | 101 + .../db_beans/pg_catalog/routines/Lpad2.java | 80 + .../db_beans/pg_catalog/routines/Lseg1.java | 77 + .../db_beans/pg_catalog/routines/Lseg2.java | 104 + .../pg_catalog/routines/LsegCenter.java | 76 + .../pg_catalog/routines/LsegDistance.java | 92 + .../db_beans/pg_catalog/routines/LsegEq.java | 92 + .../db_beans/pg_catalog/routines/LsegGe.java | 92 + .../db_beans/pg_catalog/routines/LsegGt.java | 92 + .../pg_catalog/routines/LsegHorizontal.java | 65 + .../db_beans/pg_catalog/routines/LsegIn.java | 76 + .../pg_catalog/routines/LsegInterpt.java | 103 + .../pg_catalog/routines/LsegIntersect.java | 92 + .../db_beans/pg_catalog/routines/LsegLe.java | 92 + .../pg_catalog/routines/LsegLength.java | 65 + .../db_beans/pg_catalog/routines/LsegLt.java | 92 + .../db_beans/pg_catalog/routines/LsegNe.java | 92 + .../db_beans/pg_catalog/routines/LsegOut.java | 76 + .../pg_catalog/routines/LsegParallel.java | 92 + .../pg_catalog/routines/LsegPerp.java | 92 + .../pg_catalog/routines/LsegRecv.java | 76 + .../pg_catalog/routines/LsegSend.java | 65 + .../pg_catalog/routines/LsegVertical.java | 65 + .../db_beans/pg_catalog/routines/Ltrim1.java | 80 + .../db_beans/pg_catalog/routines/Ltrim2.java | 80 + .../db_beans/pg_catalog/routines/Ltrim3.java | 59 + .../db_beans/pg_catalog/routines/Macaddr.java | 76 + .../pg_catalog/routines/Macaddr8.java | 76 + .../pg_catalog/routines/Macaddr8And.java | 103 + .../pg_catalog/routines/Macaddr8Cmp.java | 92 + .../pg_catalog/routines/Macaddr8Eq.java | 92 + .../pg_catalog/routines/Macaddr8Ge.java | 92 + .../pg_catalog/routines/Macaddr8Gt.java | 92 + .../pg_catalog/routines/Macaddr8In.java | 76 + .../pg_catalog/routines/Macaddr8Le.java | 92 + .../pg_catalog/routines/Macaddr8Lt.java | 92 + .../pg_catalog/routines/Macaddr8Ne.java | 92 + .../pg_catalog/routines/Macaddr8Not.java | 76 + .../pg_catalog/routines/Macaddr8Or.java | 103 + .../pg_catalog/routines/Macaddr8Out.java | 76 + .../pg_catalog/routines/Macaddr8Recv.java | 76 + .../pg_catalog/routines/Macaddr8Send.java | 65 + .../pg_catalog/routines/Macaddr8Set7bit.java | 76 + .../pg_catalog/routines/MacaddrAnd.java | 103 + .../pg_catalog/routines/MacaddrCmp.java | 92 + .../pg_catalog/routines/MacaddrEq.java | 92 + .../pg_catalog/routines/MacaddrGe.java | 92 + .../pg_catalog/routines/MacaddrGt.java | 92 + .../pg_catalog/routines/MacaddrIn.java | 76 + .../pg_catalog/routines/MacaddrLe.java | 92 + .../pg_catalog/routines/MacaddrLt.java | 92 + .../pg_catalog/routines/MacaddrNe.java | 92 + .../pg_catalog/routines/MacaddrNot.java | 76 + .../pg_catalog/routines/MacaddrOr.java | 103 + .../pg_catalog/routines/MacaddrOut.java | 76 + .../pg_catalog/routines/MacaddrRecv.java | 76 + .../pg_catalog/routines/MacaddrSend.java | 65 + .../routines/MacaddrSortsupport.java | 49 + .../pg_catalog/routines/MakeDate.java | 102 + .../pg_catalog/routines/MakeInterval.java | 185 + .../pg_catalog/routines/MakeTime.java | 102 + .../pg_catalog/routines/MakeTimestamp.java | 165 + .../pg_catalog/routines/MakeTimestamptz1.java | 166 + .../pg_catalog/routines/MakeTimestamptz2.java | 187 + .../pg_catalog/routines/Makeaclitem.java | 121 + .../db_beans/pg_catalog/routines/Masklen.java | 65 + .../pg_catalog/routines/Matchingjoinsel.java | 161 + .../pg_catalog/routines/Matchingsel.java | 134 + .../db_beans/pg_catalog/routines/Max1.java | 59 + .../db_beans/pg_catalog/routines/Max10.java | 61 + .../db_beans/pg_catalog/routines/Max11.java | 77 + .../db_beans/pg_catalog/routines/Max12.java | 61 + .../db_beans/pg_catalog/routines/Max13.java | 61 + .../db_beans/pg_catalog/routines/Max14.java | 60 + .../db_beans/pg_catalog/routines/Max15.java | 59 + .../db_beans/pg_catalog/routines/Max16.java | 61 + .../db_beans/pg_catalog/routines/Max17.java | 59 + .../db_beans/pg_catalog/routines/Max18.java | 59 + .../db_beans/pg_catalog/routines/Max19.java | 77 + .../db_beans/pg_catalog/routines/Max2.java | 59 + .../db_beans/pg_catalog/routines/Max20.java | 77 + .../db_beans/pg_catalog/routines/Max21.java | 77 + .../db_beans/pg_catalog/routines/Max22.java | 77 + .../db_beans/pg_catalog/routines/Max3.java | 59 + .../db_beans/pg_catalog/routines/Max4.java | 59 + .../db_beans/pg_catalog/routines/Max5.java | 59 + .../db_beans/pg_catalog/routines/Max6.java | 59 + .../db_beans/pg_catalog/routines/Max7.java | 59 + .../db_beans/pg_catalog/routines/Max8.java | 61 + .../db_beans/pg_catalog/routines/Max9.java | 61 + .../db_beans/pg_catalog/routines/Md51.java | 59 + .../db_beans/pg_catalog/routines/Md52.java | 59 + .../pg_catalog/routines/MicToBig5.java | 176 + .../pg_catalog/routines/MicToEucCn.java | 176 + .../pg_catalog/routines/MicToEucJp.java | 176 + .../pg_catalog/routines/MicToEucKr.java | 176 + .../pg_catalog/routines/MicToEucTw.java | 176 + .../pg_catalog/routines/MicToIso.java | 176 + .../pg_catalog/routines/MicToKoi8r.java | 176 + .../pg_catalog/routines/MicToLatin1.java | 176 + .../pg_catalog/routines/MicToLatin2.java | 176 + .../pg_catalog/routines/MicToLatin3.java | 176 + .../pg_catalog/routines/MicToLatin4.java | 176 + .../pg_catalog/routines/MicToSjis.java | 176 + .../pg_catalog/routines/MicToWin1250.java | 176 + .../pg_catalog/routines/MicToWin1251.java | 176 + .../pg_catalog/routines/MicToWin866.java | 176 + .../db_beans/pg_catalog/routines/Min1.java | 59 + .../db_beans/pg_catalog/routines/Min10.java | 61 + .../db_beans/pg_catalog/routines/Min11.java | 77 + .../db_beans/pg_catalog/routines/Min12.java | 61 + .../db_beans/pg_catalog/routines/Min13.java | 61 + .../db_beans/pg_catalog/routines/Min14.java | 60 + .../db_beans/pg_catalog/routines/Min15.java | 59 + .../db_beans/pg_catalog/routines/Min16.java | 61 + .../db_beans/pg_catalog/routines/Min17.java | 59 + .../db_beans/pg_catalog/routines/Min18.java | 59 + .../db_beans/pg_catalog/routines/Min19.java | 77 + .../db_beans/pg_catalog/routines/Min2.java | 59 + .../db_beans/pg_catalog/routines/Min20.java | 77 + .../db_beans/pg_catalog/routines/Min21.java | 77 + .../db_beans/pg_catalog/routines/Min22.java | 77 + .../db_beans/pg_catalog/routines/Min3.java | 59 + .../db_beans/pg_catalog/routines/Min4.java | 59 + .../db_beans/pg_catalog/routines/Min5.java | 59 + .../db_beans/pg_catalog/routines/Min6.java | 59 + .../db_beans/pg_catalog/routines/Min7.java | 59 + .../db_beans/pg_catalog/routines/Min8.java | 61 + .../db_beans/pg_catalog/routines/Min9.java | 61 + .../pg_catalog/routines/MinScale.java | 60 + .../db_beans/pg_catalog/routines/Mod1.java | 82 + .../db_beans/pg_catalog/routines/Mod2.java | 80 + .../db_beans/pg_catalog/routines/Mod3.java | 80 + .../db_beans/pg_catalog/routines/Mod4.java | 80 + .../db_beans/pg_catalog/routines/Mode.java | 76 + .../pg_catalog/routines/ModeFinal.java | 103 + .../db_beans/pg_catalog/routines/Money1.java | 72 + .../db_beans/pg_catalog/routines/Money2.java | 72 + .../db_beans/pg_catalog/routines/Money3.java | 74 + .../pg_catalog/routines/MulDInterval.java | 80 + .../pg_catalog/routines/Multirange.java | 76 + .../MultirangeAdjacentMultirange.java | 93 + .../routines/MultirangeAdjacentRange.java | 93 + .../routines/MultirangeAfterMultirange.java | 93 + .../routines/MultirangeAfterRange.java | 93 + .../routines/MultirangeAggFinalfn.java | 103 + .../routines/MultirangeAggTransfn.java | 103 + .../routines/MultirangeBeforeMultirange.java | 93 + .../routines/MultirangeBeforeRange.java | 93 + .../pg_catalog/routines/MultirangeCmp.java | 92 + .../MultirangeContainedByMultirange.java | 93 + .../routines/MultirangeContainedByRange.java | 93 + .../routines/MultirangeContainsElem.java | 93 + .../MultirangeContainsMultirange.java | 93 + .../routines/MultirangeContainsRange.java | 93 + .../pg_catalog/routines/MultirangeEq.java | 92 + .../pg_catalog/routines/MultirangeGe.java | 92 + .../routines/MultirangeGistCompress.java | 76 + .../routines/MultirangeGistConsistent.java | 162 + .../pg_catalog/routines/MultirangeGt.java | 92 + .../pg_catalog/routines/MultirangeIn.java | 119 + .../routines/MultirangeIntersect.java | 103 + .../MultirangeIntersectAggTransfn.java | 103 + .../pg_catalog/routines/MultirangeLe.java | 92 + .../pg_catalog/routines/MultirangeLt.java | 92 + .../pg_catalog/routines/MultirangeMinus.java | 103 + .../pg_catalog/routines/MultirangeNe.java | 92 + .../pg_catalog/routines/MultirangeOut.java | 76 + .../MultirangeOverlapsMultirange.java | 93 + .../routines/MultirangeOverlapsRange.java | 93 + .../MultirangeOverleftMultirange.java | 93 + .../routines/MultirangeOverleftRange.java | 93 + .../MultirangeOverrightMultirange.java | 93 + .../routines/MultirangeOverrightRange.java | 93 + .../pg_catalog/routines/MultirangeRecv.java | 119 + .../pg_catalog/routines/MultirangeSend.java | 65 + .../routines/MultirangeTypanalyze.java | 65 + .../pg_catalog/routines/MultirangeUnion.java | 103 + .../pg_catalog/routines/Multirangesel.java | 134 + .../db_beans/pg_catalog/routines/MxidAge.java | 58 + .../db_beans/pg_catalog/routines/Name1.java | 59 + .../db_beans/pg_catalog/routines/Name2.java | 59 + .../db_beans/pg_catalog/routines/Name3.java | 59 + .../pg_catalog/routines/Nameconcatoid.java | 79 + .../db_beans/pg_catalog/routines/Nameeq.java | 79 + .../pg_catalog/routines/Nameeqtext.java | 79 + .../db_beans/pg_catalog/routines/Namege.java | 79 + .../pg_catalog/routines/Namegetext.java | 79 + .../db_beans/pg_catalog/routines/Namegt.java | 79 + .../pg_catalog/routines/Namegttext.java | 79 + .../pg_catalog/routines/Nameiclike.java | 79 + .../pg_catalog/routines/Nameicnlike.java | 79 + .../pg_catalog/routines/Nameicregexeq.java | 79 + .../pg_catalog/routines/Nameicregexne.java | 79 + .../db_beans/pg_catalog/routines/Namein.java | 65 + .../db_beans/pg_catalog/routines/Namele.java | 79 + .../pg_catalog/routines/Nameletext.java | 79 + .../pg_catalog/routines/Namelike.java | 79 + .../db_beans/pg_catalog/routines/Namelt.java | 79 + .../pg_catalog/routines/Namelttext.java | 79 + .../db_beans/pg_catalog/routines/Namene.java | 79 + .../pg_catalog/routines/Namenetext.java | 79 + .../pg_catalog/routines/Namenlike.java | 79 + .../db_beans/pg_catalog/routines/Nameout.java | 71 + .../pg_catalog/routines/Namerecv.java | 65 + .../pg_catalog/routines/Nameregexeq.java | 79 + .../pg_catalog/routines/Nameregexne.java | 79 + .../pg_catalog/routines/Namesend.java | 58 + .../pg_catalog/routines/Neqjoinsel.java | 161 + .../db_beans/pg_catalog/routines/Neqsel.java | 134 + .../db_beans/pg_catalog/routines/Netmask.java | 76 + .../db_beans/pg_catalog/routines/Network.java | 76 + .../pg_catalog/routines/NetworkCmp.java | 92 + .../pg_catalog/routines/NetworkEq.java | 92 + .../pg_catalog/routines/NetworkGe.java | 92 + .../pg_catalog/routines/NetworkGt.java | 92 + .../pg_catalog/routines/NetworkLarger.java | 103 + .../pg_catalog/routines/NetworkLe.java | 92 + .../pg_catalog/routines/NetworkLt.java | 92 + .../pg_catalog/routines/NetworkNe.java | 92 + .../pg_catalog/routines/NetworkOverlap.java | 92 + .../pg_catalog/routines/NetworkSmaller.java | 103 + .../routines/NetworkSortsupport.java | 49 + .../pg_catalog/routines/NetworkSub.java | 92 + .../pg_catalog/routines/NetworkSubeq.java | 92 + .../routines/NetworkSubsetSupport.java | 76 + .../pg_catalog/routines/NetworkSup.java | 92 + .../pg_catalog/routines/NetworkSupeq.java | 92 + .../pg_catalog/routines/Networkjoinsel.java | 161 + .../pg_catalog/routines/Networksel.java | 134 + .../db_beans/pg_catalog/routines/Nextval.java | 65 + .../pg_catalog/routines/Nlikejoinsel.java | 161 + .../pg_catalog/routines/Nlikesel.java | 134 + .../pg_catalog/routines/Normalize.java | 79 + .../pg_catalog/routines/Notlike1.java | 80 + .../pg_catalog/routines/Notlike2.java | 80 + .../pg_catalog/routines/Notlike3.java | 80 + .../db_beans/pg_catalog/routines/Now.java | 38 + .../pg_catalog/routines/Npoints1.java | 66 + .../pg_catalog/routines/Npoints2.java | 66 + .../pg_catalog/routines/NthValue.java | 98 + .../db_beans/pg_catalog/routines/Ntile.java | 58 + .../pg_catalog/routines/NumNonnulls.java | 64 + .../pg_catalog/routines/NumNulls.java | 64 + .../pg_catalog/routines/Numeric1.java | 82 + .../pg_catalog/routines/Numeric2.java | 61 + .../pg_catalog/routines/Numeric3.java | 61 + .../pg_catalog/routines/Numeric4.java | 61 + .../pg_catalog/routines/Numeric5.java | 61 + .../pg_catalog/routines/Numeric6.java | 61 + .../pg_catalog/routines/Numeric7.java | 62 + .../pg_catalog/routines/Numeric8.java | 68 + .../pg_catalog/routines/NumericAbs.java | 60 + .../pg_catalog/routines/NumericAccum.java | 100 + .../pg_catalog/routines/NumericAccumInv.java | 100 + .../pg_catalog/routines/NumericAdd.java | 81 + .../pg_catalog/routines/NumericAvg.java | 67 + .../pg_catalog/routines/NumericAvgAccum.java | 100 + .../routines/NumericAvgCombine.java | 103 + .../routines/NumericAvgDeserialize.java | 98 + .../routines/NumericAvgSerialize.java | 65 + .../pg_catalog/routines/NumericCmp.java | 81 + .../pg_catalog/routines/NumericCombine.java | 103 + .../routines/NumericDeserialize.java | 98 + .../pg_catalog/routines/NumericDiv.java | 81 + .../pg_catalog/routines/NumericDivTrunc.java | 81 + .../pg_catalog/routines/NumericEq.java | 81 + .../pg_catalog/routines/NumericExp.java | 60 + .../pg_catalog/routines/NumericGe.java | 81 + .../pg_catalog/routines/NumericGt.java | 81 + .../pg_catalog/routines/NumericIn.java | 109 + .../pg_catalog/routines/NumericInc.java | 60 + .../pg_catalog/routines/NumericLarger.java | 81 + .../pg_catalog/routines/NumericLe.java | 81 + .../pg_catalog/routines/NumericLn.java | 60 + .../pg_catalog/routines/NumericLog.java | 81 + .../pg_catalog/routines/NumericLt.java | 81 + .../pg_catalog/routines/NumericMod.java | 81 + .../pg_catalog/routines/NumericMul.java | 81 + .../pg_catalog/routines/NumericNe.java | 81 + .../pg_catalog/routines/NumericOut.java | 73 + .../pg_catalog/routines/NumericPlPgLsn.java | 100 + .../pg_catalog/routines/NumericPolyAvg.java | 67 + .../routines/NumericPolyCombine.java | 103 + .../routines/NumericPolyDeserialize.java | 98 + .../routines/NumericPolySerialize.java | 66 + .../routines/NumericPolyStddevPop.java | 68 + .../routines/NumericPolyStddevSamp.java | 68 + .../pg_catalog/routines/NumericPolySum.java | 67 + .../routines/NumericPolyVarPop.java | 67 + .../routines/NumericPolyVarSamp.java | 67 + .../pg_catalog/routines/NumericPower.java | 81 + .../pg_catalog/routines/NumericRecv.java | 109 + .../pg_catalog/routines/NumericSend.java | 60 + .../pg_catalog/routines/NumericSerialize.java | 65 + .../pg_catalog/routines/NumericSmaller.java | 81 + .../routines/NumericSortsupport.java | 49 + .../pg_catalog/routines/NumericSqrt.java | 60 + .../pg_catalog/routines/NumericStddevPop.java | 67 + .../routines/NumericStddevSamp.java | 67 + .../pg_catalog/routines/NumericSub.java | 81 + .../pg_catalog/routines/NumericSum.java | 67 + .../pg_catalog/routines/NumericSupport.java | 76 + .../pg_catalog/routines/NumericUminus.java | 60 + .../pg_catalog/routines/NumericUplus.java | 60 + .../pg_catalog/routines/NumericVarPop.java | 67 + .../pg_catalog/routines/NumericVarSamp.java | 67 + .../pg_catalog/routines/Numerictypmodin.java | 59 + .../pg_catalog/routines/Numerictypmodout.java | 71 + .../pg_catalog/routines/Nummultirange1.java | 49 + .../pg_catalog/routines/Nummultirange2.java | 77 + .../pg_catalog/routines/Nummultirange3.java | 71 + .../db_beans/pg_catalog/routines/Numnode.java | 65 + .../pg_catalog/routines/Numrange1.java | 95 + .../pg_catalog/routines/Numrange2.java | 116 + .../pg_catalog/routines/NumrangeSubdiff.java | 81 + .../pg_catalog/routines/ObjDescription1.java | 80 + .../pg_catalog/routines/ObjDescription2.java | 59 + .../pg_catalog/routines/OctetLength1.java | 59 + .../pg_catalog/routines/OctetLength2.java | 59 + .../pg_catalog/routines/OctetLength3.java | 59 + .../pg_catalog/routines/OctetLength4.java | 59 + .../db_beans/pg_catalog/routines/Oid.java | 58 + .../db_beans/pg_catalog/routines/Oideq.java | 79 + .../db_beans/pg_catalog/routines/Oidge.java | 79 + .../db_beans/pg_catalog/routines/Oidgt.java | 79 + .../db_beans/pg_catalog/routines/Oidin.java | 65 + .../pg_catalog/routines/Oidlarger.java | 79 + .../db_beans/pg_catalog/routines/Oidle.java | 79 + .../db_beans/pg_catalog/routines/Oidlt.java | 79 + .../db_beans/pg_catalog/routines/Oidne.java | 79 + .../db_beans/pg_catalog/routines/Oidout.java | 71 + .../db_beans/pg_catalog/routines/Oidrecv.java | 65 + .../db_beans/pg_catalog/routines/Oidsend.java | 58 + .../pg_catalog/routines/Oidsmaller.java | 79 + .../pg_catalog/routines/Oidvectoreq.java | 80 + .../pg_catalog/routines/Oidvectorge.java | 80 + .../pg_catalog/routines/Oidvectorgt.java | 80 + .../pg_catalog/routines/Oidvectorin.java | 64 + .../pg_catalog/routines/Oidvectorle.java | 80 + .../pg_catalog/routines/Oidvectorlt.java | 80 + .../pg_catalog/routines/Oidvectorne.java | 80 + .../pg_catalog/routines/Oidvectorout.java | 70 + .../pg_catalog/routines/Oidvectorrecv.java | 64 + .../pg_catalog/routines/Oidvectorsend.java | 59 + .../pg_catalog/routines/Oidvectortypes.java | 59 + .../db_beans/pg_catalog/routines/OnPb.java | 92 + .../db_beans/pg_catalog/routines/OnPl.java | 92 + .../db_beans/pg_catalog/routines/OnPpath.java | 92 + .../db_beans/pg_catalog/routines/OnPs.java | 92 + .../db_beans/pg_catalog/routines/OnSb.java | 92 + .../db_beans/pg_catalog/routines/OnSl.java | 92 + .../routines/OrderedSetTransition.java | 104 + .../routines/OrderedSetTransitionMulti.java | 104 + .../pg_catalog/routines/Overlaps1.java | 124 + .../pg_catalog/routines/Overlaps10.java | 124 + .../pg_catalog/routines/Overlaps11.java | 125 + .../pg_catalog/routines/Overlaps12.java | 125 + .../pg_catalog/routines/Overlaps13.java | 125 + .../pg_catalog/routines/Overlaps2.java | 124 + .../pg_catalog/routines/Overlaps3.java | 125 + .../pg_catalog/routines/Overlaps4.java | 125 + .../pg_catalog/routines/Overlaps5.java | 125 + .../pg_catalog/routines/Overlaps6.java | 124 + .../pg_catalog/routines/Overlaps7.java | 125 + .../pg_catalog/routines/Overlaps8.java | 125 + .../pg_catalog/routines/Overlaps9.java | 125 + .../pg_catalog/routines/Overlay1.java | 122 + .../pg_catalog/routines/Overlay2.java | 101 + .../pg_catalog/routines/Overlay3.java | 122 + .../pg_catalog/routines/Overlay4.java | 101 + .../pg_catalog/routines/Overlay5.java | 122 + .../pg_catalog/routines/Overlay6.java | 101 + .../pg_catalog/routines/ParseIdent.java | 79 + .../db_beans/pg_catalog/routines/Path.java | 76 + .../db_beans/pg_catalog/routines/PathAdd.java | 103 + .../pg_catalog/routines/PathAddPt.java | 103 + .../pg_catalog/routines/PathContainPt.java | 92 + .../pg_catalog/routines/PathDistance.java | 92 + .../pg_catalog/routines/PathDivPt.java | 103 + .../db_beans/pg_catalog/routines/PathIn.java | 76 + .../pg_catalog/routines/PathInter.java | 92 + .../pg_catalog/routines/PathLength.java | 65 + .../pg_catalog/routines/PathMulPt.java | 103 + .../db_beans/pg_catalog/routines/PathNEq.java | 92 + .../db_beans/pg_catalog/routines/PathNGe.java | 92 + .../db_beans/pg_catalog/routines/PathNGt.java | 92 + .../db_beans/pg_catalog/routines/PathNLe.java | 92 + .../db_beans/pg_catalog/routines/PathNLt.java | 92 + .../pg_catalog/routines/PathNpoints.java | 65 + .../db_beans/pg_catalog/routines/PathOut.java | 76 + .../pg_catalog/routines/PathRecv.java | 76 + .../pg_catalog/routines/PathSend.java | 65 + .../pg_catalog/routines/PathSubPt.java | 103 + .../db_beans/pg_catalog/routines/Pclose.java | 76 + .../pg_catalog/routines/PercentRank1.java | 37 + .../pg_catalog/routines/PercentRank2.java | 65 + .../pg_catalog/routines/PercentRankFinal.java | 92 + .../pg_catalog/routines/PercentileCont1.java | 80 + .../pg_catalog/routines/PercentileCont2.java | 81 + .../pg_catalog/routines/PercentileCont3.java | 80 + .../pg_catalog/routines/PercentileCont4.java | 81 + .../routines/PercentileContFloat8Final.java | 87 + .../PercentileContFloat8MultiFinal.java | 88 + .../routines/PercentileContIntervalFinal.java | 88 + .../PercentileContIntervalMultiFinal.java | 89 + .../pg_catalog/routines/PercentileDisc1.java | 99 + .../pg_catalog/routines/PercentileDisc2.java | 87 + .../routines/PercentileDiscFinal.java | 125 + .../routines/PercentileDiscMultiFinal.java | 114 + .../pg_catalog/routines/PgAdvisoryLock1.java | 44 + .../pg_catalog/routines/PgAdvisoryLock2.java | 57 + .../routines/PgAdvisoryLockShared1.java | 44 + .../routines/PgAdvisoryLockShared2.java | 57 + .../routines/PgAdvisoryUnlock1.java | 59 + .../routines/PgAdvisoryUnlock2.java | 80 + .../routines/PgAdvisoryUnlockAll.java | 26 + .../routines/PgAdvisoryUnlockShared1.java | 60 + .../routines/PgAdvisoryUnlockShared2.java | 81 + .../routines/PgAdvisoryXactLock1.java | 44 + .../routines/PgAdvisoryXactLock2.java | 57 + .../routines/PgAdvisoryXactLockShared1.java | 44 + .../routines/PgAdvisoryXactLockShared2.java | 57 + .../pg_catalog/routines/PgBackendPid.java | 36 + .../pg_catalog/routines/PgBlockingPids.java | 58 + .../pg_catalog/routines/PgCancelBackend.java | 58 + .../pg_catalog/routines/PgCharToEncoding.java | 58 + .../pg_catalog/routines/PgClientEncoding.java | 36 + .../routines/PgCollationActualVersion.java | 59 + .../pg_catalog/routines/PgCollationFor.java | 64 + .../routines/PgCollationIsVisible.java | 59 + .../routines/PgColumnCompression.java | 64 + .../routines/PgColumnIsUpdatable.java | 108 + .../pg_catalog/routines/PgColumnSize.java | 64 + .../pg_catalog/routines/PgConfLoadTime.java | 38 + .../routines/PgControlCheckpoint.java | 312 + .../pg_catalog/routines/PgControlInit.java | 190 + .../routines/PgControlRecovery.java | 136 + .../pg_catalog/routines/PgControlSystem.java | 107 + .../routines/PgConversionIsVisible.java | 59 + .../PgCopyLogicalReplicationSlot1.java | 127 + .../PgCopyLogicalReplicationSlot2.java | 113 + .../PgCopyLogicalReplicationSlot3.java | 99 + .../PgCopyPhysicalReplicationSlot1.java | 113 + .../PgCopyPhysicalReplicationSlot2.java | 99 + .../PgCreateLogicalReplicationSlot.java | 133 + .../PgCreatePhysicalReplicationSlot.java | 120 + .../routines/PgCurrentSnapshot.java | 48 + .../routines/PgCurrentWalFlushLsn.java | 48 + .../routines/PgCurrentWalInsertLsn.java | 48 + .../pg_catalog/routines/PgCurrentWalLsn.java | 48 + .../pg_catalog/routines/PgCurrentXactId.java | 48 + .../routines/PgCurrentXactIdIfAssigned.java | 48 + .../PgDatabaseCollationActualVersion.java | 60 + .../pg_catalog/routines/PgDatabaseSize1.java | 59 + .../pg_catalog/routines/PgDatabaseSize2.java | 59 + .../pg_catalog/routines/PgDdlCommandIn.java | 76 + .../pg_catalog/routines/PgDdlCommandOut.java | 76 + .../pg_catalog/routines/PgDdlCommandRecv.java | 76 + .../pg_catalog/routines/PgDdlCommandSend.java | 65 + .../pg_catalog/routines/PgDependenciesIn.java | 76 + .../routines/PgDependenciesOut.java | 76 + .../routines/PgDependenciesRecv.java | 76 + .../routines/PgDependenciesSend.java | 65 + .../pg_catalog/routines/PgDescribeObject.java | 100 + .../routines/PgDropReplicationSlot.java | 43 + .../routines/PgEncodingMaxLength.java | 59 + .../pg_catalog/routines/PgEncodingToChar.java | 58 + .../PgEventTriggerTableRewriteOid.java | 44 + .../PgEventTriggerTableRewriteReason.java | 37 + .../pg_catalog/routines/PgExportSnapshot.java | 36 + .../routines/PgExtensionConfigDump.java | 63 + .../routines/PgFilenodeRelation.java | 92 + .../routines/PgFunctionIsVisible.java | 59 + .../routines/PgGetConstraintdef1.java | 59 + .../routines/PgGetConstraintdef2.java | 80 + .../pg_catalog/routines/PgGetExpr1.java | 87 + .../pg_catalog/routines/PgGetExpr2.java | 108 + .../routines/PgGetFunctionArgDefault.java | 80 + .../routines/PgGetFunctionArguments.java | 59 + .../PgGetFunctionIdentityArguments.java | 60 + .../routines/PgGetFunctionResult.java | 59 + .../routines/PgGetFunctionSqlbody.java | 59 + .../pg_catalog/routines/PgGetFunctiondef.java | 58 + .../pg_catalog/routines/PgGetIndexdef1.java | 59 + .../pg_catalog/routines/PgGetIndexdef2.java | 101 + .../routines/PgGetObjectAddress.java | 108 + .../routines/PgGetPartitionConstraintdef.java | 59 + .../pg_catalog/routines/PgGetPartkeydef.java | 58 + .../routines/PgGetReplicaIdentityIndex.java | 76 + .../pg_catalog/routines/PgGetRuledef1.java | 59 + .../pg_catalog/routines/PgGetRuledef2.java | 80 + .../routines/PgGetSerialSequence.java | 80 + .../routines/PgGetStatisticsobjdef.java | 59 + .../PgGetStatisticsobjdefColumns.java | 59 + .../PgGetStatisticsobjdefExpressions.java | 60 + .../pg_catalog/routines/PgGetTriggerdef1.java | 59 + .../pg_catalog/routines/PgGetTriggerdef2.java | 80 + .../pg_catalog/routines/PgGetUserbyid.java | 58 + .../pg_catalog/routines/PgGetViewdef1.java | 59 + .../pg_catalog/routines/PgGetViewdef2.java | 59 + .../pg_catalog/routines/PgGetViewdef3.java | 80 + .../pg_catalog/routines/PgGetViewdef4.java | 80 + .../pg_catalog/routines/PgGetViewdef5.java | 80 + .../routines/PgGetWalReplayPauseState.java | 37 + .../pg_catalog/routines/PgHasRole1.java | 101 + .../pg_catalog/routines/PgHasRole2.java | 101 + .../pg_catalog/routines/PgHasRole3.java | 101 + .../pg_catalog/routines/PgHasRole4.java | 101 + .../pg_catalog/routines/PgHasRole5.java | 80 + .../pg_catalog/routines/PgHasRole6.java | 80 + .../pg_catalog/routines/PgIdentifyObject.java | 121 + .../routines/PgIdentifyObjectAsAddress.java | 113 + .../routines/PgImportSystemCollations.java | 66 + .../routines/PgIndexColumnHasProperty.java | 108 + .../routines/PgIndexHasProperty.java | 86 + .../routines/PgIndexamHasProperty.java | 80 + .../routines/PgIndexamProgressPhasename.java | 80 + .../pg_catalog/routines/PgIndexesSize.java | 65 + .../pg_catalog/routines/PgIsInRecovery.java | 36 + .../routines/PgIsOtherTempSchema.java | 59 + .../routines/PgIsWalReplayPaused.java | 37 + .../PgIsolationTestSessionIsBlocked.java | 82 + .../pg_catalog/routines/PgJitAvailable.java | 36 + .../routines/PgLastCommittedXact.java | 71 + .../routines/PgLastWalReceiveLsn.java | 48 + .../routines/PgLastWalReplayLsn.java | 48 + .../routines/PgLastXactReplayTimestamp.java | 39 + .../routines/PgLogicalEmitMessage1.java | 114 + .../routines/PgLogicalEmitMessage2.java | 114 + .../db_beans/pg_catalog/routines/PgLsn.java | 73 + .../pg_catalog/routines/PgLsnCmp.java | 92 + .../db_beans/pg_catalog/routines/PgLsnEq.java | 92 + .../db_beans/pg_catalog/routines/PgLsnGe.java | 92 + .../db_beans/pg_catalog/routines/PgLsnGt.java | 92 + .../pg_catalog/routines/PgLsnHash.java | 65 + .../routines/PgLsnHashExtended.java | 86 + .../db_beans/pg_catalog/routines/PgLsnIn.java | 76 + .../pg_catalog/routines/PgLsnLarger.java | 103 + .../db_beans/pg_catalog/routines/PgLsnLe.java | 92 + .../db_beans/pg_catalog/routines/PgLsnLt.java | 92 + .../db_beans/pg_catalog/routines/PgLsnMi.java | 94 + .../pg_catalog/routines/PgLsnMii.java | 100 + .../db_beans/pg_catalog/routines/PgLsnNe.java | 92 + .../pg_catalog/routines/PgLsnOut.java | 76 + .../pg_catalog/routines/PgLsnPli.java | 100 + .../pg_catalog/routines/PgLsnRecv.java | 76 + .../pg_catalog/routines/PgLsnSend.java | 65 + .../pg_catalog/routines/PgLsnSmaller.java | 103 + .../pg_catalog/routines/PgMcvListIn.java | 76 + .../pg_catalog/routines/PgMcvListOut.java | 76 + .../pg_catalog/routines/PgMcvListRecv.java | 76 + .../pg_catalog/routines/PgMcvListSend.java | 65 + .../pg_catalog/routines/PgMyTempSchema.java | 36 + .../pg_catalog/routines/PgNdistinctIn.java | 76 + .../pg_catalog/routines/PgNdistinctOut.java | 76 + .../pg_catalog/routines/PgNdistinctRecv.java | 76 + .../pg_catalog/routines/PgNdistinctSend.java | 65 + .../pg_catalog/routines/PgNextoid.java | 113 + .../pg_catalog/routines/PgNodeTreeIn.java | 76 + .../pg_catalog/routines/PgNodeTreeOut.java | 76 + .../pg_catalog/routines/PgNodeTreeRecv.java | 76 + .../pg_catalog/routines/PgNodeTreeSend.java | 65 + .../routines/PgNotificationQueueUsage.java | 37 + .../pg_catalog/routines/PgNotify.java | 56 + .../routines/PgOpclassIsVisible.java | 58 + .../routines/PgOperatorIsVisible.java | 59 + .../routines/PgOpfamilyIsVisible.java | 59 + .../pg_catalog/routines/PgPartitionRoot.java | 76 + .../routines/PgPostmasterStartTime.java | 39 + .../pg_catalog/routines/PgReadFileOld.java | 100 + .../routines/PgRelationFilenode.java | 65 + .../routines/PgRelationFilepath.java | 65 + .../routines/PgRelationIsPublishable.java | 66 + .../routines/PgRelationIsUpdatable.java | 87 + .../pg_catalog/routines/PgRelationSize1.java | 66 + .../pg_catalog/routines/PgRelationSize2.java | 87 + .../routines/PgReplicationSlotAdvance.java | 110 + .../routines/PgRotateLogfileOld.java | 36 + .../routines/PgSafeSnapshotBlockingPids.java | 59 + .../routines/PgSequenceLastValue.java | 66 + .../routines/PgSequenceParameters.java | 138 + .../routines/PgSettingsGetFlags.java | 58 + .../pg_catalog/routines/PgSizeBytes.java | 58 + .../pg_catalog/routines/PgSizePretty1.java | 59 + .../pg_catalog/routines/PgSizePretty2.java | 61 + .../db_beans/pg_catalog/routines/PgSleep.java | 43 + .../pg_catalog/routines/PgSleepFor.java | 44 + .../pg_catalog/routines/PgSleepUntil.java | 45 + .../pg_catalog/routines/PgSnapshotIn.java | 76 + .../pg_catalog/routines/PgSnapshotOut.java | 76 + .../pg_catalog/routines/PgSnapshotRecv.java | 76 + .../pg_catalog/routines/PgSnapshotSend.java | 65 + .../pg_catalog/routines/PgSnapshotXmax.java | 76 + .../pg_catalog/routines/PgSnapshotXmin.java | 76 + .../routines/PgStatClearSnapshot.java | 26 + .../routines/PgStatForceNextFlush.java | 26 + .../routines/PgStatGetAnalyzeCount.java | 59 + .../routines/PgStatGetArchiver.java | 131 + .../routines/PgStatGetAutoanalyzeCount.java | 59 + .../routines/PgStatGetAutovacuumCount.java | 59 + .../routines/PgStatGetBackendActivity.java | 59 + .../PgStatGetBackendActivityStart.java | 62 + .../routines/PgStatGetBackendClientAddr.java | 71 + .../routines/PgStatGetBackendClientPort.java | 59 + .../routines/PgStatGetBackendDbid.java | 59 + .../routines/PgStatGetBackendPid.java | 59 + .../routines/PgStatGetBackendStart.java | 61 + .../routines/PgStatGetBackendUserid.java | 59 + .../routines/PgStatGetBackendWaitEvent.java | 59 + .../PgStatGetBackendWaitEventType.java | 60 + .../routines/PgStatGetBackendXactStart.java | 61 + ...gStatGetBgwriterBufWrittenCheckpoints.java | 37 + .../PgStatGetBgwriterBufWrittenClean.java | 37 + .../PgStatGetBgwriterMaxwrittenClean.java | 37 + ...PgStatGetBgwriterRequestedCheckpoints.java | 37 + .../PgStatGetBgwriterStatResetTime.java | 39 + .../PgStatGetBgwriterTimedCheckpoints.java | 37 + .../routines/PgStatGetBlocksFetched.java | 59 + .../routines/PgStatGetBlocksHit.java | 59 + .../routines/PgStatGetBufAlloc.java | 36 + .../routines/PgStatGetBufFsyncBackend.java | 37 + .../routines/PgStatGetBufWrittenBackend.java | 37 + .../routines/PgStatGetCheckpointSyncTime.java | 37 + .../PgStatGetCheckpointWriteTime.java | 37 + .../routines/PgStatGetDbActiveTime.java | 59 + .../routines/PgStatGetDbBlkReadTime.java | 59 + .../routines/PgStatGetDbBlkWriteTime.java | 59 + .../routines/PgStatGetDbBlocksFetched.java | 59 + .../routines/PgStatGetDbBlocksHit.java | 59 + .../routines/PgStatGetDbChecksumFailures.java | 60 + .../PgStatGetDbChecksumLastFailure.java | 62 + .../routines/PgStatGetDbConflictAll.java | 59 + .../PgStatGetDbConflictBufferpin.java | 60 + .../routines/PgStatGetDbConflictLock.java | 59 + .../routines/PgStatGetDbConflictSnapshot.java | 60 + .../PgStatGetDbConflictStartupDeadlock.java | 60 + .../PgStatGetDbConflictTablespace.java | 60 + .../routines/PgStatGetDbDeadlocks.java | 59 + .../PgStatGetDbIdleInTransactionTime.java | 60 + .../routines/PgStatGetDbNumbackends.java | 59 + .../routines/PgStatGetDbSessionTime.java | 59 + .../routines/PgStatGetDbSessions.java | 59 + .../PgStatGetDbSessionsAbandoned.java | 60 + .../routines/PgStatGetDbSessionsFatal.java | 59 + .../routines/PgStatGetDbSessionsKilled.java | 59 + .../routines/PgStatGetDbStatResetTime.java | 61 + .../routines/PgStatGetDbTempBytes.java | 59 + .../routines/PgStatGetDbTempFiles.java | 59 + .../routines/PgStatGetDbTuplesDeleted.java | 59 + .../routines/PgStatGetDbTuplesFetched.java | 59 + .../routines/PgStatGetDbTuplesInserted.java | 59 + .../routines/PgStatGetDbTuplesReturned.java | 59 + .../routines/PgStatGetDbTuplesUpdated.java | 59 + .../routines/PgStatGetDbXactCommit.java | 59 + .../routines/PgStatGetDbXactRollback.java | 59 + .../routines/PgStatGetDeadTuples.java | 59 + .../routines/PgStatGetFunctionCalls.java | 59 + .../routines/PgStatGetFunctionSelfTime.java | 59 + .../routines/PgStatGetFunctionTotalTime.java | 59 + .../routines/PgStatGetInsSinceVacuum.java | 59 + .../routines/PgStatGetLastAnalyzeTime.java | 61 + .../PgStatGetLastAutoanalyzeTime.java | 62 + .../routines/PgStatGetLastAutovacuumTime.java | 62 + .../routines/PgStatGetLastVacuumTime.java | 61 + .../routines/PgStatGetLiveTuples.java | 59 + .../routines/PgStatGetModSinceAnalyze.java | 59 + .../routines/PgStatGetNumscans.java | 58 + .../routines/PgStatGetReplicationSlot.java | 193 + .../routines/PgStatGetSnapshotTimestamp.java | 39 + .../routines/PgStatGetSubscriptionStats.java | 111 + .../routines/PgStatGetTuplesDeleted.java | 59 + .../routines/PgStatGetTuplesFetched.java | 59 + .../routines/PgStatGetTuplesHotUpdated.java | 59 + .../routines/PgStatGetTuplesInserted.java | 59 + .../routines/PgStatGetTuplesReturned.java | 59 + .../routines/PgStatGetTuplesUpdated.java | 59 + .../routines/PgStatGetVacuumCount.java | 59 + .../pg_catalog/routines/PgStatGetWal.java | 151 + .../routines/PgStatGetWalReceiver.java | 286 + .../routines/PgStatGetXactBlocksFetched.java | 59 + .../routines/PgStatGetXactBlocksHit.java | 59 + .../routines/PgStatGetXactFunctionCalls.java | 59 + .../PgStatGetXactFunctionSelfTime.java | 60 + .../PgStatGetXactFunctionTotalTime.java | 60 + .../routines/PgStatGetXactNumscans.java | 59 + .../routines/PgStatGetXactTuplesDeleted.java | 59 + .../routines/PgStatGetXactTuplesFetched.java | 59 + .../PgStatGetXactTuplesHotUpdated.java | 60 + .../routines/PgStatGetXactTuplesInserted.java | 60 + .../routines/PgStatGetXactTuplesReturned.java | 60 + .../routines/PgStatGetXactTuplesUpdated.java | 59 + .../routines/PgStatisticsObjIsVisible.java | 59 + .../routines/PgStopMakingPinnedObjects.java | 26 + .../pg_catalog/routines/PgTableIsVisible.java | 58 + .../pg_catalog/routines/PgTableSize.java | 65 + .../routines/PgTablespaceLocation.java | 59 + .../routines/PgTablespaceSize1.java | 59 + .../routines/PgTablespaceSize2.java | 59 + .../routines/PgTerminateBackend.java | 79 + .../routines/PgTotalRelationSize.java | 66 + .../pg_catalog/routines/PgTriggerDepth.java | 36 + .../routines/PgTryAdvisoryLock1.java | 59 + .../routines/PgTryAdvisoryLock2.java | 80 + .../routines/PgTryAdvisoryLockShared1.java | 60 + .../routines/PgTryAdvisoryLockShared2.java | 81 + .../routines/PgTryAdvisoryXactLock1.java | 60 + .../routines/PgTryAdvisoryXactLock2.java | 81 + .../PgTryAdvisoryXactLockShared1.java | 61 + .../PgTryAdvisoryXactLockShared2.java | 83 + .../routines/PgTsConfigIsVisible.java | 59 + .../routines/PgTsDictIsVisible.java | 58 + .../routines/PgTsParserIsVisible.java | 59 + .../routines/PgTsTemplateIsVisible.java | 59 + .../pg_catalog/routines/PgTypeIsVisible.java | 58 + .../pg_catalog/routines/PgTypeof.java | 77 + .../routines/PgVisibleInSnapshot.java | 93 + .../pg_catalog/routines/PgWalLsnDiff.java | 94 + .../pg_catalog/routines/PgWalfileName.java | 65 + .../routines/PgWalfileNameOffset.java | 76 + .../routines/PgXactCommitTimestamp.java | 61 + .../routines/PgXactCommitTimestampOrigin.java | 74 + .../pg_catalog/routines/PgXactStatus.java | 65 + .../pg_catalog/routines/PgproBuild.java | 36 + .../pg_catalog/routines/PgproEdition.java | 36 + .../pg_catalog/routines/PgproVersion.java | 36 + .../pg_catalog/routines/PhrasetoTsquery1.java | 72 + .../pg_catalog/routines/PhrasetoTsquery2.java | 99 + .../db_beans/pg_catalog/routines/Pi.java | 36 + .../pg_catalog/routines/PlaintoTsquery1.java | 99 + .../pg_catalog/routines/PlaintoTsquery2.java | 72 + .../routines/PlpgsqlCallHandler.java | 48 + .../routines/PlpgsqlInlineHandler.java | 49 + .../pg_catalog/routines/PlpgsqlValidator.java | 43 + .../db_beans/pg_catalog/routines/Point1.java | 77 + .../db_beans/pg_catalog/routines/Point2.java | 93 + .../db_beans/pg_catalog/routines/Point3.java | 77 + .../db_beans/pg_catalog/routines/Point4.java | 77 + .../db_beans/pg_catalog/routines/Point5.java | 77 + .../pg_catalog/routines/PointAbove.java | 92 + .../pg_catalog/routines/PointAdd.java | 103 + .../pg_catalog/routines/PointBelow.java | 92 + .../pg_catalog/routines/PointDistance.java | 92 + .../pg_catalog/routines/PointDiv.java | 103 + .../db_beans/pg_catalog/routines/PointEq.java | 92 + .../pg_catalog/routines/PointHoriz.java | 92 + .../db_beans/pg_catalog/routines/PointIn.java | 76 + .../pg_catalog/routines/PointLeft.java | 92 + .../pg_catalog/routines/PointMul.java | 103 + .../db_beans/pg_catalog/routines/PointNe.java | 92 + .../pg_catalog/routines/PointOut.java | 76 + .../pg_catalog/routines/PointRecv.java | 76 + .../pg_catalog/routines/PointRight.java | 92 + .../pg_catalog/routines/PointSend.java | 65 + .../pg_catalog/routines/PointSub.java | 103 + .../pg_catalog/routines/PointVert.java | 92 + .../pg_catalog/routines/PolyAbove.java | 92 + .../pg_catalog/routines/PolyBelow.java | 92 + .../pg_catalog/routines/PolyCenter.java | 76 + .../pg_catalog/routines/PolyContain.java | 92 + .../pg_catalog/routines/PolyContainPt.java | 92 + .../pg_catalog/routines/PolyContained.java | 92 + .../pg_catalog/routines/PolyDistance.java | 92 + .../db_beans/pg_catalog/routines/PolyIn.java | 76 + .../pg_catalog/routines/PolyLeft.java | 92 + .../pg_catalog/routines/PolyNpoints.java | 65 + .../db_beans/pg_catalog/routines/PolyOut.java | 76 + .../pg_catalog/routines/PolyOverabove.java | 92 + .../pg_catalog/routines/PolyOverbelow.java | 92 + .../pg_catalog/routines/PolyOverlap.java | 92 + .../pg_catalog/routines/PolyOverleft.java | 92 + .../pg_catalog/routines/PolyOverright.java | 92 + .../pg_catalog/routines/PolyRecv.java | 76 + .../pg_catalog/routines/PolyRight.java | 92 + .../pg_catalog/routines/PolySame.java | 92 + .../pg_catalog/routines/PolySend.java | 65 + .../pg_catalog/routines/Polygon1.java | 77 + .../pg_catalog/routines/Polygon2.java | 77 + .../pg_catalog/routines/Polygon3.java | 99 + .../pg_catalog/routines/Polygon4.java | 77 + .../db_beans/pg_catalog/routines/Popen.java | 76 + .../pg_catalog/routines/Position1.java | 80 + .../pg_catalog/routines/Position2.java | 80 + .../pg_catalog/routines/Position3.java | 80 + .../pg_catalog/routines/Positionjoinsel.java | 161 + .../pg_catalog/routines/Positionsel.java | 134 + .../routines/PostgresqlFdwValidator.java | 80 + .../db_beans/pg_catalog/routines/Pow1.java | 80 + .../db_beans/pg_catalog/routines/Pow2.java | 82 + .../db_beans/pg_catalog/routines/Power1.java | 80 + .../db_beans/pg_catalog/routines/Power2.java | 82 + .../pg_catalog/routines/Prefixjoinsel.java | 161 + .../pg_catalog/routines/Prefixsel.java | 134 + .../db_beans/pg_catalog/routines/PrsdEnd.java | 49 + .../pg_catalog/routines/PrsdHeadline.java | 130 + .../pg_catalog/routines/PrsdLextype.java | 76 + .../pg_catalog/routines/PrsdNexttoken.java | 130 + .../pg_catalog/routines/PrsdStart.java | 98 + .../routines/PtContainedCircle.java | 92 + .../pg_catalog/routines/PtContainedPoly.java | 92 + .../pg_catalog/routines/QueryToXml.java | 122 + .../routines/QueryToXmlAndXmlschema.java | 125 + .../pg_catalog/routines/QueryToXmlschema.java | 122 + .../pg_catalog/routines/Querytree.java | 65 + .../pg_catalog/routines/QuoteIdent.java | 58 + .../pg_catalog/routines/QuoteLiteral1.java | 59 + .../pg_catalog/routines/QuoteLiteral2.java | 66 + .../pg_catalog/routines/QuoteNullable1.java | 59 + .../pg_catalog/routines/QuoteNullable2.java | 66 + .../db_beans/pg_catalog/routines/Radians.java | 58 + .../db_beans/pg_catalog/routines/Radius.java | 65 + .../db_beans/pg_catalog/routines/Random.java | 36 + .../pg_catalog/routines/RangeAdjacent.java | 92 + .../routines/RangeAdjacentMultirange.java | 93 + .../pg_catalog/routines/RangeAfter.java | 92 + .../routines/RangeAfterMultirange.java | 93 + .../pg_catalog/routines/RangeAgg1.java | 77 + .../pg_catalog/routines/RangeAgg2.java | 77 + .../pg_catalog/routines/RangeAggFinalfn.java | 103 + .../pg_catalog/routines/RangeAggTransfn.java | 103 + .../pg_catalog/routines/RangeBefore.java | 92 + .../routines/RangeBeforeMultirange.java | 93 + .../pg_catalog/routines/RangeCmp.java | 92 + .../pg_catalog/routines/RangeContainedBy.java | 92 + .../routines/RangeContainedByMultirange.java | 93 + .../pg_catalog/routines/RangeContains.java | 92 + .../routines/RangeContainsElem.java | 92 + .../routines/RangeContainsMultirange.java | 93 + .../db_beans/pg_catalog/routines/RangeEq.java | 92 + .../db_beans/pg_catalog/routines/RangeGe.java | 92 + .../routines/RangeGistConsistent.java | 161 + .../pg_catalog/routines/RangeGistPenalty.java | 130 + .../routines/RangeGistPicksplit.java | 103 + .../pg_catalog/routines/RangeGistSame.java | 130 + .../pg_catalog/routines/RangeGistUnion.java | 103 + .../db_beans/pg_catalog/routines/RangeGt.java | 92 + .../db_beans/pg_catalog/routines/RangeIn.java | 119 + .../pg_catalog/routines/RangeIntersect.java | 103 + .../routines/RangeIntersectAgg1.java | 77 + .../routines/RangeIntersectAgg2.java | 77 + .../routines/RangeIntersectAggTransfn.java | 103 + .../db_beans/pg_catalog/routines/RangeLe.java | 92 + .../db_beans/pg_catalog/routines/RangeLt.java | 92 + .../pg_catalog/routines/RangeMerge1.java | 104 + .../pg_catalog/routines/RangeMerge2.java | 77 + .../pg_catalog/routines/RangeMinus.java | 103 + .../db_beans/pg_catalog/routines/RangeNe.java | 92 + .../pg_catalog/routines/RangeOut.java | 76 + .../pg_catalog/routines/RangeOverlaps.java | 92 + .../routines/RangeOverlapsMultirange.java | 93 + .../pg_catalog/routines/RangeOverleft.java | 92 + .../routines/RangeOverleftMultirange.java | 93 + .../pg_catalog/routines/RangeOverright.java | 92 + .../routines/RangeOverrightMultirange.java | 93 + .../pg_catalog/routines/RangeRecv.java | 119 + .../pg_catalog/routines/RangeSend.java | 65 + .../pg_catalog/routines/RangeTypanalyze.java | 65 + .../pg_catalog/routines/RangeUnion.java | 103 + .../pg_catalog/routines/Rangesel.java | 134 + .../db_beans/pg_catalog/routines/Rank1.java | 37 + .../db_beans/pg_catalog/routines/Rank2.java | 65 + .../pg_catalog/routines/RankFinal.java | 92 + .../routines/RawArraySubscriptHandler.java | 76 + .../pg_catalog/routines/RecordEq.java | 80 + .../pg_catalog/routines/RecordGe.java | 80 + .../pg_catalog/routines/RecordGt.java | 80 + .../pg_catalog/routines/RecordImageEq.java | 80 + .../pg_catalog/routines/RecordImageGe.java | 80 + .../pg_catalog/routines/RecordImageGt.java | 80 + .../pg_catalog/routines/RecordImageLe.java | 80 + .../pg_catalog/routines/RecordImageLt.java | 80 + .../pg_catalog/routines/RecordImageNe.java | 80 + .../pg_catalog/routines/RecordIn.java | 108 + .../pg_catalog/routines/RecordLe.java | 80 + .../pg_catalog/routines/RecordLt.java | 80 + .../pg_catalog/routines/RecordNe.java | 80 + .../pg_catalog/routines/RecordOut.java | 72 + .../pg_catalog/routines/RecordRecv.java | 108 + .../pg_catalog/routines/RecordSend.java | 59 + .../pg_catalog/routines/Regclass.java | 71 + .../pg_catalog/routines/Regclassin.java | 76 + .../pg_catalog/routines/Regclassout.java | 76 + .../pg_catalog/routines/Regclassrecv.java | 76 + .../pg_catalog/routines/Regclasssend.java | 65 + .../pg_catalog/routines/Regcollationin.java | 76 + .../pg_catalog/routines/Regcollationout.java | 76 + .../pg_catalog/routines/Regcollationrecv.java | 76 + .../pg_catalog/routines/Regcollationsend.java | 65 + .../pg_catalog/routines/Regconfigin.java | 76 + .../pg_catalog/routines/Regconfigout.java | 76 + .../pg_catalog/routines/Regconfigrecv.java | 76 + .../pg_catalog/routines/Regconfigsend.java | 65 + .../pg_catalog/routines/Regdictionaryin.java | 76 + .../pg_catalog/routines/Regdictionaryout.java | 76 + .../routines/Regdictionaryrecv.java | 76 + .../routines/Regdictionarysend.java | 65 + .../pg_catalog/routines/Regexeqjoinsel.java | 161 + .../pg_catalog/routines/Regexeqsel.java | 134 + .../pg_catalog/routines/Regexnejoinsel.java | 161 + .../pg_catalog/routines/Regexnesel.java | 134 + .../pg_catalog/routines/RegexpCount1.java | 80 + .../pg_catalog/routines/RegexpCount2.java | 101 + .../pg_catalog/routines/RegexpCount3.java | 122 + .../pg_catalog/routines/RegexpInstr1.java | 80 + .../pg_catalog/routines/RegexpInstr2.java | 101 + .../pg_catalog/routines/RegexpInstr3.java | 122 + .../pg_catalog/routines/RegexpInstr4.java | 143 + .../pg_catalog/routines/RegexpInstr5.java | 164 + .../pg_catalog/routines/RegexpInstr6.java | 185 + .../pg_catalog/routines/RegexpLike1.java | 80 + .../pg_catalog/routines/RegexpLike2.java | 101 + .../pg_catalog/routines/RegexpMatch1.java | 80 + .../pg_catalog/routines/RegexpMatch2.java | 101 + .../pg_catalog/routines/RegexpReplace1.java | 101 + .../pg_catalog/routines/RegexpReplace2.java | 122 + .../pg_catalog/routines/RegexpReplace3.java | 164 + .../pg_catalog/routines/RegexpReplace4.java | 143 + .../pg_catalog/routines/RegexpReplace5.java | 122 + .../routines/RegexpSplitToArray1.java | 80 + .../routines/RegexpSplitToArray2.java | 101 + .../pg_catalog/routines/RegexpSubstr1.java | 80 + .../pg_catalog/routines/RegexpSubstr2.java | 101 + .../pg_catalog/routines/RegexpSubstr3.java | 122 + .../pg_catalog/routines/RegexpSubstr4.java | 143 + .../pg_catalog/routines/RegexpSubstr5.java | 164 + .../pg_catalog/routines/Regnamespacein.java | 76 + .../pg_catalog/routines/Regnamespaceout.java | 76 + .../pg_catalog/routines/Regnamespacerecv.java | 76 + .../pg_catalog/routines/Regnamespacesend.java | 65 + .../pg_catalog/routines/Regoperatorin.java | 76 + .../pg_catalog/routines/Regoperatorout.java | 76 + .../pg_catalog/routines/Regoperatorrecv.java | 76 + .../pg_catalog/routines/Regoperatorsend.java | 65 + .../pg_catalog/routines/Regoperin.java | 76 + .../pg_catalog/routines/Regoperout.java | 76 + .../pg_catalog/routines/Regoperrecv.java | 76 + .../pg_catalog/routines/Regopersend.java | 65 + .../pg_catalog/routines/Regprocedurein.java | 76 + .../pg_catalog/routines/Regprocedureout.java | 76 + .../pg_catalog/routines/Regprocedurerecv.java | 76 + .../pg_catalog/routines/Regproceduresend.java | 65 + .../pg_catalog/routines/Regprocin.java | 65 + .../pg_catalog/routines/Regprocout.java | 71 + .../pg_catalog/routines/Regprocrecv.java | 65 + .../pg_catalog/routines/Regprocsend.java | 58 + .../pg_catalog/routines/Regprofilein.java | 76 + .../pg_catalog/routines/Regprofileout.java | 76 + .../pg_catalog/routines/Regprofilerecv.java | 76 + .../pg_catalog/routines/Regprofilesend.java | 65 + .../pg_catalog/routines/RegrAvgx.java | 79 + .../pg_catalog/routines/RegrAvgy.java | 79 + .../pg_catalog/routines/RegrCount.java | 79 + .../pg_catalog/routines/RegrIntercept.java | 79 + .../db_beans/pg_catalog/routines/RegrR2.java | 79 + .../pg_catalog/routines/RegrSlope.java | 79 + .../db_beans/pg_catalog/routines/RegrSxx.java | 79 + .../db_beans/pg_catalog/routines/RegrSxy.java | 79 + .../db_beans/pg_catalog/routines/RegrSyy.java | 79 + .../pg_catalog/routines/Regrolein.java | 76 + .../pg_catalog/routines/Regroleout.java | 76 + .../pg_catalog/routines/Regrolerecv.java | 76 + .../pg_catalog/routines/Regrolesend.java | 65 + .../pg_catalog/routines/Regtypein.java | 76 + .../pg_catalog/routines/Regtypeout.java | 76 + .../pg_catalog/routines/Regtyperecv.java | 76 + .../pg_catalog/routines/Regtypesend.java | 65 + .../db_beans/pg_catalog/routines/Repeat.java | 79 + .../db_beans/pg_catalog/routines/Replace.java | 100 + .../db_beans/pg_catalog/routines/Reverse.java | 58 + .../db_beans/pg_catalog/routines/Right.java | 79 + .../db_beans/pg_catalog/routines/Round1.java | 59 + .../db_beans/pg_catalog/routines/Round2.java | 82 + .../db_beans/pg_catalog/routines/Round3.java | 61 + .../pg_catalog/routines/RowNumber.java | 36 + .../routines/RowSecurityActive1.java | 59 + .../routines/RowSecurityActive2.java | 59 + .../pg_catalog/routines/RowToJson1.java | 61 + .../pg_catalog/routines/RowToJson2.java | 82 + .../db_beans/pg_catalog/routines/Rpad1.java | 101 + .../db_beans/pg_catalog/routines/Rpad2.java | 80 + .../db_beans/pg_catalog/routines/Rtrim1.java | 80 + .../db_beans/pg_catalog/routines/Rtrim2.java | 80 + .../db_beans/pg_catalog/routines/Rtrim3.java | 59 + .../routines/SatisfiesHashPartition.java | 128 + .../pg_catalog/routines/Scalargejoinsel.java | 161 + .../pg_catalog/routines/Scalargesel.java | 134 + .../pg_catalog/routines/Scalargtjoinsel.java | 161 + .../pg_catalog/routines/Scalargtsel.java | 134 + .../pg_catalog/routines/Scalarlejoinsel.java | 161 + .../pg_catalog/routines/Scalarlesel.java | 134 + .../pg_catalog/routines/Scalarltjoinsel.java | 161 + .../pg_catalog/routines/Scalarltsel.java | 134 + .../db_beans/pg_catalog/routines/Scale.java | 60 + .../pg_catalog/routines/SchemaToXml.java | 122 + .../routines/SchemaToXmlAndXmlschema.java | 125 + .../routines/SchemaToXmlschema.java | 122 + .../pg_catalog/routines/SessionUser.java | 36 + .../db_beans/pg_catalog/routines/SetBit1.java | 101 + .../db_beans/pg_catalog/routines/SetBit2.java | 101 + .../db_beans/pg_catalog/routines/SetByte.java | 100 + .../pg_catalog/routines/SetConfig.java | 100 + .../pg_catalog/routines/SetMasklen1.java | 99 + .../pg_catalog/routines/SetMasklen2.java | 99 + .../db_beans/pg_catalog/routines/Setseed.java | 43 + .../db_beans/pg_catalog/routines/Setval1.java | 87 + .../db_beans/pg_catalog/routines/Setval2.java | 108 + .../pg_catalog/routines/Setweight1.java | 120 + .../pg_catalog/routines/Setweight2.java | 99 + .../db_beans/pg_catalog/routines/Sha224.java | 58 + .../db_beans/pg_catalog/routines/Sha256.java | 58 + .../db_beans/pg_catalog/routines/Sha384.java | 58 + .../db_beans/pg_catalog/routines/Sha512.java | 58 + .../db_beans/pg_catalog/routines/ShellIn.java | 49 + .../pg_catalog/routines/ShellOut.java | 77 + .../routines/ShiftJis_2004ToEucJis_2004.java | 177 + .../routines/ShiftJis_2004ToUtf8.java | 177 + .../pg_catalog/routines/ShobjDescription.java | 79 + .../db_beans/pg_catalog/routines/Sign1.java | 61 + .../db_beans/pg_catalog/routines/Sign2.java | 59 + .../pg_catalog/routines/SimilarEscape.java | 79 + .../pg_catalog/routines/SimilarToEscape1.java | 80 + .../pg_catalog/routines/SimilarToEscape2.java | 59 + .../db_beans/pg_catalog/routines/Sin.java | 58 + .../db_beans/pg_catalog/routines/Sind.java | 58 + .../db_beans/pg_catalog/routines/Sinh.java | 58 + .../pg_catalog/routines/SjisToEucJp.java | 176 + .../pg_catalog/routines/SjisToMic.java | 176 + .../pg_catalog/routines/SjisToUtf8.java | 176 + .../db_beans/pg_catalog/routines/Slope.java | 92 + .../routines/SpgBboxQuadConfig.java | 68 + .../pg_catalog/routines/SpgBoxQuadChoose.java | 68 + .../pg_catalog/routines/SpgBoxQuadConfig.java | 68 + .../routines/SpgBoxQuadInnerConsistent.java | 68 + .../routines/SpgBoxQuadLeafConsistent.java | 93 + .../routines/SpgBoxQuadPicksplit.java | 68 + .../pg_catalog/routines/SpgKdChoose.java | 68 + .../pg_catalog/routines/SpgKdConfig.java | 68 + .../routines/SpgKdInnerConsistent.java | 68 + .../pg_catalog/routines/SpgKdPicksplit.java | 68 + .../routines/SpgPolyQuadCompress.java | 76 + .../pg_catalog/routines/SpgQuadChoose.java | 68 + .../pg_catalog/routines/SpgQuadConfig.java | 68 + .../routines/SpgQuadInnerConsistent.java | 68 + .../routines/SpgQuadLeafConsistent.java | 93 + .../pg_catalog/routines/SpgQuadPicksplit.java | 68 + .../routines/SpgRangeQuadChoose.java | 68 + .../routines/SpgRangeQuadConfig.java | 68 + .../routines/SpgRangeQuadInnerConsistent.java | 68 + .../routines/SpgRangeQuadLeafConsistent.java | 93 + .../routines/SpgRangeQuadPicksplit.java | 68 + .../pg_catalog/routines/SpgTextChoose.java | 68 + .../pg_catalog/routines/SpgTextConfig.java | 68 + .../routines/SpgTextInnerConsistent.java | 68 + .../routines/SpgTextLeafConsistent.java | 93 + .../pg_catalog/routines/SpgTextPicksplit.java | 68 + .../pg_catalog/routines/Spghandler.java | 76 + .../pg_catalog/routines/SplitPart.java | 100 + .../db_beans/pg_catalog/routines/Sqrt1.java | 59 + .../db_beans/pg_catalog/routines/Sqrt2.java | 61 + .../pg_catalog/routines/StartsWith.java | 79 + .../routines/StatementTimestamp.java | 38 + .../db_beans/pg_catalog/routines/Stddev1.java | 61 + .../db_beans/pg_catalog/routines/Stddev2.java | 61 + .../db_beans/pg_catalog/routines/Stddev3.java | 61 + .../db_beans/pg_catalog/routines/Stddev4.java | 59 + .../db_beans/pg_catalog/routines/Stddev5.java | 59 + .../db_beans/pg_catalog/routines/Stddev6.java | 61 + .../pg_catalog/routines/StddevPop1.java | 61 + .../pg_catalog/routines/StddevPop2.java | 61 + .../pg_catalog/routines/StddevPop3.java | 61 + .../pg_catalog/routines/StddevPop4.java | 59 + .../pg_catalog/routines/StddevPop5.java | 59 + .../pg_catalog/routines/StddevPop6.java | 61 + .../pg_catalog/routines/StddevSamp1.java | 61 + .../pg_catalog/routines/StddevSamp2.java | 61 + .../pg_catalog/routines/StddevSamp3.java | 61 + .../pg_catalog/routines/StddevSamp4.java | 59 + .../pg_catalog/routines/StddevSamp5.java | 59 + .../pg_catalog/routines/StddevSamp6.java | 61 + .../pg_catalog/routines/StringAgg1.java | 80 + .../pg_catalog/routines/StringAgg2.java | 80 + .../pg_catalog/routines/StringAggFinalfn.java | 65 + .../pg_catalog/routines/StringAggTransfn.java | 119 + .../pg_catalog/routines/StringToArray1.java | 101 + .../pg_catalog/routines/StringToArray2.java | 80 + .../db_beans/pg_catalog/routines/Strip.java | 76 + .../db_beans/pg_catalog/routines/Strpos.java | 79 + .../db_beans/pg_catalog/routines/Substr1.java | 101 + .../db_beans/pg_catalog/routines/Substr2.java | 80 + .../db_beans/pg_catalog/routines/Substr3.java | 101 + .../db_beans/pg_catalog/routines/Substr4.java | 80 + .../pg_catalog/routines/Substring1.java | 101 + .../pg_catalog/routines/Substring2.java | 80 + .../pg_catalog/routines/Substring3.java | 101 + .../pg_catalog/routines/Substring4.java | 80 + .../pg_catalog/routines/Substring5.java | 80 + .../pg_catalog/routines/Substring6.java | 101 + .../pg_catalog/routines/Substring7.java | 101 + .../pg_catalog/routines/Substring8.java | 80 + .../db_beans/pg_catalog/routines/Sum1.java | 61 + .../db_beans/pg_catalog/routines/Sum2.java | 59 + .../db_beans/pg_catalog/routines/Sum3.java | 59 + .../db_beans/pg_catalog/routines/Sum4.java | 59 + .../db_beans/pg_catalog/routines/Sum5.java | 59 + .../db_beans/pg_catalog/routines/Sum6.java | 77 + .../db_beans/pg_catalog/routines/Sum7.java | 60 + .../db_beans/pg_catalog/routines/Sum8.java | 61 + .../db_beans/pg_catalog/routines/System.java | 76 + .../pg_catalog/routines/TableAmHandlerIn.java | 76 + .../routines/TableAmHandlerOut.java | 76 + .../pg_catalog/routines/TableToXml.java | 129 + .../routines/TableToXmlAndXmlschema.java | 132 + .../pg_catalog/routines/TableToXmlschema.java | 129 + .../db_beans/pg_catalog/routines/Tan.java | 58 + .../db_beans/pg_catalog/routines/Tand.java | 58 + .../db_beans/pg_catalog/routines/Tanh.java | 58 + .../db_beans/pg_catalog/routines/Text1.java | 60 + .../db_beans/pg_catalog/routines/Text2.java | 59 + .../db_beans/pg_catalog/routines/Text3.java | 59 + .../db_beans/pg_catalog/routines/Text4.java | 59 + .../db_beans/pg_catalog/routines/Text5.java | 66 + .../db_beans/pg_catalog/routines/Text6.java | 59 + .../db_beans/pg_catalog/routines/TextGe.java | 79 + .../db_beans/pg_catalog/routines/TextGt.java | 79 + .../pg_catalog/routines/TextLarger.java | 79 + .../db_beans/pg_catalog/routines/TextLe.java | 79 + .../db_beans/pg_catalog/routines/TextLt.java | 79 + .../pg_catalog/routines/TextPatternGe.java | 79 + .../pg_catalog/routines/TextPatternGt.java | 79 + .../pg_catalog/routines/TextPatternLe.java | 79 + .../pg_catalog/routines/TextPatternLt.java | 79 + .../pg_catalog/routines/TextSmaller.java | 79 + .../routines/TextStartsWithSupport.java | 76 + .../pg_catalog/routines/Textanycat.java | 86 + .../db_beans/pg_catalog/routines/Textcat.java | 79 + .../db_beans/pg_catalog/routines/Texteq.java | 79 + .../pg_catalog/routines/Texteqname.java | 79 + .../pg_catalog/routines/Textgename.java | 79 + .../pg_catalog/routines/Textgtname.java | 79 + .../pg_catalog/routines/Texticlike.java | 79 + .../routines/TexticlikeSupport.java | 76 + .../pg_catalog/routines/Texticnlike.java | 79 + .../pg_catalog/routines/Texticregexeq.java | 79 + .../routines/TexticregexeqSupport.java | 76 + .../pg_catalog/routines/Texticregexne.java | 79 + .../db_beans/pg_catalog/routines/Textin.java | 65 + .../db_beans/pg_catalog/routines/Textlen.java | 58 + .../pg_catalog/routines/Textlename.java | 79 + .../pg_catalog/routines/Textlike.java | 79 + .../pg_catalog/routines/TextlikeSupport.java | 76 + .../pg_catalog/routines/Textltname.java | 79 + .../db_beans/pg_catalog/routines/Textne.java | 79 + .../pg_catalog/routines/Textnename.java | 79 + .../pg_catalog/routines/Textnlike.java | 79 + .../db_beans/pg_catalog/routines/Textout.java | 71 + .../pg_catalog/routines/Textrecv.java | 65 + .../pg_catalog/routines/Textregexeq.java | 79 + .../routines/TextregexeqSupport.java | 76 + .../pg_catalog/routines/Textregexne.java | 79 + .../pg_catalog/routines/Textsend.java | 58 + .../pg_catalog/routines/ThesaurusInit.java | 76 + .../pg_catalog/routines/ThesaurusLexize.java | 157 + .../db_beans/pg_catalog/routines/Tideq.java | 79 + .../db_beans/pg_catalog/routines/Tidge.java | 79 + .../db_beans/pg_catalog/routines/Tidgt.java | 79 + .../db_beans/pg_catalog/routines/Tidin.java | 65 + .../pg_catalog/routines/Tidlarger.java | 79 + .../db_beans/pg_catalog/routines/Tidle.java | 79 + .../db_beans/pg_catalog/routines/Tidlt.java | 79 + .../db_beans/pg_catalog/routines/Tidne.java | 79 + .../db_beans/pg_catalog/routines/Tidout.java | 71 + .../db_beans/pg_catalog/routines/Tidrecv.java | 65 + .../db_beans/pg_catalog/routines/Tidsend.java | 58 + .../pg_catalog/routines/Tidsmaller.java | 79 + .../db_beans/pg_catalog/routines/Time1.java | 62 + .../db_beans/pg_catalog/routines/Time2.java | 62 + .../db_beans/pg_catalog/routines/Time3.java | 82 + .../db_beans/pg_catalog/routines/Time4.java | 62 + .../db_beans/pg_catalog/routines/Time5.java | 62 + .../db_beans/pg_catalog/routines/TimeCmp.java | 81 + .../db_beans/pg_catalog/routines/TimeEq.java | 81 + .../db_beans/pg_catalog/routines/TimeGe.java | 81 + .../db_beans/pg_catalog/routines/TimeGt.java | 81 + .../pg_catalog/routines/TimeHash.java | 60 + .../pg_catalog/routines/TimeHashExtended.java | 81 + .../db_beans/pg_catalog/routines/TimeIn.java | 109 + .../pg_catalog/routines/TimeLarger.java | 81 + .../db_beans/pg_catalog/routines/TimeLe.java | 81 + .../db_beans/pg_catalog/routines/TimeLt.java | 81 + .../pg_catalog/routines/TimeMiInterval.java | 82 + .../pg_catalog/routines/TimeMiTime.java | 82 + .../db_beans/pg_catalog/routines/TimeNe.java | 81 + .../db_beans/pg_catalog/routines/TimeOut.java | 73 + .../pg_catalog/routines/TimePlInterval.java | 82 + .../pg_catalog/routines/TimeRecv.java | 109 + .../pg_catalog/routines/TimeSend.java | 60 + .../pg_catalog/routines/TimeSmaller.java | 81 + .../pg_catalog/routines/TimeSupport.java | 76 + .../pg_catalog/routines/TimedatePl.java | 83 + .../pg_catalog/routines/Timeofday.java | 36 + .../pg_catalog/routines/Timestamp1.java | 82 + .../pg_catalog/routines/Timestamp2.java | 62 + .../pg_catalog/routines/Timestamp3.java | 84 + .../pg_catalog/routines/Timestamp4.java | 61 + .../pg_catalog/routines/TimestampCmp.java | 81 + .../pg_catalog/routines/TimestampCmpDate.java | 82 + .../routines/TimestampCmpTimestamptz.java | 82 + .../pg_catalog/routines/TimestampEq.java | 81 + .../pg_catalog/routines/TimestampEqDate.java | 82 + .../routines/TimestampEqTimestamptz.java | 82 + .../pg_catalog/routines/TimestampGe.java | 81 + .../pg_catalog/routines/TimestampGeDate.java | 82 + .../routines/TimestampGeTimestamptz.java | 82 + .../pg_catalog/routines/TimestampGt.java | 81 + .../pg_catalog/routines/TimestampGtDate.java | 82 + .../routines/TimestampGtTimestamptz.java | 82 + .../pg_catalog/routines/TimestampHash.java | 60 + .../routines/TimestampHashExtended.java | 82 + .../pg_catalog/routines/TimestampIn.java | 109 + .../pg_catalog/routines/TimestampLarger.java | 81 + .../pg_catalog/routines/TimestampLe.java | 81 + .../pg_catalog/routines/TimestampLeDate.java | 82 + .../routines/TimestampLeTimestamptz.java | 82 + .../pg_catalog/routines/TimestampLt.java | 81 + .../pg_catalog/routines/TimestampLtDate.java | 82 + .../routines/TimestampLtTimestamptz.java | 82 + .../pg_catalog/routines/TimestampMi.java | 82 + .../routines/TimestampMiInterval.java | 82 + .../pg_catalog/routines/TimestampNe.java | 81 + .../pg_catalog/routines/TimestampNeDate.java | 82 + .../routines/TimestampNeTimestamptz.java | 82 + .../pg_catalog/routines/TimestampOut.java | 73 + .../routines/TimestampPlInterval.java | 82 + .../pg_catalog/routines/TimestampRecv.java | 109 + .../pg_catalog/routines/TimestampSend.java | 60 + .../pg_catalog/routines/TimestampSmaller.java | 81 + .../routines/TimestampSortsupport.java | 49 + .../pg_catalog/routines/TimestampSupport.java | 76 + .../routines/Timestamptypmodin.java | 59 + .../routines/Timestamptypmodout.java | 71 + .../pg_catalog/routines/Timestamptz1.java | 62 + .../pg_catalog/routines/Timestamptz2.java | 84 + .../pg_catalog/routines/Timestamptz3.java | 84 + .../pg_catalog/routines/Timestamptz4.java | 82 + .../pg_catalog/routines/Timestamptz5.java | 61 + .../pg_catalog/routines/TimestamptzCmp.java | 81 + .../routines/TimestamptzCmpDate.java | 82 + .../routines/TimestamptzCmpTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzEq.java | 81 + .../routines/TimestamptzEqDate.java | 82 + .../routines/TimestamptzEqTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzGe.java | 81 + .../routines/TimestamptzGeDate.java | 82 + .../routines/TimestamptzGeTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzGt.java | 81 + .../routines/TimestamptzGtDate.java | 82 + .../routines/TimestamptzGtTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzIn.java | 109 + .../routines/TimestamptzLarger.java | 81 + .../pg_catalog/routines/TimestamptzLe.java | 81 + .../routines/TimestamptzLeDate.java | 82 + .../routines/TimestamptzLeTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzLt.java | 81 + .../routines/TimestamptzLtDate.java | 82 + .../routines/TimestamptzLtTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzMi.java | 82 + .../routines/TimestamptzMiInterval.java | 83 + .../pg_catalog/routines/TimestamptzNe.java | 81 + .../routines/TimestamptzNeDate.java | 82 + .../routines/TimestamptzNeTimestamp.java | 82 + .../pg_catalog/routines/TimestamptzOut.java | 73 + .../routines/TimestamptzPlInterval.java | 83 + .../pg_catalog/routines/TimestamptzRecv.java | 109 + .../pg_catalog/routines/TimestamptzSend.java | 60 + .../routines/TimestamptzSmaller.java | 81 + .../routines/Timestamptztypmodin.java | 59 + .../routines/Timestamptztypmodout.java | 71 + .../pg_catalog/routines/Timetypmodin.java | 59 + .../pg_catalog/routines/Timetypmodout.java | 71 + .../db_beans/pg_catalog/routines/Timetz1.java | 62 + .../db_beans/pg_catalog/routines/Timetz2.java | 82 + .../db_beans/pg_catalog/routines/Timetz3.java | 62 + .../pg_catalog/routines/TimetzCmp.java | 81 + .../pg_catalog/routines/TimetzEq.java | 81 + .../pg_catalog/routines/TimetzGe.java | 81 + .../pg_catalog/routines/TimetzGt.java | 81 + .../pg_catalog/routines/TimetzHash.java | 60 + .../routines/TimetzHashExtended.java | 81 + .../pg_catalog/routines/TimetzIn.java | 109 + .../pg_catalog/routines/TimetzLarger.java | 81 + .../pg_catalog/routines/TimetzLe.java | 81 + .../pg_catalog/routines/TimetzLt.java | 81 + .../pg_catalog/routines/TimetzMiInterval.java | 82 + .../pg_catalog/routines/TimetzNe.java | 81 + .../pg_catalog/routines/TimetzOut.java | 73 + .../pg_catalog/routines/TimetzPlInterval.java | 82 + .../pg_catalog/routines/TimetzRecv.java | 109 + .../pg_catalog/routines/TimetzSend.java | 60 + .../pg_catalog/routines/TimetzSmaller.java | 81 + .../pg_catalog/routines/TimetzdatePl.java | 83 + .../pg_catalog/routines/Timetztypmodin.java | 59 + .../pg_catalog/routines/Timetztypmodout.java | 71 + .../pg_catalog/routines/Timezone1.java | 83 + .../pg_catalog/routines/Timezone2.java | 82 + .../pg_catalog/routines/Timezone3.java | 82 + .../pg_catalog/routines/Timezone4.java | 83 + .../pg_catalog/routines/Timezone5.java | 82 + .../pg_catalog/routines/Timezone6.java | 83 + .../pg_catalog/routines/ToAscii1.java | 59 + .../pg_catalog/routines/ToAscii2.java | 80 + .../pg_catalog/routines/ToAscii3.java | 80 + .../db_beans/pg_catalog/routines/ToChar1.java | 81 + .../db_beans/pg_catalog/routines/ToChar2.java | 82 + .../db_beans/pg_catalog/routines/ToChar3.java | 82 + .../db_beans/pg_catalog/routines/ToChar4.java | 80 + .../db_beans/pg_catalog/routines/ToChar5.java | 80 + .../db_beans/pg_catalog/routines/ToChar6.java | 80 + .../db_beans/pg_catalog/routines/ToChar7.java | 80 + .../db_beans/pg_catalog/routines/ToChar8.java | 82 + .../db_beans/pg_catalog/routines/ToDate.java | 81 + .../db_beans/pg_catalog/routines/ToHex1.java | 59 + .../db_beans/pg_catalog/routines/ToHex2.java | 59 + .../db_beans/pg_catalog/routines/ToJson.java | 66 + .../db_beans/pg_catalog/routines/ToJsonb.java | 66 + .../pg_catalog/routines/ToNumber.java | 81 + .../pg_catalog/routines/ToRegclass.java | 71 + .../pg_catalog/routines/ToRegcollation.java | 71 + .../pg_catalog/routines/ToRegnamespace.java | 71 + .../pg_catalog/routines/ToRegoper.java | 71 + .../pg_catalog/routines/ToRegoperator.java | 71 + .../pg_catalog/routines/ToRegproc.java | 58 + .../pg_catalog/routines/ToRegprocedure.java | 71 + .../pg_catalog/routines/ToRegprofile.java | 71 + .../pg_catalog/routines/ToRegrole.java | 71 + .../pg_catalog/routines/ToRegtype.java | 71 + .../pg_catalog/routines/ToTimestamp1.java | 61 + .../pg_catalog/routines/ToTimestamp2.java | 82 + .../pg_catalog/routines/ToTsquery1.java | 99 + .../pg_catalog/routines/ToTsquery2.java | 72 + .../pg_catalog/routines/ToTsvector1.java | 99 + .../pg_catalog/routines/ToTsvector2.java | 72 + .../pg_catalog/routines/ToTsvector3.java | 73 + .../pg_catalog/routines/ToTsvector4.java | 73 + .../pg_catalog/routines/ToTsvector5.java | 100 + .../pg_catalog/routines/ToTsvector6.java | 100 + .../routines/TransactionTimestamp.java | 38 + .../pg_catalog/routines/Translate.java | 100 + .../pg_catalog/routines/TriggerOut.java | 76 + .../pg_catalog/routines/TrimArray.java | 79 + .../pg_catalog/routines/TrimScale.java | 60 + .../db_beans/pg_catalog/routines/Trunc1.java | 59 + .../db_beans/pg_catalog/routines/Trunc2.java | 82 + .../db_beans/pg_catalog/routines/Trunc3.java | 61 + .../db_beans/pg_catalog/routines/Trunc4.java | 77 + .../db_beans/pg_catalog/routines/Trunc5.java | 77 + .../pg_catalog/routines/TsDelete1.java | 99 + .../pg_catalog/routines/TsDelete2.java | 99 + .../pg_catalog/routines/TsFilter.java | 98 + .../pg_catalog/routines/TsHeadline1.java | 135 + .../pg_catalog/routines/TsHeadline10.java | 115 + .../pg_catalog/routines/TsHeadline11.java | 109 + .../pg_catalog/routines/TsHeadline12.java | 88 + .../pg_catalog/routines/TsHeadline2.java | 114 + .../pg_catalog/routines/TsHeadline3.java | 108 + .../pg_catalog/routines/TsHeadline4.java | 87 + .../pg_catalog/routines/TsHeadline5.java | 136 + .../pg_catalog/routines/TsHeadline6.java | 115 + .../pg_catalog/routines/TsHeadline7.java | 109 + .../pg_catalog/routines/TsHeadline8.java | 88 + .../pg_catalog/routines/TsHeadline9.java | 136 + .../pg_catalog/routines/TsLexize.java | 86 + .../pg_catalog/routines/TsMatchQv.java | 92 + .../pg_catalog/routines/TsMatchTq.java | 86 + .../pg_catalog/routines/TsMatchTt.java | 79 + .../pg_catalog/routines/TsMatchVq.java | 92 + .../db_beans/pg_catalog/routines/TsRank1.java | 135 + .../db_beans/pg_catalog/routines/TsRank2.java | 114 + .../db_beans/pg_catalog/routines/TsRank3.java | 114 + .../db_beans/pg_catalog/routines/TsRank4.java | 93 + .../pg_catalog/routines/TsRankCd1.java | 135 + .../pg_catalog/routines/TsRankCd2.java | 114 + .../pg_catalog/routines/TsRankCd3.java | 114 + .../pg_catalog/routines/TsRankCd4.java | 93 + .../pg_catalog/routines/TsRewrite1.java | 131 + .../pg_catalog/routines/TsRewrite2.java | 99 + .../pg_catalog/routines/TsTypanalyze.java | 65 + .../pg_catalog/routines/TsmHandlerIn.java | 76 + .../pg_catalog/routines/TsmHandlerOut.java | 76 + .../pg_catalog/routines/Tsmatchjoinsel.java | 161 + .../pg_catalog/routines/Tsmatchsel.java | 134 + .../pg_catalog/routines/Tsmultirange1.java | 49 + .../pg_catalog/routines/Tsmultirange2.java | 77 + .../pg_catalog/routines/Tsmultirange3.java | 71 + .../pg_catalog/routines/TsqMcontained.java | 92 + .../pg_catalog/routines/TsqMcontains.java | 92 + .../pg_catalog/routines/TsqueryAnd.java | 103 + .../pg_catalog/routines/TsqueryCmp.java | 92 + .../pg_catalog/routines/TsqueryEq.java | 92 + .../pg_catalog/routines/TsqueryGe.java | 92 + .../pg_catalog/routines/TsqueryGt.java | 92 + .../pg_catalog/routines/TsqueryLe.java | 92 + .../pg_catalog/routines/TsqueryLt.java | 92 + .../pg_catalog/routines/TsqueryNe.java | 92 + .../pg_catalog/routines/TsqueryNot.java | 76 + .../pg_catalog/routines/TsqueryOr.java | 103 + .../pg_catalog/routines/TsqueryPhrase1.java | 104 + .../pg_catalog/routines/TsqueryPhrase2.java | 126 + .../pg_catalog/routines/Tsqueryin.java | 76 + .../pg_catalog/routines/Tsqueryout.java | 76 + .../pg_catalog/routines/Tsqueryrecv.java | 76 + .../pg_catalog/routines/Tsquerysend.java | 65 + .../pg_catalog/routines/Tsrange1.java | 95 + .../pg_catalog/routines/Tsrange2.java | 116 + .../pg_catalog/routines/TsrangeSubdiff.java | 81 + .../pg_catalog/routines/Tstzmultirange1.java | 49 + .../pg_catalog/routines/Tstzmultirange2.java | 77 + .../pg_catalog/routines/Tstzmultirange3.java | 71 + .../pg_catalog/routines/Tstzrange1.java | 95 + .../pg_catalog/routines/Tstzrange2.java | 116 + .../pg_catalog/routines/TstzrangeSubdiff.java | 81 + .../pg_catalog/routines/TsvectorCmp.java | 92 + .../pg_catalog/routines/TsvectorConcat.java | 103 + .../pg_catalog/routines/TsvectorEq.java | 92 + .../pg_catalog/routines/TsvectorGe.java | 92 + .../pg_catalog/routines/TsvectorGt.java | 92 + .../pg_catalog/routines/TsvectorLe.java | 92 + .../pg_catalog/routines/TsvectorLt.java | 92 + .../pg_catalog/routines/TsvectorNe.java | 92 + .../pg_catalog/routines/TsvectorToArray.java | 65 + .../pg_catalog/routines/Tsvectorin.java | 76 + .../pg_catalog/routines/Tsvectorout.java | 76 + .../pg_catalog/routines/Tsvectorrecv.java | 76 + .../pg_catalog/routines/Tsvectorsend.java | 65 + .../pg_catalog/routines/TxidCurrent.java | 36 + .../routines/TxidCurrentIfAssigned.java | 37 + .../routines/TxidCurrentSnapshot.java | 48 + .../pg_catalog/routines/TxidSnapshotIn.java | 76 + .../pg_catalog/routines/TxidSnapshotOut.java | 76 + .../pg_catalog/routines/TxidSnapshotRecv.java | 76 + .../pg_catalog/routines/TxidSnapshotSend.java | 65 + .../pg_catalog/routines/TxidSnapshotXmax.java | 65 + .../pg_catalog/routines/TxidSnapshotXmin.java | 65 + .../pg_catalog/routines/TxidStatus.java | 58 + .../routines/TxidVisibleInSnapshot.java | 87 + .../pg_catalog/routines/UhcToUtf8.java | 176 + .../db_beans/pg_catalog/routines/Unistr.java | 58 + .../pg_catalog/routines/Unknownin.java | 76 + .../pg_catalog/routines/Unknownout.java | 76 + .../pg_catalog/routines/Unknownrecv.java | 76 + .../pg_catalog/routines/Unknownsend.java | 65 + .../routines/UpgradeCoveringNbtree.java | 43 + .../db_beans/pg_catalog/routines/Upper1.java | 77 + .../db_beans/pg_catalog/routines/Upper2.java | 77 + .../db_beans/pg_catalog/routines/Upper3.java | 59 + .../pg_catalog/routines/UpperInc1.java | 66 + .../pg_catalog/routines/UpperInc2.java | 66 + .../pg_catalog/routines/UpperInf1.java | 66 + .../pg_catalog/routines/UpperInf2.java | 66 + .../pg_catalog/routines/Utf8ToBig5.java | 176 + .../pg_catalog/routines/Utf8ToEucCn.java | 176 + .../routines/Utf8ToEucJis_2004.java | 176 + .../pg_catalog/routines/Utf8ToEucJp.java | 176 + .../pg_catalog/routines/Utf8ToEucKr.java | 176 + .../pg_catalog/routines/Utf8ToEucTw.java | 176 + .../pg_catalog/routines/Utf8ToGb18030.java | 176 + .../pg_catalog/routines/Utf8ToGbk.java | 176 + .../pg_catalog/routines/Utf8ToIso8859.java | 176 + .../pg_catalog/routines/Utf8ToIso8859_1.java | 176 + .../pg_catalog/routines/Utf8ToJohab.java | 176 + .../pg_catalog/routines/Utf8ToKoi8r.java | 176 + .../pg_catalog/routines/Utf8ToKoi8u.java | 176 + .../routines/Utf8ToShiftJis_2004.java | 177 + .../pg_catalog/routines/Utf8ToSjis.java | 176 + .../pg_catalog/routines/Utf8ToUhc.java | 176 + .../pg_catalog/routines/Utf8ToWin.java | 176 + .../db_beans/pg_catalog/routines/UuidCmp.java | 81 + .../db_beans/pg_catalog/routines/UuidEq.java | 81 + .../db_beans/pg_catalog/routines/UuidGe.java | 81 + .../db_beans/pg_catalog/routines/UuidGt.java | 81 + .../pg_catalog/routines/UuidHash.java | 60 + .../pg_catalog/routines/UuidHashExtended.java | 81 + .../db_beans/pg_catalog/routines/UuidIn.java | 67 + .../db_beans/pg_catalog/routines/UuidLe.java | 81 + .../db_beans/pg_catalog/routines/UuidLt.java | 81 + .../db_beans/pg_catalog/routines/UuidNe.java | 81 + .../db_beans/pg_catalog/routines/UuidOut.java | 73 + .../pg_catalog/routines/UuidRecv.java | 67 + .../pg_catalog/routines/UuidSend.java | 60 + .../pg_catalog/routines/UuidSortsupport.java | 49 + .../db_beans/pg_catalog/routines/VarPop1.java | 61 + .../db_beans/pg_catalog/routines/VarPop2.java | 61 + .../db_beans/pg_catalog/routines/VarPop3.java | 61 + .../db_beans/pg_catalog/routines/VarPop4.java | 59 + .../db_beans/pg_catalog/routines/VarPop5.java | 59 + .../db_beans/pg_catalog/routines/VarPop6.java | 61 + .../pg_catalog/routines/VarSamp1.java | 61 + .../pg_catalog/routines/VarSamp2.java | 61 + .../pg_catalog/routines/VarSamp3.java | 61 + .../pg_catalog/routines/VarSamp4.java | 59 + .../pg_catalog/routines/VarSamp5.java | 59 + .../pg_catalog/routines/VarSamp6.java | 61 + .../db_beans/pg_catalog/routines/Varbit.java | 100 + .../pg_catalog/routines/VarbitIn.java | 107 + .../pg_catalog/routines/VarbitOut.java | 71 + .../pg_catalog/routines/VarbitRecv.java | 107 + .../pg_catalog/routines/VarbitSend.java | 58 + .../pg_catalog/routines/VarbitSupport.java | 76 + .../pg_catalog/routines/Varbitcmp.java | 79 + .../pg_catalog/routines/Varbiteq.java | 79 + .../pg_catalog/routines/Varbitge.java | 79 + .../pg_catalog/routines/Varbitgt.java | 79 + .../pg_catalog/routines/Varbitle.java | 79 + .../pg_catalog/routines/Varbitlt.java | 79 + .../pg_catalog/routines/Varbitne.java | 79 + .../pg_catalog/routines/Varbittypmodin.java | 59 + .../pg_catalog/routines/Varbittypmodout.java | 71 + .../pg_catalog/routines/Varchar1.java | 59 + .../pg_catalog/routines/Varchar2.java | 101 + .../pg_catalog/routines/VarcharSupport.java | 76 + .../pg_catalog/routines/Varcharin.java | 107 + .../pg_catalog/routines/Varcharout.java | 71 + .../pg_catalog/routines/Varcharrecv.java | 107 + .../pg_catalog/routines/Varcharsend.java | 58 + .../pg_catalog/routines/Varchartypmodin.java | 59 + .../pg_catalog/routines/Varchartypmodout.java | 71 + .../pg_catalog/routines/Variance1.java | 61 + .../pg_catalog/routines/Variance2.java | 61 + .../pg_catalog/routines/Variance3.java | 61 + .../pg_catalog/routines/Variance4.java | 59 + .../pg_catalog/routines/Variance5.java | 59 + .../pg_catalog/routines/Variance6.java | 61 + .../db_beans/pg_catalog/routines/Version.java | 36 + .../db_beans/pg_catalog/routines/VoidIn.java | 49 + .../db_beans/pg_catalog/routines/VoidOut.java | 77 + .../pg_catalog/routines/VoidRecv.java | 49 + .../pg_catalog/routines/VoidSend.java | 64 + .../routines/WebsearchToTsquery1.java | 99 + .../routines/WebsearchToTsquery2.java | 72 + .../db_beans/pg_catalog/routines/Width.java | 65 + .../pg_catalog/routines/WidthBucket1.java | 124 + .../pg_catalog/routines/WidthBucket2.java | 122 + .../pg_catalog/routines/WidthBucket3.java | 93 + .../pg_catalog/routines/Win1250ToLatin2.java | 176 + .../pg_catalog/routines/Win1250ToMic.java | 176 + .../pg_catalog/routines/Win1251ToIso.java | 176 + .../pg_catalog/routines/Win1251ToKoi8r.java | 176 + .../pg_catalog/routines/Win1251ToMic.java | 176 + .../pg_catalog/routines/Win1251ToWin866.java | 176 + .../pg_catalog/routines/Win866ToIso.java | 176 + .../pg_catalog/routines/Win866ToKoi8r.java | 176 + .../pg_catalog/routines/Win866ToMic.java | 176 + .../pg_catalog/routines/Win866ToWin1251.java | 176 + .../pg_catalog/routines/WinToUtf8.java | 176 + .../routines/WindowDenseRankSupport.java | 76 + .../routines/WindowRankSupport.java | 76 + .../routines/WindowRowNumberSupport.java | 76 + .../db_beans/pg_catalog/routines/Xid.java | 65 + .../pg_catalog/routines/Xid8Larger.java | 103 + .../pg_catalog/routines/Xid8Smaller.java | 103 + .../db_beans/pg_catalog/routines/Xid8cmp.java | 92 + .../db_beans/pg_catalog/routines/Xid8eq.java | 92 + .../db_beans/pg_catalog/routines/Xid8ge.java | 92 + .../db_beans/pg_catalog/routines/Xid8gt.java | 92 + .../db_beans/pg_catalog/routines/Xid8in.java | 76 + .../db_beans/pg_catalog/routines/Xid8le.java | 92 + .../db_beans/pg_catalog/routines/Xid8lt.java | 92 + .../db_beans/pg_catalog/routines/Xid8ne.java | 92 + .../db_beans/pg_catalog/routines/Xid8out.java | 76 + .../pg_catalog/routines/Xid8recv.java | 76 + .../pg_catalog/routines/Xid8send.java | 65 + .../db_beans/pg_catalog/routines/Xideq.java | 79 + .../pg_catalog/routines/Xideqint4.java | 79 + .../db_beans/pg_catalog/routines/Xidin.java | 65 + .../db_beans/pg_catalog/routines/Xidneq.java | 79 + .../pg_catalog/routines/Xidneqint4.java | 79 + .../db_beans/pg_catalog/routines/Xidout.java | 71 + .../db_beans/pg_catalog/routines/Xidrecv.java | 65 + .../db_beans/pg_catalog/routines/Xidsend.java | 58 + .../db_beans/pg_catalog/routines/Xml.java | 59 + .../db_beans/pg_catalog/routines/XmlIn.java | 66 + .../pg_catalog/routines/XmlIsWellFormed.java | 58 + .../routines/XmlIsWellFormedContent.java | 59 + .../routines/XmlIsWellFormedDocument.java | 59 + .../db_beans/pg_catalog/routines/XmlOut.java | 72 + .../db_beans/pg_catalog/routines/XmlRecv.java | 66 + .../db_beans/pg_catalog/routines/XmlSend.java | 59 + .../db_beans/pg_catalog/routines/Xmlagg.java | 59 + .../pg_catalog/routines/Xmlcomment.java | 59 + .../pg_catalog/routines/Xmlconcat2.java | 80 + .../pg_catalog/routines/Xmlexists.java | 80 + .../pg_catalog/routines/Xmlvalidate.java | 80 + .../db_beans/pg_catalog/routines/Xpath1.java | 102 + .../db_beans/pg_catalog/routines/Xpath2.java | 81 + .../pg_catalog/routines/XpathExists1.java | 102 + .../pg_catalog/routines/XpathExists2.java | 81 + .../pg_catalog/tables/Aclexplode.java | 167 + .../pg_catalog/tables/GenerateSeries.java | 157 + .../pg_catalog/tables/GenerateSubscripts.java | 165 + .../pg_catalog/tables/JsonArrayElements.java | 155 + .../tables/JsonArrayElementsText.java | 156 + .../db_beans/pg_catalog/tables/JsonEach.java | 158 + .../pg_catalog/tables/JsonEachText.java | 158 + .../pg_catalog/tables/JsonObjectKeys.java | 155 + .../tables/JsonPopulateRecordset.java | 172 + .../pg_catalog/tables/JsonToRecordset.java | 156 + .../pg_catalog/tables/JsonbArrayElements.java | 155 + .../tables/JsonbArrayElementsText.java | 157 + .../db_beans/pg_catalog/tables/JsonbEach.java | 158 + .../pg_catalog/tables/JsonbEachText.java | 158 + .../pg_catalog/tables/JsonbObjectKeys.java | 155 + .../pg_catalog/tables/JsonbPathQuery.java | 171 + .../pg_catalog/tables/JsonbPathQueryTz.java | 172 + .../tables/JsonbPopulateRecordset.java | 168 + .../pg_catalog/tables/JsonbToRecordset.java | 156 + .../pg_catalog/tables/PgAggregate.java | 323 + .../db_beans/pg_catalog/tables/PgAm.java | 240 + .../db_beans/pg_catalog/tables/PgAmop.java | 265 + .../db_beans/pg_catalog/tables/PgAmproc.java | 250 + .../db_beans/pg_catalog/tables/PgAttrdef.java | 247 + .../pg_catalog/tables/PgAttribute.java | 350 + .../pg_catalog/tables/PgAuthMembers.java | 240 + .../tables/PgAvailableExtensionVersions.java | 180 + .../tables/PgAvailableExtensions.java | 237 + .../db_beans/pg_catalog/tables/PgCast.java | 250 + .../db_beans/pg_catalog/tables/PgClass.java | 392 + .../pg_catalog/tables/PgCollation.java | 275 + .../pg_catalog/tables/PgConstraint.java | 357 + .../pg_catalog/tables/PgConversion.java | 260 + .../db_beans/pg_catalog/tables/PgCursor.java | 161 + .../db_beans/pg_catalog/tables/PgCursors.java | 245 + .../pg_catalog/tables/PgDatabase.java | 300 + .../pg_catalog/tables/PgDbRoleSetting.java | 230 + .../pg_catalog/tables/PgDefaultAcl.java | 245 + .../db_beans/pg_catalog/tables/PgDepend.java | 241 + .../pg_catalog/tables/PgDescription.java | 233 + .../db_beans/pg_catalog/tables/PgEnum.java | 240 + .../pg_catalog/tables/PgEventTrigger.java | 257 + .../tables/PgEventTriggerDdlCommands.java | 191 + .../tables/PgEventTriggerDroppedObjects.java | 205 + .../pg_catalog/tables/PgExtension.java | 260 + .../tables/PgExtensionUpdatePaths.java | 166 + .../tables/PgForeignDataWrapper.java | 257 + .../pg_catalog/tables/PgForeignServer.java | 262 + .../pg_catalog/tables/PgForeignTable.java | 230 + .../tables/PgGetCatalogForeignKeys.java | 176 + .../pg_catalog/tables/PgGetKeywords.java | 154 + .../tables/PgGetMultixactMembers.java | 160 + .../tables/PgGetPublicationTables.java | 173 + .../tables/PgGetReplicationSlots.java | 216 + .../tables/PgGetWalResourceManagers.java | 149 + .../db_beans/pg_catalog/tables/PgGroup.java | 229 + .../db_beans/pg_catalog/tables/PgIndex.java | 331 + .../db_beans/pg_catalog/tables/PgIndexes.java | 243 + .../pg_catalog/tables/PgInherits.java | 233 + .../pg_catalog/tables/PgInitPrivs.java | 238 + .../pg_catalog/tables/PgLanguage.java | 265 + .../tables/PgLargeobjectMetadata.java | 230 + .../tables/PgListeningChannels.java | 137 + .../pg_catalog/tables/PgLockStatus.java | 211 + .../db_beans/pg_catalog/tables/PgLocks.java | 305 + .../tables/PgLogicalSlotGetBinaryChanges.java | 192 + .../tables/PgLogicalSlotGetChanges.java | 188 + .../PgLogicalSlotPeekBinaryChanges.java | 192 + .../tables/PgLogicalSlotPeekChanges.java | 188 + .../pg_catalog/tables/PgMatviews.java | 253 + .../pg_catalog/tables/PgMcvListItems.java | 175 + .../pg_catalog/tables/PgNamespace.java | 240 + .../db_beans/pg_catalog/tables/PgOpclass.java | 265 + .../pg_catalog/tables/PgOperator.java | 295 + .../pg_catalog/tables/PgOpfamily.java | 245 + .../pg_catalog/tables/PgOptionsToTable.java | 159 + .../pg_catalog/tables/PgParameterAcl.java | 237 + .../tables/PgPartitionAncestors.java | 160 + .../pg_catalog/tables/PgPartitionTree.java | 182 + .../pg_catalog/tables/PgPartitionedTable.java | 262 + .../pg_catalog/tables/PgPolicies.java | 274 + .../db_beans/pg_catalog/tables/PgPolicy.java | 273 + .../tables/PgPreparedStatement.java | 169 + .../tables/PgPreparedStatements.java | 255 + .../pg_catalog/tables/PgPreparedXact.java | 158 + .../pg_catalog/tables/PgPreparedXacts.java | 243 + .../db_beans/pg_catalog/tables/PgProc.java | 383 + .../pg_catalog/tables/PgPublication.java | 265 + .../tables/PgPublicationNamespace.java | 238 + .../pg_catalog/tables/PgPublicationRel.java | 254 + .../tables/PgPublicationTables.java | 246 + .../db_beans/pg_catalog/tables/PgRange.java | 255 + .../tables/PgReplicationOrigin.java | 232 + .../pg_catalog/tables/PgReplicationSlots.java | 314 + .../db_beans/pg_catalog/tables/PgRewrite.java | 273 + .../db_beans/pg_catalog/tables/PgRoles.java | 331 + .../db_beans/pg_catalog/tables/PgRules.java | 235 + .../pg_catalog/tables/PgSeclabel.java | 238 + .../pg_catalog/tables/PgSeclabels.java | 433 + .../pg_catalog/tables/PgSequence.java | 253 + .../pg_catalog/tables/PgSequences.java | 287 + .../pg_catalog/tables/PgSettings.java | 310 + .../pg_catalog/tables/PgShdepend.java | 241 + .../pg_catalog/tables/PgShdescription.java | 230 + .../pg_catalog/tables/PgShowAllSettings.java | 216 + .../pg_catalog/tables/PgShseclabel.java | 233 + .../pg_catalog/tables/PgSnapshotXip.java | 158 + .../pg_catalog/tables/PgStatActivity.java | 352 + .../pg_catalog/tables/PgStatAllIndexes.java | 262 + .../pg_catalog/tables/PgStatAllTables.java | 354 + .../pg_catalog/tables/PgStatArchiver.java | 253 + .../pg_catalog/tables/PgStatBgwriter.java | 278 + .../pg_catalog/tables/PgStatDatabase.java | 389 + .../tables/PgStatDatabaseConflicts.java | 258 + .../pg_catalog/tables/PgStatGetActivity.java | 310 + .../tables/PgStatGetBackendIdset.java | 139 + .../tables/PgStatGetProgressInfo.java | 266 + .../tables/PgStatGetRecoveryPrefetch.java | 194 + .../pg_catalog/tables/PgStatGetSlru.java | 178 + .../tables/PgStatGetSubscription.java | 208 + .../tables/PgStatGetWalSenders.java | 219 + .../pg_catalog/tables/PgStatGssapi.java | 233 + .../tables/PgStatProgressAnalyze.java | 299 + .../tables/PgStatProgressBasebackup.java | 263 + .../tables/PgStatProgressCluster.java | 304 + .../pg_catalog/tables/PgStatProgressCopy.java | 282 + .../tables/PgStatProgressCreateIndex.java | 337 + .../tables/PgStatProgressVacuum.java | 292 + .../tables/PgStatRecoveryPrefetch.java | 275 + .../pg_catalog/tables/PgStatReplication.java | 365 + .../tables/PgStatReplicationSlots.java | 277 + .../pg_catalog/tables/PgStatSlru.java | 263 + .../db_beans/pg_catalog/tables/PgStatSsl.java | 258 + .../pg_catalog/tables/PgStatSubscription.java | 281 + .../tables/PgStatSubscriptionStats.java | 247 + .../pg_catalog/tables/PgStatSysIndexes.java | 259 + .../pg_catalog/tables/PgStatSysTables.java | 351 + .../tables/PgStatUserFunctions.java | 248 + .../pg_catalog/tables/PgStatUserIndexes.java | 259 + .../pg_catalog/tables/PgStatUserTables.java | 352 + .../db_beans/pg_catalog/tables/PgStatWal.java | 264 + .../pg_catalog/tables/PgStatWalReceiver.java | 330 + .../tables/PgStatXactAllTables.java | 280 + .../tables/PgStatXactSysTables.java | 277 + .../tables/PgStatXactUserFunctions.java | 252 + .../tables/PgStatXactUserTables.java | 280 + .../pg_catalog/tables/PgStatioAllIndexes.java | 256 + .../tables/PgStatioAllSequences.java | 242 + .../pg_catalog/tables/PgStatioAllTables.java | 287 + .../pg_catalog/tables/PgStatioSysIndexes.java | 253 + .../tables/PgStatioSysSequences.java | 241 + .../pg_catalog/tables/PgStatioSysTables.java | 277 + .../tables/PgStatioUserIndexes.java | 253 + .../tables/PgStatioUserSequences.java | 242 + .../pg_catalog/tables/PgStatioUserTables.java | 277 + .../pg_catalog/tables/PgStatisticExt.java | 274 + .../db_beans/pg_catalog/tables/PgStats.java | 345 + .../pg_catalog/tables/PgStatsExt.java | 326 + .../pg_catalog/tables/PgStatsExtExprs.java | 370 + .../pg_catalog/tables/PgSubscription.java | 292 + .../pg_catalog/tables/PgSubscriptionRel.java | 242 + .../db_beans/pg_catalog/tables/PgTables.java | 259 + .../pg_catalog/tables/PgTablespace.java | 245 + .../tables/PgTablespaceDatabases.java | 155 + .../pg_catalog/tables/PgTimezoneAbbrevs.java | 147 + .../pg_catalog/tables/PgTimezoneNames.java | 235 + .../pg_catalog/tables/PgTransform.java | 245 + .../db_beans/pg_catalog/tables/PgTrigger.java | 322 + .../pg_catalog/tables/PgTsConfig.java | 245 + .../pg_catalog/tables/PgTsConfigMap.java | 235 + .../db_beans/pg_catalog/tables/PgTsDict.java | 250 + .../pg_catalog/tables/PgTsParser.java | 260 + .../pg_catalog/tables/PgTsTemplate.java | 245 + .../db_beans/pg_catalog/tables/PgType.java | 387 + .../db_beans/pg_catalog/tables/PgUser.java | 263 + .../pg_catalog/tables/PgUserMappings.java | 256 + .../db_beans/pg_catalog/tables/PgViews.java | 234 + .../pg_catalog/tables/RegexpMatches.java | 162 + .../pg_catalog/tables/RegexpSplitToTable.java | 165 + .../pg_catalog/tables/StringToTable.java | 157 + .../db_beans/pg_catalog/tables/TsDebug.java | 189 + .../db_beans/pg_catalog/tables/TsParse.java | 162 + .../db_beans/pg_catalog/tables/TsStat.java | 167 + .../pg_catalog/tables/TsTokenType.java | 162 + .../pg_catalog/tables/TxidSnapshotXip.java | 155 + .../db_beans/pg_catalog/tables/Unnest.java | 158 + .../tables/records/AclexplodeRecord.java | 99 + .../tables/records/GenerateSeriesRecord.java | 54 + .../records/GenerateSubscriptsRecord.java | 56 + .../records/JsonArrayElementsRecord.java | 55 + .../records/JsonArrayElementsTextRecord.java | 54 + .../tables/records/JsonEachRecord.java | 70 + .../tables/records/JsonEachTextRecord.java | 69 + .../tables/records/JsonObjectKeysRecord.java | 54 + .../records/JsonPopulateRecordsetRecord.java | 66 + .../tables/records/JsonToRecordsetRecord.java | 55 + .../records/JsonbArrayElementsRecord.java | 55 + .../records/JsonbArrayElementsTextRecord.java | 54 + .../tables/records/JsonbEachRecord.java | 70 + .../tables/records/JsonbEachTextRecord.java | 69 + .../tables/records/JsonbObjectKeysRecord.java | 54 + .../tables/records/JsonbPathQueryRecord.java | 55 + .../records/JsonbPathQueryTzRecord.java | 57 + .../records/JsonbPopulateRecordsetRecord.java | 66 + .../records/JsonbToRecordsetRecord.java | 55 + .../tables/records/PgAggregateRecord.java | 379 + .../pg_catalog/tables/records/PgAmRecord.java | 109 + .../tables/records/PgAmopRecord.java | 184 + .../tables/records/PgAmprocRecord.java | 139 + .../tables/records/PgAttrdefRecord.java | 121 + .../tables/records/PgAttributeRecord.java | 439 + .../tables/records/PgAuthMembersRecord.java | 109 + .../PgAvailableExtensionVersionsRecord.java | 173 + .../records/PgAvailableExtensionsRecord.java | 103 + .../tables/records/PgCastRecord.java | 139 + .../tables/records/PgClassRecord.java | 556 + .../tables/records/PgCollationRecord.java | 214 + .../tables/records/PgConstraintRecord.java | 451 + .../tables/records/PgConversionRecord.java | 169 + .../tables/records/PgCursorRecord.java | 131 + .../tables/records/PgCursorsRecord.java | 131 + .../tables/records/PgDatabaseRecord.java | 289 + .../tables/records/PgDbRoleSettingRecord.java | 94 + .../tables/records/PgDefaultAclRecord.java | 124 + .../tables/records/PgDependRecord.java | 144 + .../tables/records/PgDescriptionRecord.java | 109 + .../tables/records/PgEnumRecord.java | 109 + .../PgEventTriggerDdlCommandsRecord.java | 198 + .../PgEventTriggerDroppedObjectsRecord.java | 243 + .../tables/records/PgEventTriggerRecord.java | 154 + .../tables/records/PgExtensionRecord.java | 169 + .../records/PgExtensionUpdatePathsRecord.java | 84 + .../records/PgForeignDataWrapperRecord.java | 154 + .../tables/records/PgForeignServerRecord.java | 169 + .../tables/records/PgForeignTableRecord.java | 94 + .../PgGetCatalogForeignKeysRecord.java | 153 + .../tables/records/PgGetKeywordsRecord.java | 114 + .../records/PgGetMultixactMembersRecord.java | 69 + .../records/PgGetPublicationTablesRecord.java | 96 + .../records/PgGetReplicationSlotsRecord.java | 275 + .../PgGetWalResourceManagersRecord.java | 86 + .../tables/records/PgGroupRecord.java | 84 + .../tables/records/PgIndexRecord.java | 388 + .../tables/records/PgIndexesRecord.java | 114 + .../tables/records/PgInheritsRecord.java | 109 + .../tables/records/PgInitPrivsRecord.java | 124 + .../tables/records/PgLanguageRecord.java | 184 + .../records/PgLargeobjectMetadataRecord.java | 94 + .../records/PgListeningChannelsRecord.java | 56 + .../tables/records/PgLockStatusRecord.java | 281 + .../tables/records/PgLocksRecord.java | 281 + .../PgLogicalSlotGetBinaryChangesRecord.java | 100 + .../PgLogicalSlotGetChangesRecord.java | 96 + .../PgLogicalSlotPeekBinaryChangesRecord.java | 100 + .../PgLogicalSlotPeekChangesRecord.java | 96 + .../tables/records/PgMatviewsRecord.java | 144 + .../tables/records/PgMcvListItemsRecord.java | 114 + .../tables/records/PgNamespaceRecord.java | 109 + .../tables/records/PgOpclassRecord.java | 184 + .../tables/records/PgOperatorRecord.java | 274 + .../tables/records/PgOpfamilyRecord.java | 124 + .../records/PgOptionsToTableRecord.java | 69 + .../tables/records/PgParameterAclRecord.java | 94 + .../records/PgPartitionAncestorsRecord.java | 66 + .../tables/records/PgPartitionTreeRecord.java | 123 + .../records/PgPartitionedTableRecord.java | 181 + .../tables/records/PgPoliciesRecord.java | 159 + .../tables/records/PgPolicyRecord.java | 193 + .../records/PgPreparedStatementRecord.java | 146 + .../records/PgPreparedStatementsRecord.java | 148 + .../tables/records/PgPreparedXactRecord.java | 116 + .../tables/records/PgPreparedXactsRecord.java | 116 + .../tables/records/PgProcRecord.java | 523 + .../records/PgPublicationNamespaceRecord.java | 94 + .../tables/records/PgPublicationRecord.java | 184 + .../records/PgPublicationRelRecord.java | 136 + .../records/PgPublicationTablesRecord.java | 114 + .../tables/records/PgRangeRecord.java | 154 + .../records/PgReplicationOriginRecord.java | 79 + .../records/PgReplicationSlotsRecord.java | 288 + .../tables/records/PgRewriteRecord.java | 193 + .../tables/records/PgRolesRecord.java | 338 + .../tables/records/PgRulesRecord.java | 99 + .../tables/records/PgSeclabelRecord.java | 124 + .../tables/records/PgSeclabelsRecord.java | 159 + .../tables/records/PgSequenceRecord.java | 169 + .../tables/records/PgSequencesRecord.java | 216 + .../tables/records/PgSettingsRecord.java | 294 + .../tables/records/PgShdependRecord.java | 144 + .../tables/records/PgShdescriptionRecord.java | 94 + .../records/PgShowAllSettingsRecord.java | 294 + .../tables/records/PgShseclabelRecord.java | 109 + .../tables/records/PgSnapshotXipRecord.java | 66 + .../tables/records/PgStatActivityRecord.java | 383 + .../records/PgStatAllIndexesRecord.java | 159 + .../tables/records/PgStatAllTablesRecord.java | 388 + .../tables/records/PgStatArchiverRecord.java | 146 + .../tables/records/PgStatBgwriterRecord.java | 210 + .../PgStatDatabaseConflictsRecord.java | 152 + .../tables/records/PgStatDatabaseRecord.java | 465 + .../records/PgStatGetActivityRecord.java | 506 + .../records/PgStatGetBackendIdsetRecord.java | 56 + .../records/PgStatGetProgressInfoRecord.java | 384 + .../PgStatGetRecoveryPrefetchRecord.java | 209 + .../tables/records/PgStatGetSlruRecord.java | 176 + .../records/PgStatGetSubscriptionRecord.java | 191 + .../records/PgStatGetWalSendersRecord.java | 270 + .../tables/records/PgStatGssapiRecord.java | 99 + .../records/PgStatProgressAnalyzeRecord.java | 233 + .../PgStatProgressBasebackupRecord.java | 137 + .../records/PgStatProgressClusterRecord.java | 231 + .../records/PgStatProgressCopyRecord.java | 191 + .../PgStatProgressCreateIndexRecord.java | 299 + .../records/PgStatProgressVacuumRecord.java | 216 + .../records/PgStatRecoveryPrefetchRecord.java | 195 + .../records/PgStatReplicationRecord.java | 402 + .../records/PgStatReplicationSlotsRecord.java | 195 + .../tables/records/PgStatSlruRecord.java | 176 + .../tables/records/PgStatSslRecord.java | 161 + .../records/PgStatSubscriptionRecord.java | 204 + .../PgStatSubscriptionStatsRecord.java | 122 + .../records/PgStatSysIndexesRecord.java | 159 + .../tables/records/PgStatSysTablesRecord.java | 388 + .../records/PgStatUserFunctionsRecord.java | 129 + .../records/PgStatUserIndexesRecord.java | 159 + .../records/PgStatUserTablesRecord.java | 390 + .../records/PgStatWalReceiverRecord.java | 320 + .../tables/records/PgStatWalRecord.java | 177 + .../records/PgStatXactAllTablesRecord.java | 204 + .../records/PgStatXactSysTablesRecord.java | 204 + .../PgStatXactUserFunctionsRecord.java | 133 + .../records/PgStatXactUserTablesRecord.java | 208 + .../records/PgStatioAllIndexesRecord.java | 144 + .../records/PgStatioAllSequencesRecord.java | 114 + .../records/PgStatioAllTablesRecord.java | 204 + .../records/PgStatioSysIndexesRecord.java | 144 + .../records/PgStatioSysSequencesRecord.java | 114 + .../records/PgStatioSysTablesRecord.java | 204 + .../records/PgStatioUserIndexesRecord.java | 144 + .../records/PgStatioUserSequencesRecord.java | 114 + .../records/PgStatioUserTablesRecord.java | 204 + .../tables/records/PgStatisticExtRecord.java | 196 + .../tables/records/PgStatsExtExprsRecord.java | 300 + .../tables/records/PgStatsExtRecord.java | 288 + .../tables/records/PgStatsRecord.java | 249 + .../tables/records/PgSubscriptionRecord.java | 256 + .../records/PgSubscriptionRelRecord.java | 121 + .../tables/records/PgTablesRecord.java | 159 + .../records/PgTablespaceDatabasesRecord.java | 56 + .../tables/records/PgTablespaceRecord.java | 124 + .../records/PgTimezoneAbbrevsRecord.java | 85 + .../tables/records/PgTimezoneNamesRecord.java | 100 + .../tables/records/PgTransformRecord.java | 124 + .../tables/records/PgTriggerRecord.java | 346 + .../tables/records/PgTsConfigMapRecord.java | 109 + .../tables/records/PgTsConfigRecord.java | 124 + .../tables/records/PgTsDictRecord.java | 139 + .../tables/records/PgTsParserRecord.java | 169 + .../tables/records/PgTsTemplateRecord.java | 124 + .../tables/records/PgTypeRecord.java | 541 + .../tables/records/PgUserMappingsRecord.java | 129 + .../tables/records/PgUserRecord.java | 176 + .../tables/records/PgViewsRecord.java | 99 + .../tables/records/RegexpMatchesRecord.java | 54 + .../records/RegexpSplitToTableRecord.java | 56 + .../tables/records/StringToTableRecord.java | 54 + .../tables/records/TsDebugRecord.java | 141 + .../tables/records/TsParseRecord.java | 69 + .../tables/records/TsStatRecord.java | 84 + .../tables/records/TsTokenTypeRecord.java | 84 + .../tables/records/TxidSnapshotXipRecord.java | 54 + .../tables/records/UnnestRecord.java | 66 + frontend/package-lock.json | 10673 + .../Процессы/process-instance-list.page | 78 +- .../Процессы/process-instance.page | 34 +- .../Группы редактирование.page | 53 +- .../Группы создание.page | 53 +- .../Управление пользователями/Группы.page | 29 +- .../Организации.page | 26 +- .../Организация редактирование(создание).page | 33 +- .../Пользователи редактирование.page | 125 +- .../Пользователи создание.page | 103 +- .../Пользователи.page | 123 +- .../Роли редактирование (создание).page | 33 +- .../Управление пользователями/Роли.page | 29 +- .../Функции безопасности.page | 48 +- resources/src/main/resources/config/roles.xml | 2 + .../main/resources/database/datasource.xml | 17 + 3634 files changed, 547251 insertions(+), 62 deletions(-) create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/DefaultCatalog.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Domains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/InformationSchema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Routines.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Tables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharMaxLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharOctetLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgDatetimePrecision.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIndexPosition.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIntervalType.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecision.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecisionRadix.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericScale.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypmod.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/AdministrableRoleAuthorizations.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ApplicableRoles.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Attributes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CharacterSets.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraintRoutineUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CollationCharacterSetApplicability.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Collations.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnColumnUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnDomainUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnPrivileges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnUdtUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Columns.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintColumnUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintTableUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DataTypePrivileges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainConstraints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainUdtUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Domains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ElementTypes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/EnabledRoles.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrapperOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrappers.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServerOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServers.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTableOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/InformationSchemaCatalogName.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/KeyColumnUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Parameters.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ReferentialConstraints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleColumnGrants.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleRoutineGrants.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleTableGrants.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUdtGrants.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUsageGrants.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineColumnUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutinePrivileges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineRoutineUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineSequenceUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineTableUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Routines.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Schemata.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Sequences.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlFeatures.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlImplementationInfo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlSizing.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TableConstraints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TablePrivileges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Tables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TriggeredUpdateColumns.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Triggers.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UdtPrivileges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UsagePrivileges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserDefinedTypes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappingOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappings.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewColumnUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewRoutineUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewTableUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Views.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/_PgExpandarray.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AdministrableRoleAuthorizationsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ApplicableRolesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AttributesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CharacterSetsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintRoutineUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationCharacterSetApplicabilityRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnColumnUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnDomainUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnOptionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnPrivilegesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnUdtUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintColumnUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintTableUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DataTypePrivilegesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainConstraintsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainUdtUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ElementTypesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/EnabledRolesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrapperOptionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrappersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServerOptionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTableOptionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/InformationSchemaCatalogNameRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/KeyColumnUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ParametersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ReferentialConstraintsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleColumnGrantsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleRoutineGrantsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleTableGrantsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUdtGrantsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUsageGrantsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineColumnUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinePrivilegesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineRoutineUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineSequenceUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineTableUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SchemataRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SequencesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlFeaturesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlImplementationInfoRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlSizingRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TableConstraintsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablePrivilegesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggeredUpdateColumnsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UdtPrivilegesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UsagePrivilegesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserDefinedTypesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingOptionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewColumnUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewRoutineUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewTableUsageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/_PgExpandarrayRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Keys.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/PgCatalog.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Routines.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Tables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abbrev1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abbrev2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abs1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abs2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abs3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abs4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abs5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Abs6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Aclcontains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Acldefault.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Aclinsert.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Aclitemeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Aclitemin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Aclitemout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Aclremove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Acos.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Acosd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Acosh.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Age1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Age2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Age3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Age4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Age5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Amvalidate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyarrayIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyarrayOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyarrayRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyarraySend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatibleIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatibleOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblearrayIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblearrayOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblearrayRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblearraySend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblemultirangeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblemultirangeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblenonarrayIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblenonarrayOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblerangeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnycompatiblerangeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyelementIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyelementOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyenumIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyenumOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnymultirangeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnymultirangeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnynonarrayIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnynonarrayOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyrangeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/AnyrangeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Anytextcat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Area1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Area2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Area3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Areajoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Areasel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAgg1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAgg2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAggArrayFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAggArrayTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayAppend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayCat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayDims.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayFill1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayFill2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayLower.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayNdims.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayPosition1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayPosition2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayPositions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayPrepend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayRemove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayReplace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArraySend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArraySmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArraySubscriptHandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayToJson1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayToJson2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayToString1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayToString2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayToTsvector.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayTypanalyze.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayUnnestSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ArrayUpper.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Arraycontained.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Arraycontains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Arraycontjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Arraycontsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Arrayoverlap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ascii.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Asin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Asind.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Asinh.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Atan.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Atan2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Atan2d.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Atand.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Atanh.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Avg7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bernoulli.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Big5ToEucTw.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Big5ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Big5ToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeCreateEmptyExtension.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetMissingValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextArrayPgTypeOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextHeapPgClassOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextHeapRelfilenode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextIndexPgClassOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextIndexRelfilenode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextMultirangeArrayPgTypeOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextMultirangePgTypeOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextPgAuthidOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextPgEnumOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextPgTablespaceOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextPgTypeOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextToastPgClassOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetNextToastRelfilenode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BinaryUpgradeSetRecordInitPrivs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bit1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bit2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bit3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitAnd1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitAnd2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitAnd3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitAnd4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitCount1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitCount2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitLength1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitLength2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitLength3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitOr1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitOr2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitOr3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitOr4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitXor1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitXor2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitXor3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BitXor4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitand.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitcat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Biteq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitgt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitnot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitshiftleft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitshiftright.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bittypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bittypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bitxor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bool1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bool2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolAccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolAlltrue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolAnd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolAnytrue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolOr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolandStatefunc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Booleq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolgt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boollt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoolorStatefunc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Boolsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoundBox.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Box1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Box2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Box3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Box4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxAbove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxAboveEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxAdd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxBelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxBelowEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxCenter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxContain.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxContainPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxContained.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxDiv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxIntersect.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxLeft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxMul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxOverabove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxOverbelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxOverlap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxOverleft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxOverright.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxRight.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxSame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BoxSub.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchar1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchar2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchar3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharPatternGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharPatternGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharPatternLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharPatternLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BpcharSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchareq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchargt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchariclike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharicnlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharicregexeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharicregexne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharnlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharregexeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharregexne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpcharsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchartypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bpchartypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomAddValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomOpcinfo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomSummaryIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomSummaryOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomSummaryRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomSummarySend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinBloomUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinDesummarizeRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinInclusionAddValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinInclusionConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinInclusionOpcinfo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinInclusionUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxAddValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiAddValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceFloat4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceFloat8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceInet.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceInt2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceInt4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceInt8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceMacaddr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceMacaddr8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceNumeric.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistancePgLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceTid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceTimetz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiDistanceUuid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiOpcinfo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiSummaryIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiSummaryOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiSummaryRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiSummarySend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxMultiUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxOpcinfo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinMinmaxUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinSummarizeNewValues.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BrinSummarizeRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Brinhandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Broadcast.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btarraycmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btboolcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BtbpcharPatternCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BtbpcharPatternSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btcharcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btequalimage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btfloat48cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btfloat4cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btfloat4sortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btfloat84cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btfloat8cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btfloat8sortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bthandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint24cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint28cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint2cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint2sortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint42cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint48cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint4cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint4sortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint82cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint84cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint8cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btint8sortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btnamecmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btnamesortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btnametextcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btoidcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btoidsortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btoidvectorcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btrecordcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btrecordimagecmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btrim1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btrim2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btrim3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BttextPatternCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/BttextPatternSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bttextcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bttextnamecmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bttextsortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bttidcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Btvarstrequalimage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ByteaSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ByteaStringAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ByteaStringAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteacat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteacmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteaeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteagt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteain.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteale.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bytealike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bytealt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteane.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteanlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteaout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Bytearecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Byteasend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cardinality.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashDivCash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashDivFlt4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashDivFlt8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashDivInt2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashDivInt4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashDivInt8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashMi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashMulFlt4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashMulFlt8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashMulInt2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashMulInt4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashMulInt8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashPl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CashWords.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cashlarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cashsmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cbrt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ceil1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ceil2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ceiling1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ceiling2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Center1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Center2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Char1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Char2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CharLength1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CharLength2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CharacterLength1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CharacterLength2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Chareq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Chargt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Charsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Chr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cideq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cidin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cidout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cidr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CidrIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CidrOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CidrRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CidrSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cidrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cidsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Circle1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Circle2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Circle3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleAbove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleAddPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleBelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleCenter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleContain.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleContainPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleContained.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleDivPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleLeft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleMulPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleOverabove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleOverbelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleOverlap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleOverleft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleOverright.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleRight.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleSame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CircleSubPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ClockTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CloseLs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CloseLseg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ClosePb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ClosePl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ClosePs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CloseSb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ColDescription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Concat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ConcatWs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Contjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Contsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Convert.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ConvertFrom.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ConvertTo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Corr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cos.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cosd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cosh.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Cotd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Count1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Count2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CovarPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CovarSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CstringIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CstringOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CstringRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CstringSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CumeDist1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CumeDist2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CumeDistFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentDatabase.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentQuery.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentSchema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentSchemas.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentSetting1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentSetting2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CurrentUser.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Currtid2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Currval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CursorToXml.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/CursorToXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatabaseToXml.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatabaseToXmlAndXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatabaseToXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Date1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Date2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateBin1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateBin2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateCmpTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateCmpTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateEqTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateEqTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateGeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateGeTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateGtTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateGtTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLeTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLtTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateLtTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateMi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateMiInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateMii.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateNeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateNeTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePart1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePart2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePart3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePart4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePart5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePart6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePlInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatePli.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateTrunc1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateTrunc2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateTrunc3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DateTrunc4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Datemultirange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Datemultirange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Datemultirange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Daterange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Daterange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DaterangeCanonical.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DaterangeSubdiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatetimePl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DatetimetzPl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dcbrt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Decode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Degrees.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DenseRank1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DenseRank2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DenseRankFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dexp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Diagonal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Diameter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DispellInit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DispellLexize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistBp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistBs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistCpoint.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistCpoly.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistLp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistLs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPathp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPolyc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPolyp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPpath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPpoly.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistPs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistSb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistSl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DistSp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dlog1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dlog10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DomainIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DomainRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dpow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dround.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DsimpleInit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DsimpleLexize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DsnowballInit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DsnowballLexize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dsqrt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DsynonymInit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/DsynonymLexize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Dtrunc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ElemContainedByMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ElemContainedByRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Encode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumFirst.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumLast.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumRange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumRange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EnumSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Eqjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Eqsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucCnToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucCnToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucJis_2004ToShiftJis_2004.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucJis_2004ToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucJpToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucJpToSjis.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucJpToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucKrToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucKrToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucTwToBig5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucTwToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EucTwToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EventTriggerIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/EventTriggerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Every.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Exp1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Exp2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Extract1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Extract2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Extract3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Extract4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Extract5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Extract6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Factorial.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Family.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FdwHandlerIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FdwHandlerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FirstValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float41.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float42.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float43.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float44.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float45.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float46.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float48pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4Accum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4abs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4in.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4larger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4smaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4um.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float4up.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float81.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float82.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float83.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float84pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float85.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float86.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8Accum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8Avg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8Combine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8Corr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8CovarPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8CovarSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrAvgx.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrAvgy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrIntercept.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrR2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrSlope.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrSxx.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrSxy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8RegrSyy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8StddevPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8StddevSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8VarPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8VarSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8abs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8in.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8larger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8smaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8um.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Float8up.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Floor1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Floor2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Flt4MulCash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Flt8MulCash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FmgrCValidator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FmgrInternalValidator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FmgrSqlValidator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Format1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Format2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/FormatType.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gb18030ToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GbkToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gcd1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gcd2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gcd3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GenRandomUuid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GenerateSeriesInt4Support.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GenerateSeriesInt8Support.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GetBit1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GetBit2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GetByte.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GetCurrentTsConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Getdatabaseencoding.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Getpgusername.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinCleanPendingList.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinCmpPrefix.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinCmpTslexeme.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinCompareJsonb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinConsistentJsonb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinConsistentJsonbPath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractJsonb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractJsonbPath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractJsonbQuery.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractJsonbQueryPath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractTsquery1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractTsquery2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractTsquery3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractTsvector1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinExtractTsvector2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinTriconsistentJsonb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinTriconsistentJsonbPath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinTsqueryConsistent1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinTsqueryConsistent2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinTsqueryConsistent3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GinTsqueryTriconsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ginarrayconsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ginarrayextract1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ginarrayextract2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ginarraytriconsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ginhandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ginqueryarrayextract.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistBoxConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistBoxDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistBoxPenalty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistBoxPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistBoxSame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistBoxUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistCircleCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistCircleConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistCircleDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPointCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPointConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPointDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPointFetch.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPointSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPolyCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPolyConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GistPolyDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gisthandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsqueryCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsqueryConsistent1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsqueryConsistent2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsqueryPenalty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsqueryPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsquerySame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsqueryUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorConsistent1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorConsistent2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorDecompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorOptions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorPenalty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorSame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/GtsvectorUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gtsvectorin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Gtsvectorout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasAnyColumnPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasAnyColumnPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasAnyColumnPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasAnyColumnPrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasAnyColumnPrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasAnyColumnPrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege11.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege12.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasColumnPrivilege9.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasDatabasePrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasDatabasePrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasDatabasePrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasDatabasePrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasDatabasePrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasDatabasePrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasForeignDataWrapperPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasForeignDataWrapperPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasForeignDataWrapperPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasForeignDataWrapperPrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasForeignDataWrapperPrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasForeignDataWrapperPrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasFunctionPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasFunctionPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasFunctionPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasFunctionPrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasFunctionPrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasFunctionPrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasLanguagePrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasLanguagePrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasLanguagePrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasLanguagePrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasLanguagePrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasLanguagePrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasParameterPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasParameterPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasParameterPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSchemaPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSchemaPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSchemaPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSchemaPrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSchemaPrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSchemaPrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSequencePrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSequencePrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSequencePrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSequencePrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSequencePrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasSequencePrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasServerPrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasServerPrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasServerPrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasServerPrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasServerPrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasServerPrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablePrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablePrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablePrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablePrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablePrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablePrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablespacePrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablespacePrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablespacePrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablespacePrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablespacePrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTablespacePrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTypePrivilege1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTypePrivilege2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTypePrivilege3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTypePrivilege4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTypePrivilege5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HasTypePrivilege6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashAclitem.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashAclitemExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashArray.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashArrayExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashMultirangeExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashNumeric.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashNumericExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashRangeExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HashRecordExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashbpchar.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashbpcharextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashchar.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashcharextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashenum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashenumextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashfloat4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashfloat4extended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashfloat8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashfloat8extended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashhandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashinet.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashinetextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashint2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashint2extended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashint4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashint4extended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashint8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashint8extended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashmacaddr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashmacaddr8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashmacaddr8extended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashmacaddrextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashname.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashnameextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashoid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashoidextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashoidvector.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashoidvectorextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashtext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashtextextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashtid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashtidextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashvarlena.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hashvarlenaextended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/HeapTableamHandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Height.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Host.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Hostmask.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Iclikejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Iclikesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Icnlikejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Icnlikesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Icregexeqjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Icregexeqsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Icregexnejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Icregexnesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange11.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange12.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange13.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange14.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange15.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange16.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InRange9.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IndexAmHandlerIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IndexAmHandlerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetClientAddr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetClientPort.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistFetch.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistPenalty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistSame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetGistUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetMerge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSameFamily.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetServerAddr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetServerPort.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSpgChoose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSpgConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSpgInnerConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSpgLeafConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetSpgPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Inetand.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Inetmi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InetmiInt8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Inetnot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Inetor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Inetpl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Initcap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int21.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int22.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int23.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int24pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int25.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int26.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int28pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2Accum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2AccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2AvgAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2AvgAccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2MulCash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2Sum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2abs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2and.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2in.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2int4Sum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2larger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2mod.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2not.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2or.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2shl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2shr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2smaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2um.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2up.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2vectorin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2vectorout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2vectorrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2vectorsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int2xor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int41.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int42pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int43.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int44.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int45.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int46.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int47.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int48pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int49.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4Accum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4AccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4AvgAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4AvgAccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4AvgCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4MulCash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4Sum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4abs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4and.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4in.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4inc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4larger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4mod.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4multirange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4multirange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4multirange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4not.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4or.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4range1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4range2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4rangeCanonical.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4rangeSubdiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4shl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4shr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4smaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4um.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4up.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int4xor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int81.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int82pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int83.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int84pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int85.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int86.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int87.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int88.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8Accum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8AccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8Avg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8AvgAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8AvgAccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8AvgCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8AvgDeserialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8AvgSerialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8MulCash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8Sum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8abs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8and.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8dec.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8decAny.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8div.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8in.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8inc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8incAny.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8incFloat8Float8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8incSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8larger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8mi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8mod.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8mul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8multirange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8multirange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8multirange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8not.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8or.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8pl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8plInet.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8range1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8range2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8rangeCanonical.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8rangeSubdiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8shl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8shr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8smaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8um.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8up.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Int8xor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntegerPlDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InterLb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InterSb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InterSl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InternalIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/InternalOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Interval1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Interval2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalAccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalAvg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalDiv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalMi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalMul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalPl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalPlDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalPlTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalPlTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalPlTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalPlTimetz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IntervalUm.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Intervaltypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Intervaltypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IsNormalized.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isclosed.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isempty1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isempty2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isfinite1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isfinite2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isfinite3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isfinite4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ishorizontal1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ishorizontal2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ishorizontal3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Iso8859ToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Iso8859_1ToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IsoToKoi8r.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IsoToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IsoToWin1251.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/IsoToWin866.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isopen.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isparallel1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isparallel2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isperp1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isperp2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isvertical1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isvertical2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Isvertical3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JohabToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonAgg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonAggStrict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonAggStrictTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonArrayElement.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonArrayElementText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonArrayLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonBuildArray1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonBuildArray2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonBuildObject1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonBuildObject2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonExtractPath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonExtractPathText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObject1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObject2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAgg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggStrict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggStrictTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggUnique.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggUniqueStrict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggUniqueStrictTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectAggUniqueTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectField.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonObjectFieldText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonPopulateRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonStripNulls.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonToRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonToTsvector1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonToTsvector2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonTypeof.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbAgg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbAggStrict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbAggStrictTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbArrayElement.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbArrayElementText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbArrayLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbBuildArray1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbBuildArray2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbBuildObject1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbBuildObject2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbConcat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbContained.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbContains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbDelete1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbDelete2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbDelete3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbDeletePath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbExists.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbExistsAll.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbExistsAny.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbExtractPath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbExtractPathText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbInsert.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObject1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObject2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAgg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggStrict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggStrictTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggUnique.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggUniqueStrict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggUniqueStrictTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectAggUniqueTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectField.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbObjectFieldText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathExists.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathExistsOpr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathExistsTz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathMatch.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathMatchOpr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathMatchTz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathQueryArray.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathQueryArrayTz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathQueryFirst.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPathQueryFirstTz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPopulateRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbPretty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbSet.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbSetLax.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbStripNulls.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbSubscriptHandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbToRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbToTsvector1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbToTsvector2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonbTypeof.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonpathIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonpathOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonpathRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JsonpathSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JustifyDays.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JustifyHours.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/JustifyInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Koi8rToIso.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Koi8rToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Koi8rToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Koi8rToWin1251.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Koi8rToWin866.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Koi8uToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lag1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lag2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lag3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LanguageHandlerIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LanguageHandlerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LastValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lastval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Latin1ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Latin2ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Latin2ToWin1250.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Latin3ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Latin4ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lcm1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lcm2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lcm3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lead1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lead2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lead3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Left.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Length8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Like1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Like2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Like3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LikeEscape1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LikeEscape2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Likejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Likesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Line.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineHorizontal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineInterpt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineIntersect.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineParallel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LinePerp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LineVertical.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ln1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ln2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoClose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoCreat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoCreate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoFromBytea.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoGet1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoGet2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoLseek.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoLseek64.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoOpen.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoPut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoTell.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoTell64.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoTruncate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoTruncate64.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LoUnlink.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Log1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Log101.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Log102.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Log2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Log3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Loread.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lower1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lower2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lower3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LowerInc1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LowerInc2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LowerInf1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LowerInf2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lowrite.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lpad1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lpad2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lseg1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Lseg2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegCenter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegHorizontal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegInterpt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegIntersect.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegParallel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegPerp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/LsegVertical.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ltrim1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ltrim2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ltrim3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8And.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8In.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Not.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Or.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Macaddr8Set7bit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrAnd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrNot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrOr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MacaddrSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MakeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MakeInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MakeTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MakeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MakeTimestamptz1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MakeTimestamptz2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Makeaclitem.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Masklen.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Matchingjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Matchingsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max11.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max12.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max13.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max14.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max15.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max16.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max17.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max18.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max19.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max20.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max21.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max22.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Max9.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Md51.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Md52.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToBig5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToEucCn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToEucJp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToEucKr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToEucTw.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToIso.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToKoi8r.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToLatin1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToLatin2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToLatin3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToLatin4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToSjis.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToWin1250.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToWin1251.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MicToWin866.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min11.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min12.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min13.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min14.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min15.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min16.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min17.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min18.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min19.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min20.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min21.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min22.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Min9.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MinScale.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Mod1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Mod2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Mod3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Mod4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Mode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ModeFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Money1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Money2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Money3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MulDInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Multirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeAdjacentMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeAdjacentRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeAfterMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeAfterRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeBeforeMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeBeforeRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeContainedByMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeContainedByRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeContainsElem.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeContainsMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeContainsRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeGistCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeGistConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeIntersect.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeIntersectAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeMinus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOverlapsMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOverlapsRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOverleftMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOverleftRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOverrightMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeOverrightRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeTypanalyze.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MultirangeUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Multirangesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/MxidAge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Name1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Name2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Name3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameconcatoid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameeqtext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namege.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namegetext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namegt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namegttext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameiclike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameicnlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameicregexeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameicregexne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namein.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namele.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameletext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namelike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namelt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namelttext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namene.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namenetext.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namenlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namerecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameregexeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nameregexne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Namesend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Neqjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Neqsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Netmask.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Network.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkOverlap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSub.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSubeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSubsetSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSup.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NetworkSupeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Networkjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Networksel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nextval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nlikejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nlikesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Normalize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Notlike1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Notlike2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Notlike3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Now.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Npoints1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Npoints2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NthValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Ntile.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumNonnulls.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumNulls.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numeric8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAbs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAccumInv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAdd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAvg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAvgAccum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAvgCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAvgDeserialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericAvgSerialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericDeserialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericDiv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericDivTrunc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericExp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericInc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericLn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericLog.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericMod.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericMul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPlPgLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyAvg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyCombine.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyDeserialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolySerialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyStddevPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyStddevSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolySum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyVarPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPolyVarSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericPower.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSerialize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSqrt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericStddevPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericStddevSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSub.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericUminus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericUplus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericVarPop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumericVarSamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numerictypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numerictypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nummultirange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nummultirange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Nummultirange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numnode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numrange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Numrange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/NumrangeSubdiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ObjDescription1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ObjDescription2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OctetLength1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OctetLength2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OctetLength3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OctetLength4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oideq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidgt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidlarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidsmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectoreq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorgt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectorsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Oidvectortypes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OnPb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OnPl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OnPpath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OnPs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OnSb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OnSl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OrderedSetTransition.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/OrderedSetTransitionMulti.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps11.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps12.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps13.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlaps9.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlay1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlay2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlay3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlay4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlay5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Overlay6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ParseIdent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Path.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathAdd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathAddPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathContainPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathDivPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathInter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathMulPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathNEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathNGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathNGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathNLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathNLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathNpoints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PathSubPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Pclose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentRank1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentRank2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentRankFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileCont1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileCont2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileCont3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileCont4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileContFloat8Final.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileContFloat8MultiFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileContIntervalFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileContIntervalMultiFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileDisc1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileDisc2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileDiscFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PercentileDiscMultiFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryLock1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryLock2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryLockShared1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryLockShared2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryUnlock1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryUnlock2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryUnlockAll.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryUnlockShared1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryUnlockShared2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryXactLock1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryXactLock2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryXactLockShared1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgAdvisoryXactLockShared2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgBackendPid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgBlockingPids.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCancelBackend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCharToEncoding.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgClientEncoding.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCollationActualVersion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCollationFor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCollationIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgColumnCompression.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgColumnIsUpdatable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgColumnSize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgConfLoadTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgControlCheckpoint.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgControlInit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgControlRecovery.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgControlSystem.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgConversionIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCopyLogicalReplicationSlot1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCopyLogicalReplicationSlot2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCopyLogicalReplicationSlot3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCopyPhysicalReplicationSlot1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCopyPhysicalReplicationSlot2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCreateLogicalReplicationSlot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCreatePhysicalReplicationSlot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCurrentSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCurrentWalFlushLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCurrentWalInsertLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCurrentWalLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCurrentXactId.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgCurrentXactIdIfAssigned.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDatabaseCollationActualVersion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDatabaseSize1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDatabaseSize2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDdlCommandIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDdlCommandOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDdlCommandRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDdlCommandSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDependenciesIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDependenciesOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDependenciesRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDependenciesSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDescribeObject.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgDropReplicationSlot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgEncodingMaxLength.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgEncodingToChar.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgEventTriggerTableRewriteOid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgEventTriggerTableRewriteReason.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgExportSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgExtensionConfigDump.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgFilenodeRelation.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgFunctionIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetConstraintdef1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetConstraintdef2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetExpr1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetExpr2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetFunctionArgDefault.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetFunctionArguments.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetFunctionIdentityArguments.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetFunctionResult.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetFunctionSqlbody.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetFunctiondef.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetIndexdef1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetIndexdef2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetObjectAddress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetPartitionConstraintdef.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetPartkeydef.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetReplicaIdentityIndex.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetRuledef1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetRuledef2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetSerialSequence.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetStatisticsobjdef.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetStatisticsobjdefColumns.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetStatisticsobjdefExpressions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetTriggerdef1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetTriggerdef2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetUserbyid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetViewdef1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetViewdef2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetViewdef3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetViewdef4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetViewdef5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgGetWalReplayPauseState.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgHasRole1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgHasRole2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgHasRole3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgHasRole4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgHasRole5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgHasRole6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIdentifyObject.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIdentifyObjectAsAddress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgImportSystemCollations.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIndexColumnHasProperty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIndexHasProperty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIndexamHasProperty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIndexamProgressPhasename.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIndexesSize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIsInRecovery.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIsOtherTempSchema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIsWalReplayPaused.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgIsolationTestSessionIsBlocked.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgJitAvailable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLastCommittedXact.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLastWalReceiveLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLastWalReplayLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLastXactReplayTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLogicalEmitMessage1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLogicalEmitMessage2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnMi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnMii.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnPli.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgLsnSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgMcvListIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgMcvListOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgMcvListRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgMcvListSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgMyTempSchema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNdistinctIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNdistinctOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNdistinctRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNdistinctSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNextoid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNodeTreeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNodeTreeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNodeTreeRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNodeTreeSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNotificationQueueUsage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgNotify.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgOpclassIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgOperatorIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgOpfamilyIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgPartitionRoot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgPostmasterStartTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgReadFileOld.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRelationFilenode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRelationFilepath.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRelationIsPublishable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRelationIsUpdatable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRelationSize1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRelationSize2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgReplicationSlotAdvance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgRotateLogfileOld.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSafeSnapshotBlockingPids.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSequenceLastValue.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSequenceParameters.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSettingsGetFlags.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSizeBytes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSizePretty1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSizePretty2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSleep.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSleepFor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSleepUntil.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSnapshotIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSnapshotOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSnapshotRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSnapshotSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSnapshotXmax.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgSnapshotXmin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatClearSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatForceNextFlush.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetAnalyzeCount.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetArchiver.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetAutoanalyzeCount.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetAutovacuumCount.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendActivity.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendActivityStart.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendClientAddr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendClientPort.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendDbid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendPid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendStart.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendUserid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendWaitEvent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendWaitEventType.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBackendXactStart.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBgwriterBufWrittenCheckpoints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBgwriterBufWrittenClean.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBgwriterMaxwrittenClean.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBgwriterRequestedCheckpoints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBgwriterStatResetTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBgwriterTimedCheckpoints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBlocksFetched.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBlocksHit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBufAlloc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBufFsyncBackend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetBufWrittenBackend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetCheckpointSyncTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetCheckpointWriteTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbActiveTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbBlkReadTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbBlkWriteTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbBlocksFetched.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbBlocksHit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbChecksumFailures.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbChecksumLastFailure.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbConflictAll.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbConflictBufferpin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbConflictLock.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbConflictSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbConflictStartupDeadlock.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbConflictTablespace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbDeadlocks.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbIdleInTransactionTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbNumbackends.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbSessionTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbSessions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbSessionsAbandoned.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbSessionsFatal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbSessionsKilled.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbStatResetTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTempBytes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTempFiles.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTuplesDeleted.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTuplesFetched.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTuplesInserted.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTuplesReturned.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbTuplesUpdated.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbXactCommit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDbXactRollback.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetDeadTuples.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetFunctionCalls.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetFunctionSelfTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetFunctionTotalTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetInsSinceVacuum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetLastAnalyzeTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetLastAutoanalyzeTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetLastAutovacuumTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetLastVacuumTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetLiveTuples.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetModSinceAnalyze.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetNumscans.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetReplicationSlot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetSnapshotTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetSubscriptionStats.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetTuplesDeleted.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetTuplesFetched.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetTuplesHotUpdated.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetTuplesInserted.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetTuplesReturned.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetTuplesUpdated.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetVacuumCount.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetWal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetWalReceiver.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactBlocksFetched.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactBlocksHit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactFunctionCalls.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactFunctionSelfTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactFunctionTotalTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactNumscans.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactTuplesDeleted.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactTuplesFetched.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactTuplesHotUpdated.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactTuplesInserted.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactTuplesReturned.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatGetXactTuplesUpdated.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStatisticsObjIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgStopMakingPinnedObjects.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTableIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTableSize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTablespaceLocation.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTablespaceSize1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTablespaceSize2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTerminateBackend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTotalRelationSize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTriggerDepth.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryLock1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryLock2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryLockShared1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryLockShared2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryXactLock1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryXactLock2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryXactLockShared1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTryAdvisoryXactLockShared2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTsConfigIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTsDictIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTsParserIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTsTemplateIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTypeIsVisible.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgTypeof.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgVisibleInSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgWalLsnDiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgWalfileName.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgWalfileNameOffset.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgXactCommitTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgXactCommitTimestampOrigin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgXactStatus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgproBuild.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgproEdition.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PgproVersion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PhrasetoTsquery1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PhrasetoTsquery2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Pi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PlaintoTsquery1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PlaintoTsquery2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PlpgsqlCallHandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PlpgsqlInlineHandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PlpgsqlValidator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Point1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Point2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Point3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Point4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Point5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointAbove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointAdd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointBelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointDiv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointHoriz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointLeft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointMul.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointRight.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointSub.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PointVert.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyAbove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyBelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyCenter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyContain.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyContainPt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyContained.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyDistance.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyLeft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyNpoints.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyOverabove.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyOverbelow.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyOverlap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyOverleft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyOverright.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolyRight.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolySame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PolySend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Polygon1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Polygon2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Polygon3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Polygon4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Popen.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Position1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Position2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Position3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Positionjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Positionsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PostgresqlFdwValidator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Pow1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Pow2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Power1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Power2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Prefixjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Prefixsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PrsdEnd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PrsdHeadline.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PrsdLextype.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PrsdNexttoken.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PrsdStart.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PtContainedCircle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/PtContainedPoly.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QueryToXml.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QueryToXmlAndXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QueryToXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Querytree.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QuoteIdent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QuoteLiteral1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QuoteLiteral2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QuoteNullable1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/QuoteNullable2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Radians.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Radius.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Random.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAdjacent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAdjacentMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAfter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAfterMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAgg1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAgg2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeBefore.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeBeforeMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeContainedBy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeContainedByMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeContains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeContainsElem.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeContainsMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGistConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGistPenalty.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGistPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGistSame.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGistUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeIntersect.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeIntersectAgg1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeIntersectAgg2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeIntersectAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeMerge1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeMerge2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeMinus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOverlaps.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOverlapsMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOverleft.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOverleftMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOverright.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeOverrightMultirange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeTypanalyze.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RangeUnion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rangesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rank1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rank2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RankFinal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RawArraySubscriptHandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordImageEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordImageGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordImageGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordImageLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordImageLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordImageNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RecordSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regclass.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regclassin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regclassout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regclassrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regclasssend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regcollationin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regcollationout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regcollationrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regcollationsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regconfigin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regconfigout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regconfigrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regconfigsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regdictionaryin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regdictionaryout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regdictionaryrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regdictionarysend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regexeqjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regexeqsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regexnejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regexnesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpCount1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpCount2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpCount3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpInstr1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpInstr2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpInstr3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpInstr4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpInstr5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpInstr6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpLike1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpLike2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpMatch1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpMatch2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpReplace1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpReplace2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpReplace3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpReplace4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpReplace5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSplitToArray1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSplitToArray2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSubstr1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSubstr2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSubstr3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSubstr4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegexpSubstr5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regnamespacein.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regnamespaceout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regnamespacerecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regnamespacesend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperatorin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperatorout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperatorrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperatorsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regoperrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regopersend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocedurein.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocedureout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocedurerecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regproceduresend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprocsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprofilein.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprofileout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprofilerecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regprofilesend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrAvgx.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrAvgy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrCount.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrIntercept.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrR2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrSlope.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrSxx.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrSxy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RegrSyy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regrolein.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regroleout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regrolerecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regrolesend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regtypein.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regtypeout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regtyperecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Regtypesend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Repeat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Replace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Reverse.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Right.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Round1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Round2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Round3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RowNumber.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RowSecurityActive1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RowSecurityActive2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RowToJson1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/RowToJson2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rpad1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rpad2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rtrim1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rtrim2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Rtrim3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SatisfiesHashPartition.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalargejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalargesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalargtjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalargtsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalarlejoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalarlesel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalarltjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scalarltsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Scale.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SchemaToXml.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SchemaToXmlAndXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SchemaToXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SessionUser.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SetBit1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SetBit2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SetByte.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SetConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SetMasklen1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SetMasklen2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Setseed.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Setval1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Setval2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Setweight1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Setweight2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sha224.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sha256.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sha384.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sha512.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ShellIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ShellOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ShiftJis_2004ToEucJis_2004.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ShiftJis_2004ToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ShobjDescription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sign1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sign2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SimilarEscape.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SimilarToEscape1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SimilarToEscape2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sind.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sinh.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SjisToEucJp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SjisToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SjisToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Slope.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgBboxQuadConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgBoxQuadChoose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgBoxQuadConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgBoxQuadInnerConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgBoxQuadLeafConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgBoxQuadPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgKdChoose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgKdConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgKdInnerConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgKdPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgPolyQuadCompress.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgQuadChoose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgQuadConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgQuadInnerConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgQuadLeafConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgQuadPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgRangeQuadChoose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgRangeQuadConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgRangeQuadInnerConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgRangeQuadLeafConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgRangeQuadPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgTextChoose.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgTextConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgTextInnerConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgTextLeafConsistent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SpgTextPicksplit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Spghandler.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/SplitPart.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sqrt1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sqrt2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StartsWith.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StatementTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Stddev1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Stddev2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Stddev3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Stddev4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Stddev5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Stddev6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevPop1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevPop2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevPop3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevPop4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevPop5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevPop6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevSamp1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevSamp2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevSamp3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevSamp4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevSamp5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StddevSamp6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StringAgg1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StringAgg2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StringAggFinalfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StringAggTransfn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StringToArray1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/StringToArray2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Strip.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Strpos.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substr1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substr2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substr3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substr4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Substring8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Sum8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/System.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TableAmHandlerIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TableAmHandlerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TableToXml.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TableToXmlAndXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TableToXmlschema.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tan.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tand.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tanh.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Text1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Text2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Text3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Text4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Text5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Text6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextPatternGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextPatternGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextPatternLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextPatternLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextStartsWithSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textanycat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textcat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Texteq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Texteqname.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textgename.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textgtname.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Texticlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TexticlikeSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Texticnlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Texticregexeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TexticregexeqSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Texticregexne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textlen.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textlename.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextlikeSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textltname.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textnename.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textnlike.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textregexeq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TextregexeqSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textregexne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Textsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ThesaurusInit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ThesaurusLexize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tideq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidgt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidlarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tidsmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Time1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Time2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Time3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Time4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Time5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeMiInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeMiTime.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimePlInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimeSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimedatePl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timeofday.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamp1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamp2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamp3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamp4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampCmpDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampCmpTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampEqDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampEqTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampGeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampGeTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampGtDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampGtTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLeTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLtDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampLtTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampMi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampMiInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampNeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampNeTimestamptz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampPlInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestampSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptz1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptz2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptz3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptz4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptz5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzCmpDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzCmpTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzEqDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzEqTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzGeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzGeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzGtDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzGtTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLtDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzLtTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzMi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzMiInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzNeDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzNeTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzPlInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimestamptzSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptztypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timestamptztypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetz1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetz2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetz3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzLarger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzMiInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzPlInterval.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzSmaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TimetzdatePl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetztypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timetztypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timezone1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timezone2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timezone3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timezone4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timezone5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Timezone6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToAscii1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToAscii2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToAscii3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToChar8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToDate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToHex1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToHex2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToJson.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToJsonb.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToNumber.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegclass.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegcollation.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegnamespace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegoper.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegoperator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegproc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegprocedure.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegprofile.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegrole.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToRegtype.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTimestamp1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTimestamp2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsquery1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsquery2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsvector1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsvector2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsvector3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsvector4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsvector5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/ToTsvector6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TransactionTimestamp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Translate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TriggerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TrimArray.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TrimScale.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Trunc1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Trunc2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Trunc3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Trunc4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Trunc5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsDelete1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsDelete2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsFilter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline10.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline11.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline12.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline7.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsHeadline9.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsLexize.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsMatchQv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsMatchTq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsMatchTt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsMatchVq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRank1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRank2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRank3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRank4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRankCd1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRankCd2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRankCd3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRankCd4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRewrite1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsRewrite2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsTypanalyze.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsmHandlerIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsmHandlerOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsmatchjoinsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsmatchsel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsmultirange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsmultirange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsmultirange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqMcontained.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqMcontains.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryAnd.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryNot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryOr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryPhrase1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsqueryPhrase2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsqueryin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsqueryout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsqueryrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsquerysend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsrange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsrange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsrangeSubdiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tstzmultirange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tstzmultirange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tstzmultirange3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tstzrange1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tstzrange2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TstzrangeSubdiff.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorConcat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TsvectorToArray.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsvectorin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsvectorout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsvectorrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Tsvectorsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidCurrent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidCurrentIfAssigned.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidCurrentSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidSnapshotIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidSnapshotOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidSnapshotRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidSnapshotSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidSnapshotXmax.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidSnapshotXmin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidStatus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/TxidVisibleInSnapshot.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UhcToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Unistr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Unknownin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Unknownout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Unknownrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Unknownsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UpgradeCoveringNbtree.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Upper1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Upper2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Upper3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UpperInc1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UpperInc2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UpperInf1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UpperInf2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToBig5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToEucCn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToEucJis_2004.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToEucJp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToEucKr.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToEucTw.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToGb18030.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToGbk.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToIso8859.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToIso8859_1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToJohab.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToKoi8r.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToKoi8u.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToShiftJis_2004.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToSjis.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToUhc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Utf8ToWin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidCmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidEq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidGe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidGt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidHash.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidHashExtended.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidLe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidLt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidNe.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/UuidSortsupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarPop1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarPop2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarPop3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarPop4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarPop5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarPop6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarSamp1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarSamp2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarSamp3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarSamp4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarSamp5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarSamp6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbit.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarbitIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarbitOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarbitRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarbitSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarbitSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbitcmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbiteq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbitge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbitgt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbitle.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbitlt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbitne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbittypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varbittypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varchar1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varchar2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VarcharSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varcharin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varcharout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varcharrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varcharsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varchartypmodin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Varchartypmodout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Variance1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Variance2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Variance3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Variance4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Variance5.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Variance6.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Version.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VoidIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VoidOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VoidRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/VoidSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WebsearchToTsquery1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WebsearchToTsquery2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Width.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WidthBucket1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WidthBucket2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WidthBucket3.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win1250ToLatin2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win1250ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win1251ToIso.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win1251ToKoi8r.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win1251ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win1251ToWin866.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win866ToIso.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win866ToKoi8r.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win866ToMic.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Win866ToWin1251.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WinToUtf8.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WindowDenseRankSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WindowRankSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/WindowRowNumberSupport.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8Larger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8Smaller.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8cmp.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8eq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8ge.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8gt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8in.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8le.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8lt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8ne.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8out.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8recv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xid8send.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xideq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xideqint4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xidin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xidneq.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xidneqint4.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xidout.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xidrecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xidsend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xml.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlIn.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlIsWellFormed.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlIsWellFormedContent.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlIsWellFormedDocument.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlOut.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlRecv.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XmlSend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xmlagg.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xmlcomment.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xmlconcat2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xmlexists.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xmlvalidate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xpath1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/Xpath2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XpathExists1.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/routines/XpathExists2.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/Aclexplode.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/GenerateSeries.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/GenerateSubscripts.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonArrayElements.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonArrayElementsText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonEach.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonEachText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonObjectKeys.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonPopulateRecordset.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonToRecordset.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbArrayElements.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbArrayElementsText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbEach.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbEachText.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbObjectKeys.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbPathQuery.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbPathQueryTz.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbPopulateRecordset.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/JsonbToRecordset.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAggregate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAm.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAmop.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAmproc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAttrdef.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAttribute.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAuthMembers.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAvailableExtensionVersions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgAvailableExtensions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgCast.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgClass.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgCollation.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgConstraint.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgConversion.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgCursor.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgCursors.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgDatabase.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgDbRoleSetting.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgDefaultAcl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgDepend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgDescription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgEnum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgEventTrigger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgEventTriggerDdlCommands.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgEventTriggerDroppedObjects.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgExtension.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgExtensionUpdatePaths.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgForeignDataWrapper.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgForeignServer.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgForeignTable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGetCatalogForeignKeys.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGetKeywords.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGetMultixactMembers.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGetPublicationTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGetReplicationSlots.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGetWalResourceManagers.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgGroup.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgIndex.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgInherits.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgInitPrivs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLanguage.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLargeobjectMetadata.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgListeningChannels.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLockStatus.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLocks.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLogicalSlotGetBinaryChanges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLogicalSlotGetChanges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLogicalSlotPeekBinaryChanges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgLogicalSlotPeekChanges.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgMatviews.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgMcvListItems.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgNamespace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgOpclass.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgOperator.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgOpfamily.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgOptionsToTable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgParameterAcl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPartitionAncestors.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPartitionTree.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPartitionedTable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPolicies.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPolicy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPreparedStatement.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPreparedStatements.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPreparedXact.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPreparedXacts.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgProc.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPublication.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPublicationNamespace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPublicationRel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgPublicationTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgRange.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgReplicationOrigin.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgReplicationSlots.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgRewrite.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgRoles.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgRules.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSeclabel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSeclabels.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSequence.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSequences.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSettings.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgShdepend.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgShdescription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgShowAllSettings.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgShseclabel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSnapshotXip.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatActivity.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatAllIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatAllTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatArchiver.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatBgwriter.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatDatabase.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatDatabaseConflicts.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetActivity.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetBackendIdset.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetProgressInfo.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetRecoveryPrefetch.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetSlru.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetSubscription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGetWalSenders.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatGssapi.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatProgressAnalyze.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatProgressBasebackup.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatProgressCluster.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatProgressCopy.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatProgressCreateIndex.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatProgressVacuum.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatRecoveryPrefetch.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatReplication.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatReplicationSlots.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatSlru.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatSsl.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatSubscription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatSubscriptionStats.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatSysIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatSysTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatUserFunctions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatUserIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatUserTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatWal.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatWalReceiver.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatXactAllTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatXactSysTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatXactUserFunctions.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatXactUserTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioAllIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioAllSequences.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioAllTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioSysIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioSysSequences.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioSysTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioUserIndexes.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioUserSequences.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatioUserTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatisticExt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStats.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatsExt.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgStatsExtExprs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSubscription.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgSubscriptionRel.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTables.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTablespace.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTablespaceDatabases.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTimezoneAbbrevs.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTimezoneNames.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTransform.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTrigger.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTsConfig.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTsConfigMap.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTsDict.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTsParser.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgTsTemplate.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgType.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgUser.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgUserMappings.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/PgViews.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/RegexpMatches.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/RegexpSplitToTable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/StringToTable.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/TsDebug.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/TsParse.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/TsStat.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/TsTokenType.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/TxidSnapshotXip.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/Unnest.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/AclexplodeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/GenerateSeriesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/GenerateSubscriptsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonArrayElementsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonArrayElementsTextRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonEachRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonEachTextRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonObjectKeysRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonPopulateRecordsetRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonToRecordsetRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbArrayElementsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbArrayElementsTextRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbEachRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbEachTextRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbObjectKeysRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbPathQueryRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbPathQueryTzRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbPopulateRecordsetRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/JsonbToRecordsetRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAggregateRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAmRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAmopRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAmprocRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAttrdefRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAttributeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAuthMembersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAvailableExtensionVersionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgAvailableExtensionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgCastRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgClassRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgCollationRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgConstraintRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgConversionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgCursorRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgCursorsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgDatabaseRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgDbRoleSettingRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgDefaultAclRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgDependRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgDescriptionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgEnumRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgEventTriggerDdlCommandsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgEventTriggerDroppedObjectsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgEventTriggerRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgExtensionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgExtensionUpdatePathsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgForeignDataWrapperRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgForeignServerRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgForeignTableRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGetCatalogForeignKeysRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGetKeywordsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGetMultixactMembersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGetPublicationTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGetReplicationSlotsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGetWalResourceManagersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgGroupRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgIndexRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgInheritsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgInitPrivsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLanguageRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLargeobjectMetadataRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgListeningChannelsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLockStatusRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLocksRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLogicalSlotGetBinaryChangesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLogicalSlotGetChangesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLogicalSlotPeekBinaryChangesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgLogicalSlotPeekChangesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgMatviewsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgMcvListItemsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgNamespaceRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgOpclassRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgOperatorRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgOpfamilyRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgOptionsToTableRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgParameterAclRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPartitionAncestorsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPartitionTreeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPartitionedTableRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPoliciesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPolicyRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPreparedStatementRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPreparedStatementsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPreparedXactRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPreparedXactsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgProcRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPublicationNamespaceRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPublicationRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPublicationRelRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgPublicationTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgRangeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgReplicationOriginRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgReplicationSlotsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgRewriteRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgRolesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgRulesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSeclabelRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSeclabelsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSequenceRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSequencesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSettingsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgShdependRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgShdescriptionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgShowAllSettingsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgShseclabelRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSnapshotXipRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatActivityRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatAllIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatAllTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatArchiverRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatBgwriterRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatDatabaseConflictsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatDatabaseRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetActivityRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetBackendIdsetRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetProgressInfoRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetRecoveryPrefetchRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetSlruRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetSubscriptionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGetWalSendersRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatGssapiRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatProgressAnalyzeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatProgressBasebackupRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatProgressClusterRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatProgressCopyRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatProgressCreateIndexRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatProgressVacuumRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatRecoveryPrefetchRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatReplicationRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatReplicationSlotsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatSlruRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatSslRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatSubscriptionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatSubscriptionStatsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatSysIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatSysTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatUserFunctionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatUserIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatUserTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatWalReceiverRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatWalRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatXactAllTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatXactSysTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatXactUserFunctionsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatXactUserTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioAllIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioAllSequencesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioAllTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioSysIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioSysSequencesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioSysTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioUserIndexesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioUserSequencesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatioUserTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatisticExtRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatsExtExprsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatsExtRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgStatsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSubscriptionRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgSubscriptionRelRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTablesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTablespaceDatabasesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTablespaceRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTimezoneAbbrevsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTimezoneNamesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTransformRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTriggerRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTsConfigMapRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTsConfigRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTsDictRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTsParserRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTsTemplateRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgTypeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgUserMappingsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgUserRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/PgViewsRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/RegexpMatchesRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/RegexpSplitToTableRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/StringToTableRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/TsDebugRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/TsParseRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/TsStatRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/TsTokenTypeRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/TxidSnapshotXipRecord.java create mode 100644 backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/tables/records/UnnestRecord.java create mode 100644 resources/src/main/resources/config/roles.xml create mode 100644 resources/src/main/resources/database/datasource.xml diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/DefaultCatalog.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/DefaultCatalog.java new file mode 100644 index 0000000..dcc4e5a --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/DefaultCatalog.java @@ -0,0 +1,63 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.PgCatalog; + +import java.util.Arrays; +import java.util.List; + +import org.jooq.Constants; +import org.jooq.Schema; +import org.jooq.impl.CatalogImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DefaultCatalog extends CatalogImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of DEFAULT_CATALOG + */ + public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog(); + + /** + * The schema information_schema. + */ + public final InformationSchema INFORMATION_SCHEMA = InformationSchema.INFORMATION_SCHEMA; + + /** + * The schema pg_catalog. + */ + public final PgCatalog PG_CATALOG = PgCatalog.PG_CATALOG; + + /** + * No further instances allowed + */ + private DefaultCatalog() { + super(""); + } + + @Override + public final List getSchemas() { + return Arrays.asList( + InformationSchema.INFORMATION_SCHEMA, + PgCatalog.PG_CATALOG + ); + } + + /** + * A reference to the 3.19 minor release of the code generator. If this + * doesn't compile, it's because the runtime library uses an older minor + * release, namely: 3.19. You can turn off the generation of this reference + * by specifying /configuration/generator/generate/jooqVersionReference + */ + private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_19; +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Domains.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Domains.java new file mode 100644 index 0000000..1f86a9e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Domains.java @@ -0,0 +1,73 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema; + + +import java.sql.Timestamp; + +import org.jooq.Domain; +import org.jooq.Schema; +import org.jooq.impl.DSL; +import org.jooq.impl.Internal; +import org.jooq.impl.LazySchema; +import org.jooq.impl.SQLDataType; + + +/** + * Convenience access to all Domains in information_schema. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Domains { + + /** + * The domain information_schema.cardinal_number. + */ + public static final Domain CARDINAL_NUMBER = Internal.createDomain( + schema() + , DSL.name("cardinal_number") + , SQLDataType.INTEGER + , Internal.createCheck(null, null, "CHECK ((VALUE >= 0))") + ); + + /** + * The domain information_schema.character_data. + */ + public static final Domain CHARACTER_DATA = Internal.createDomain( + schema() + , DSL.name("character_data") + , SQLDataType.VARCHAR + ); + + /** + * The domain information_schema.sql_identifier. + */ + public static final Domain SQL_IDENTIFIER = Internal.createDomain( + schema() + , DSL.name("sql_identifier") + , SQLDataType.VARCHAR + ); + + /** + * The domain information_schema.time_stamp. + */ + public static final Domain TIME_STAMP = Internal.createDomain( + schema() + , DSL.name("time_stamp") + , SQLDataType.TIMESTAMP(0).defaultValue(DSL.field(DSL.raw("CURRENT_TIMESTAMP(2)"), SQLDataType.TIMESTAMP)) + ); + + /** + * The domain information_schema.yes_or_no. + */ + public static final Domain YES_OR_NO = Internal.createDomain( + schema() + , DSL.name("yes_or_no") + , SQLDataType.VARCHAR(3) + , Internal.createCheck(null, null, "CHECK (((VALUE)::text = ANY ((ARRAY['YES'::character varying, 'NO'::character varying])::text[])))") + ); + + private static final Schema schema() { + return new LazySchema(DSL.name("information_schema"), DSL.comment(""), () -> InformationSchema.INFORMATION_SCHEMA); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/InformationSchema.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/InformationSchema.java new file mode 100644 index 0000000..de51e5d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/InformationSchema.java @@ -0,0 +1,542 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema; + + +import ervu_secret.ervu_secret.db_beans.DefaultCatalog; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.AdministrableRoleAuthorizations; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ApplicableRoles; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Attributes; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CharacterSets; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CheckConstraintRoutineUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CheckConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CollationCharacterSetApplicability; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Collations; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnDomainUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnPrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnUdtUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Columns; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ConstraintColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ConstraintTableUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DataTypePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DomainConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DomainUdtUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ElementTypes; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.EnabledRoles; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignDataWrapperOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignDataWrappers; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignServerOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignServers; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignTableOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignTables; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.InformationSchemaCatalogName; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.KeyColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Parameters; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ReferentialConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleColumnGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleRoutineGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleTableGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleUdtGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleUsageGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutinePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineRoutineUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineSequenceUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineTableUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Routines; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Schemata; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Sequences; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlFeatures; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlImplementationInfo; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlSizing; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TableConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TablePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Tables; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TriggeredUpdateColumns; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Triggers; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UdtPrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UsagePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserDefinedTypes; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserMappingOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserMappings; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewRoutineUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewTableUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Views; +import ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records._PgExpandarrayRecord; + +import java.util.Arrays; +import java.util.List; + +import org.jooq.Catalog; +import org.jooq.Configuration; +import org.jooq.Domain; +import org.jooq.Field; +import org.jooq.Result; +import org.jooq.Table; +import org.jooq.impl.SchemaImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InformationSchema extends SchemaImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema + */ + public static final InformationSchema INFORMATION_SCHEMA = new InformationSchema(); + + /** + * The table information_schema._pg_expandarray. + */ + public final _PgExpandarray _PG_EXPANDARRAY = _PgExpandarray._PG_EXPANDARRAY; + + /** + * Call information_schema._pg_expandarray. + */ + public static Result<_PgExpandarrayRecord> _PG_EXPANDARRAY( + Configuration configuration + , Object[] __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + )).fetch(); + } + + /** + * Get information_schema._pg_expandarray as a table. + */ + public static _PgExpandarray _PG_EXPANDARRAY( + Object[] __1 + ) { + return ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + ); + } + + /** + * Get information_schema._pg_expandarray as a table. + */ + public static _PgExpandarray _PG_EXPANDARRAY( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + ); + } + + /** + * The table + * information_schema.administrable_role_authorizations. + */ + public final AdministrableRoleAuthorizations ADMINISTRABLE_ROLE_AUTHORIZATIONS = AdministrableRoleAuthorizations.ADMINISTRABLE_ROLE_AUTHORIZATIONS; + + /** + * The table information_schema.applicable_roles. + */ + public final ApplicableRoles APPLICABLE_ROLES = ApplicableRoles.APPLICABLE_ROLES; + + /** + * The table information_schema.attributes. + */ + public final Attributes ATTRIBUTES = Attributes.ATTRIBUTES; + + /** + * The table information_schema.character_sets. + */ + public final CharacterSets CHARACTER_SETS = CharacterSets.CHARACTER_SETS; + + /** + * The table information_schema.check_constraint_routine_usage. + */ + public final CheckConstraintRoutineUsage CHECK_CONSTRAINT_ROUTINE_USAGE = CheckConstraintRoutineUsage.CHECK_CONSTRAINT_ROUTINE_USAGE; + + /** + * The table information_schema.check_constraints. + */ + public final CheckConstraints CHECK_CONSTRAINTS = CheckConstraints.CHECK_CONSTRAINTS; + + /** + * The table + * information_schema.collation_character_set_applicability. + */ + public final CollationCharacterSetApplicability COLLATION_CHARACTER_SET_APPLICABILITY = CollationCharacterSetApplicability.COLLATION_CHARACTER_SET_APPLICABILITY; + + /** + * The table information_schema.collations. + */ + public final Collations COLLATIONS = Collations.COLLATIONS; + + /** + * The table information_schema.column_column_usage. + */ + public final ColumnColumnUsage COLUMN_COLUMN_USAGE = ColumnColumnUsage.COLUMN_COLUMN_USAGE; + + /** + * The table information_schema.column_domain_usage. + */ + public final ColumnDomainUsage COLUMN_DOMAIN_USAGE = ColumnDomainUsage.COLUMN_DOMAIN_USAGE; + + /** + * The table information_schema.column_options. + */ + public final ColumnOptions COLUMN_OPTIONS = ColumnOptions.COLUMN_OPTIONS; + + /** + * The table information_schema.column_privileges. + */ + public final ColumnPrivileges COLUMN_PRIVILEGES = ColumnPrivileges.COLUMN_PRIVILEGES; + + /** + * The table information_schema.column_udt_usage. + */ + public final ColumnUdtUsage COLUMN_UDT_USAGE = ColumnUdtUsage.COLUMN_UDT_USAGE; + + /** + * The table information_schema.columns. + */ + public final Columns COLUMNS = Columns.COLUMNS; + + /** + * The table information_schema.constraint_column_usage. + */ + public final ConstraintColumnUsage CONSTRAINT_COLUMN_USAGE = ConstraintColumnUsage.CONSTRAINT_COLUMN_USAGE; + + /** + * The table information_schema.constraint_table_usage. + */ + public final ConstraintTableUsage CONSTRAINT_TABLE_USAGE = ConstraintTableUsage.CONSTRAINT_TABLE_USAGE; + + /** + * The table information_schema.data_type_privileges. + */ + public final DataTypePrivileges DATA_TYPE_PRIVILEGES = DataTypePrivileges.DATA_TYPE_PRIVILEGES; + + /** + * The table information_schema.domain_constraints. + */ + public final DomainConstraints DOMAIN_CONSTRAINTS = DomainConstraints.DOMAIN_CONSTRAINTS; + + /** + * The table information_schema.domain_udt_usage. + */ + public final DomainUdtUsage DOMAIN_UDT_USAGE = DomainUdtUsage.DOMAIN_UDT_USAGE; + + /** + * The table information_schema.domains. + */ + public final Domains DOMAINS = Domains.DOMAINS; + + /** + * The table information_schema.element_types. + */ + public final ElementTypes ELEMENT_TYPES = ElementTypes.ELEMENT_TYPES; + + /** + * The table information_schema.enabled_roles. + */ + public final EnabledRoles ENABLED_ROLES = EnabledRoles.ENABLED_ROLES; + + /** + * The table information_schema.foreign_data_wrapper_options. + */ + public final ForeignDataWrapperOptions FOREIGN_DATA_WRAPPER_OPTIONS = ForeignDataWrapperOptions.FOREIGN_DATA_WRAPPER_OPTIONS; + + /** + * The table information_schema.foreign_data_wrappers. + */ + public final ForeignDataWrappers FOREIGN_DATA_WRAPPERS = ForeignDataWrappers.FOREIGN_DATA_WRAPPERS; + + /** + * The table information_schema.foreign_server_options. + */ + public final ForeignServerOptions FOREIGN_SERVER_OPTIONS = ForeignServerOptions.FOREIGN_SERVER_OPTIONS; + + /** + * The table information_schema.foreign_servers. + */ + public final ForeignServers FOREIGN_SERVERS = ForeignServers.FOREIGN_SERVERS; + + /** + * The table information_schema.foreign_table_options. + */ + public final ForeignTableOptions FOREIGN_TABLE_OPTIONS = ForeignTableOptions.FOREIGN_TABLE_OPTIONS; + + /** + * The table information_schema.foreign_tables. + */ + public final ForeignTables FOREIGN_TABLES = ForeignTables.FOREIGN_TABLES; + + /** + * The table + * information_schema.information_schema_catalog_name. + */ + public final InformationSchemaCatalogName INFORMATION_SCHEMA_CATALOG_NAME = InformationSchemaCatalogName.INFORMATION_SCHEMA_CATALOG_NAME; + + /** + * The table information_schema.key_column_usage. + */ + public final KeyColumnUsage KEY_COLUMN_USAGE = KeyColumnUsage.KEY_COLUMN_USAGE; + + /** + * The table information_schema.parameters. + */ + public final Parameters PARAMETERS = Parameters.PARAMETERS; + + /** + * The table information_schema.referential_constraints. + */ + public final ReferentialConstraints REFERENTIAL_CONSTRAINTS = ReferentialConstraints.REFERENTIAL_CONSTRAINTS; + + /** + * The table information_schema.role_column_grants. + */ + public final RoleColumnGrants ROLE_COLUMN_GRANTS = RoleColumnGrants.ROLE_COLUMN_GRANTS; + + /** + * The table information_schema.role_routine_grants. + */ + public final RoleRoutineGrants ROLE_ROUTINE_GRANTS = RoleRoutineGrants.ROLE_ROUTINE_GRANTS; + + /** + * The table information_schema.role_table_grants. + */ + public final RoleTableGrants ROLE_TABLE_GRANTS = RoleTableGrants.ROLE_TABLE_GRANTS; + + /** + * The table information_schema.role_udt_grants. + */ + public final RoleUdtGrants ROLE_UDT_GRANTS = RoleUdtGrants.ROLE_UDT_GRANTS; + + /** + * The table information_schema.role_usage_grants. + */ + public final RoleUsageGrants ROLE_USAGE_GRANTS = RoleUsageGrants.ROLE_USAGE_GRANTS; + + /** + * The table information_schema.routine_column_usage. + */ + public final RoutineColumnUsage ROUTINE_COLUMN_USAGE = RoutineColumnUsage.ROUTINE_COLUMN_USAGE; + + /** + * The table information_schema.routine_privileges. + */ + public final RoutinePrivileges ROUTINE_PRIVILEGES = RoutinePrivileges.ROUTINE_PRIVILEGES; + + /** + * The table information_schema.routine_routine_usage. + */ + public final RoutineRoutineUsage ROUTINE_ROUTINE_USAGE = RoutineRoutineUsage.ROUTINE_ROUTINE_USAGE; + + /** + * The table information_schema.routine_sequence_usage. + */ + public final RoutineSequenceUsage ROUTINE_SEQUENCE_USAGE = RoutineSequenceUsage.ROUTINE_SEQUENCE_USAGE; + + /** + * The table information_schema.routine_table_usage. + */ + public final RoutineTableUsage ROUTINE_TABLE_USAGE = RoutineTableUsage.ROUTINE_TABLE_USAGE; + + /** + * The table information_schema.routines. + */ + public final Routines ROUTINES = Routines.ROUTINES; + + /** + * The table information_schema.schemata. + */ + public final Schemata SCHEMATA = Schemata.SCHEMATA; + + /** + * The table information_schema.sequences. + */ + public final Sequences SEQUENCES = Sequences.SEQUENCES; + + /** + * The table information_schema.sql_features. + */ + public final SqlFeatures SQL_FEATURES = SqlFeatures.SQL_FEATURES; + + /** + * The table information_schema.sql_implementation_info. + */ + public final SqlImplementationInfo SQL_IMPLEMENTATION_INFO = SqlImplementationInfo.SQL_IMPLEMENTATION_INFO; + + /** + * The table information_schema.sql_sizing. + */ + public final SqlSizing SQL_SIZING = SqlSizing.SQL_SIZING; + + /** + * The table information_schema.table_constraints. + */ + public final TableConstraints TABLE_CONSTRAINTS = TableConstraints.TABLE_CONSTRAINTS; + + /** + * The table information_schema.table_privileges. + */ + public final TablePrivileges TABLE_PRIVILEGES = TablePrivileges.TABLE_PRIVILEGES; + + /** + * The table information_schema.tables. + */ + public final Tables TABLES = Tables.TABLES; + + /** + * The table information_schema.triggered_update_columns. + */ + public final TriggeredUpdateColumns TRIGGERED_UPDATE_COLUMNS = TriggeredUpdateColumns.TRIGGERED_UPDATE_COLUMNS; + + /** + * The table information_schema.triggers. + */ + public final Triggers TRIGGERS = Triggers.TRIGGERS; + + /** + * The table information_schema.udt_privileges. + */ + public final UdtPrivileges UDT_PRIVILEGES = UdtPrivileges.UDT_PRIVILEGES; + + /** + * The table information_schema.usage_privileges. + */ + public final UsagePrivileges USAGE_PRIVILEGES = UsagePrivileges.USAGE_PRIVILEGES; + + /** + * The table information_schema.user_defined_types. + */ + public final UserDefinedTypes USER_DEFINED_TYPES = UserDefinedTypes.USER_DEFINED_TYPES; + + /** + * The table information_schema.user_mapping_options. + */ + public final UserMappingOptions USER_MAPPING_OPTIONS = UserMappingOptions.USER_MAPPING_OPTIONS; + + /** + * The table information_schema.user_mappings. + */ + public final UserMappings USER_MAPPINGS = UserMappings.USER_MAPPINGS; + + /** + * The table information_schema.view_column_usage. + */ + public final ViewColumnUsage VIEW_COLUMN_USAGE = ViewColumnUsage.VIEW_COLUMN_USAGE; + + /** + * The table information_schema.view_routine_usage. + */ + public final ViewRoutineUsage VIEW_ROUTINE_USAGE = ViewRoutineUsage.VIEW_ROUTINE_USAGE; + + /** + * The table information_schema.view_table_usage. + */ + public final ViewTableUsage VIEW_TABLE_USAGE = ViewTableUsage.VIEW_TABLE_USAGE; + + /** + * The table information_schema.views. + */ + public final Views VIEWS = Views.VIEWS; + + /** + * No further instances allowed + */ + private InformationSchema() { + super("information_schema", null); + } + + + @Override + public Catalog getCatalog() { + return DefaultCatalog.DEFAULT_CATALOG; + } + + @Override + public final List> getDomains() { + return Arrays.asList( + ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER, + ervu_secret.ervu_secret.db_beans.information_schema.Domains.CHARACTER_DATA, + ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER, + ervu_secret.ervu_secret.db_beans.information_schema.Domains.TIME_STAMP, + ervu_secret.ervu_secret.db_beans.information_schema.Domains.YES_OR_NO + ); + } + + @Override + public final List> getTables() { + return Arrays.asList( + _PgExpandarray._PG_EXPANDARRAY, + AdministrableRoleAuthorizations.ADMINISTRABLE_ROLE_AUTHORIZATIONS, + ApplicableRoles.APPLICABLE_ROLES, + Attributes.ATTRIBUTES, + CharacterSets.CHARACTER_SETS, + CheckConstraintRoutineUsage.CHECK_CONSTRAINT_ROUTINE_USAGE, + CheckConstraints.CHECK_CONSTRAINTS, + CollationCharacterSetApplicability.COLLATION_CHARACTER_SET_APPLICABILITY, + Collations.COLLATIONS, + ColumnColumnUsage.COLUMN_COLUMN_USAGE, + ColumnDomainUsage.COLUMN_DOMAIN_USAGE, + ColumnOptions.COLUMN_OPTIONS, + ColumnPrivileges.COLUMN_PRIVILEGES, + ColumnUdtUsage.COLUMN_UDT_USAGE, + Columns.COLUMNS, + ConstraintColumnUsage.CONSTRAINT_COLUMN_USAGE, + ConstraintTableUsage.CONSTRAINT_TABLE_USAGE, + DataTypePrivileges.DATA_TYPE_PRIVILEGES, + DomainConstraints.DOMAIN_CONSTRAINTS, + DomainUdtUsage.DOMAIN_UDT_USAGE, + Domains.DOMAINS, + ElementTypes.ELEMENT_TYPES, + EnabledRoles.ENABLED_ROLES, + ForeignDataWrapperOptions.FOREIGN_DATA_WRAPPER_OPTIONS, + ForeignDataWrappers.FOREIGN_DATA_WRAPPERS, + ForeignServerOptions.FOREIGN_SERVER_OPTIONS, + ForeignServers.FOREIGN_SERVERS, + ForeignTableOptions.FOREIGN_TABLE_OPTIONS, + ForeignTables.FOREIGN_TABLES, + InformationSchemaCatalogName.INFORMATION_SCHEMA_CATALOG_NAME, + KeyColumnUsage.KEY_COLUMN_USAGE, + Parameters.PARAMETERS, + ReferentialConstraints.REFERENTIAL_CONSTRAINTS, + RoleColumnGrants.ROLE_COLUMN_GRANTS, + RoleRoutineGrants.ROLE_ROUTINE_GRANTS, + RoleTableGrants.ROLE_TABLE_GRANTS, + RoleUdtGrants.ROLE_UDT_GRANTS, + RoleUsageGrants.ROLE_USAGE_GRANTS, + RoutineColumnUsage.ROUTINE_COLUMN_USAGE, + RoutinePrivileges.ROUTINE_PRIVILEGES, + RoutineRoutineUsage.ROUTINE_ROUTINE_USAGE, + RoutineSequenceUsage.ROUTINE_SEQUENCE_USAGE, + RoutineTableUsage.ROUTINE_TABLE_USAGE, + Routines.ROUTINES, + Schemata.SCHEMATA, + Sequences.SEQUENCES, + SqlFeatures.SQL_FEATURES, + SqlImplementationInfo.SQL_IMPLEMENTATION_INFO, + SqlSizing.SQL_SIZING, + TableConstraints.TABLE_CONSTRAINTS, + TablePrivileges.TABLE_PRIVILEGES, + Tables.TABLES, + TriggeredUpdateColumns.TRIGGERED_UPDATE_COLUMNS, + Triggers.TRIGGERS, + UdtPrivileges.UDT_PRIVILEGES, + UsagePrivileges.USAGE_PRIVILEGES, + UserDefinedTypes.USER_DEFINED_TYPES, + UserMappingOptions.USER_MAPPING_OPTIONS, + UserMappings.USER_MAPPINGS, + ViewColumnUsage.VIEW_COLUMN_USAGE, + ViewRoutineUsage.VIEW_ROUTINE_USAGE, + ViewTableUsage.VIEW_TABLE_USAGE, + Views.VIEWS + ); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Routines.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Routines.java new file mode 100644 index 0000000..9929f51 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Routines.java @@ -0,0 +1,509 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema; + + +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgCharMaxLength; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgCharOctetLength; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgDatetimePrecision; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgIndexPosition; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgIntervalType; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgNumericPrecision; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgNumericPrecisionRadix; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgNumericScale; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgTruetypid; +import ervu_secret.ervu_secret.db_beans.information_schema.routines._PgTruetypmod; +import ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records._PgExpandarrayRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAttributeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTypeRecord; + +import org.jooq.Configuration; +import org.jooq.Field; +import org.jooq.Result; + + +/** + * Convenience access to all stored procedures and functions in + * information_schema. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Routines { + + /** + * Call information_schema._pg_char_max_length + */ + public static Integer _PgCharMaxLength( + Configuration configuration + , Long typid + , Integer typmod + ) { + _PgCharMaxLength f = new _PgCharMaxLength(); + f.setTypid(typid); + f.setTypmod(typmod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_char_max_length as a field. + */ + public static Field _PgCharMaxLength( + Long typid + , Integer typmod + ) { + _PgCharMaxLength f = new _PgCharMaxLength(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Get information_schema._pg_char_max_length as a field. + */ + public static Field _PgCharMaxLength( + Field typid + , Field typmod + ) { + _PgCharMaxLength f = new _PgCharMaxLength(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Call information_schema._pg_char_octet_length + */ + public static Integer _PgCharOctetLength( + Configuration configuration + , Long typid + , Integer typmod + ) { + _PgCharOctetLength f = new _PgCharOctetLength(); + f.setTypid(typid); + f.setTypmod(typmod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_char_octet_length as a field. + */ + public static Field _PgCharOctetLength( + Long typid + , Integer typmod + ) { + _PgCharOctetLength f = new _PgCharOctetLength(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Get information_schema._pg_char_octet_length as a field. + */ + public static Field _PgCharOctetLength( + Field typid + , Field typmod + ) { + _PgCharOctetLength f = new _PgCharOctetLength(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Call information_schema._pg_datetime_precision + */ + public static Integer _PgDatetimePrecision( + Configuration configuration + , Long typid + , Integer typmod + ) { + _PgDatetimePrecision f = new _PgDatetimePrecision(); + f.setTypid(typid); + f.setTypmod(typmod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_datetime_precision as a field. + */ + public static Field _PgDatetimePrecision( + Long typid + , Integer typmod + ) { + _PgDatetimePrecision f = new _PgDatetimePrecision(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Get information_schema._pg_datetime_precision as a field. + */ + public static Field _PgDatetimePrecision( + Field typid + , Field typmod + ) { + _PgDatetimePrecision f = new _PgDatetimePrecision(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Call information_schema._pg_index_position + */ + public static Integer _PgIndexPosition( + Configuration configuration + , Long __1 + , Short __2 + ) { + _PgIndexPosition f = new _PgIndexPosition(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_index_position as a field. + */ + public static Field _PgIndexPosition( + Long __1 + , Short __2 + ) { + _PgIndexPosition f = new _PgIndexPosition(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get information_schema._pg_index_position as a field. + */ + public static Field _PgIndexPosition( + Field __1 + , Field __2 + ) { + _PgIndexPosition f = new _PgIndexPosition(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call information_schema._pg_interval_type + */ + public static String _PgIntervalType( + Configuration configuration + , Long typid + , Integer mod + ) { + _PgIntervalType f = new _PgIntervalType(); + f.setTypid(typid); + f.setMod(mod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_interval_type as a field. + */ + public static Field _PgIntervalType( + Long typid + , Integer mod + ) { + _PgIntervalType f = new _PgIntervalType(); + f.setTypid(typid); + f.setMod(mod); + + return f.asField(); + } + + /** + * Get information_schema._pg_interval_type as a field. + */ + public static Field _PgIntervalType( + Field typid + , Field mod + ) { + _PgIntervalType f = new _PgIntervalType(); + f.setTypid(typid); + f.setMod(mod); + + return f.asField(); + } + + /** + * Call information_schema._pg_numeric_precision + */ + public static Integer _PgNumericPrecision( + Configuration configuration + , Long typid + , Integer typmod + ) { + _PgNumericPrecision f = new _PgNumericPrecision(); + f.setTypid(typid); + f.setTypmod(typmod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_numeric_precision as a field. + */ + public static Field _PgNumericPrecision( + Long typid + , Integer typmod + ) { + _PgNumericPrecision f = new _PgNumericPrecision(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Get information_schema._pg_numeric_precision as a field. + */ + public static Field _PgNumericPrecision( + Field typid + , Field typmod + ) { + _PgNumericPrecision f = new _PgNumericPrecision(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Call information_schema._pg_numeric_precision_radix + */ + public static Integer _PgNumericPrecisionRadix( + Configuration configuration + , Long typid + , Integer typmod + ) { + _PgNumericPrecisionRadix f = new _PgNumericPrecisionRadix(); + f.setTypid(typid); + f.setTypmod(typmod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_numeric_precision_radix as a + * field. + */ + public static Field _PgNumericPrecisionRadix( + Long typid + , Integer typmod + ) { + _PgNumericPrecisionRadix f = new _PgNumericPrecisionRadix(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Get information_schema._pg_numeric_precision_radix as a + * field. + */ + public static Field _PgNumericPrecisionRadix( + Field typid + , Field typmod + ) { + _PgNumericPrecisionRadix f = new _PgNumericPrecisionRadix(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Call information_schema._pg_numeric_scale + */ + public static Integer _PgNumericScale( + Configuration configuration + , Long typid + , Integer typmod + ) { + _PgNumericScale f = new _PgNumericScale(); + f.setTypid(typid); + f.setTypmod(typmod); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_numeric_scale as a field. + */ + public static Field _PgNumericScale( + Long typid + , Integer typmod + ) { + _PgNumericScale f = new _PgNumericScale(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Get information_schema._pg_numeric_scale as a field. + */ + public static Field _PgNumericScale( + Field typid + , Field typmod + ) { + _PgNumericScale f = new _PgNumericScale(); + f.setTypid(typid); + f.setTypmod(typmod); + + return f.asField(); + } + + /** + * Call information_schema._pg_truetypid + */ + public static Long _PgTruetypid( + Configuration configuration + , PgAttributeRecord __1 + , PgTypeRecord __2 + ) { + _PgTruetypid f = new _PgTruetypid(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_truetypid as a field. + */ + public static Field _PgTruetypid( + PgAttributeRecord __1 + , PgTypeRecord __2 + ) { + _PgTruetypid f = new _PgTruetypid(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get information_schema._pg_truetypid as a field. + */ + public static Field _PgTruetypid( + Field __1 + , Field __2 + ) { + _PgTruetypid f = new _PgTruetypid(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call information_schema._pg_truetypmod + */ + public static Integer _PgTruetypmod( + Configuration configuration + , PgAttributeRecord __1 + , PgTypeRecord __2 + ) { + _PgTruetypmod f = new _PgTruetypmod(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get information_schema._pg_truetypmod as a field. + */ + public static Field _PgTruetypmod( + PgAttributeRecord __1 + , PgTypeRecord __2 + ) { + _PgTruetypmod f = new _PgTruetypmod(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get information_schema._pg_truetypmod as a field. + */ + public static Field _PgTruetypmod( + Field __1 + , Field __2 + ) { + _PgTruetypmod f = new _PgTruetypmod(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call information_schema._pg_expandarray. + */ + public static Result<_PgExpandarrayRecord> _PgExpandarray( + Configuration configuration + , Object[] __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + )).fetch(); + } + + /** + * Get information_schema._pg_expandarray as a table. + */ + public static _PgExpandarray _PgExpandarray( + Object[] __1 + ) { + return ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + ); + } + + /** + * Get information_schema._pg_expandarray as a table. + */ + public static _PgExpandarray _PgExpandarray( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + ); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Tables.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Tables.java new file mode 100644 index 0000000..3488643 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/Tables.java @@ -0,0 +1,433 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.AdministrableRoleAuthorizations; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ApplicableRoles; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Attributes; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CharacterSets; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CheckConstraintRoutineUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CheckConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CollationCharacterSetApplicability; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Collations; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnDomainUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnPrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnUdtUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Columns; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ConstraintColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ConstraintTableUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DataTypePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DomainConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DomainUdtUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ElementTypes; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.EnabledRoles; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignDataWrapperOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignDataWrappers; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignServerOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignServers; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignTableOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignTables; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.InformationSchemaCatalogName; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.KeyColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Parameters; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ReferentialConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleColumnGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleRoutineGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleTableGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleUdtGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleUsageGrants; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutinePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineRoutineUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineSequenceUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineTableUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Routines; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Schemata; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Sequences; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlFeatures; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlImplementationInfo; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlSizing; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TableConstraints; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TablePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TriggeredUpdateColumns; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Triggers; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UdtPrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UsagePrivileges; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserDefinedTypes; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserMappingOptions; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserMappings; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewColumnUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewRoutineUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewTableUsage; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Views; +import ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records._PgExpandarrayRecord; + +import org.jooq.Configuration; +import org.jooq.Field; +import org.jooq.Result; + + +/** + * Convenience access to all tables in information_schema. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Tables { + + /** + * The table information_schema._pg_expandarray. + */ + public static final _PgExpandarray _PG_EXPANDARRAY = _PgExpandarray._PG_EXPANDARRAY; + + /** + * Call information_schema._pg_expandarray. + */ + public static Result<_PgExpandarrayRecord> _PG_EXPANDARRAY( + Configuration configuration + , Object[] __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + )).fetch(); + } + + /** + * Get information_schema._pg_expandarray as a table. + */ + public static _PgExpandarray _PG_EXPANDARRAY( + Object[] __1 + ) { + return ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + ); + } + + /** + * Get information_schema._pg_expandarray as a table. + */ + public static _PgExpandarray _PG_EXPANDARRAY( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray._PG_EXPANDARRAY.call( + __1 + ); + } + + /** + * The table + * information_schema.administrable_role_authorizations. + */ + public static final AdministrableRoleAuthorizations ADMINISTRABLE_ROLE_AUTHORIZATIONS = AdministrableRoleAuthorizations.ADMINISTRABLE_ROLE_AUTHORIZATIONS; + + /** + * The table information_schema.applicable_roles. + */ + public static final ApplicableRoles APPLICABLE_ROLES = ApplicableRoles.APPLICABLE_ROLES; + + /** + * The table information_schema.attributes. + */ + public static final Attributes ATTRIBUTES = Attributes.ATTRIBUTES; + + /** + * The table information_schema.character_sets. + */ + public static final CharacterSets CHARACTER_SETS = CharacterSets.CHARACTER_SETS; + + /** + * The table information_schema.check_constraint_routine_usage. + */ + public static final CheckConstraintRoutineUsage CHECK_CONSTRAINT_ROUTINE_USAGE = CheckConstraintRoutineUsage.CHECK_CONSTRAINT_ROUTINE_USAGE; + + /** + * The table information_schema.check_constraints. + */ + public static final CheckConstraints CHECK_CONSTRAINTS = CheckConstraints.CHECK_CONSTRAINTS; + + /** + * The table + * information_schema.collation_character_set_applicability. + */ + public static final CollationCharacterSetApplicability COLLATION_CHARACTER_SET_APPLICABILITY = CollationCharacterSetApplicability.COLLATION_CHARACTER_SET_APPLICABILITY; + + /** + * The table information_schema.collations. + */ + public static final Collations COLLATIONS = Collations.COLLATIONS; + + /** + * The table information_schema.column_column_usage. + */ + public static final ColumnColumnUsage COLUMN_COLUMN_USAGE = ColumnColumnUsage.COLUMN_COLUMN_USAGE; + + /** + * The table information_schema.column_domain_usage. + */ + public static final ColumnDomainUsage COLUMN_DOMAIN_USAGE = ColumnDomainUsage.COLUMN_DOMAIN_USAGE; + + /** + * The table information_schema.column_options. + */ + public static final ColumnOptions COLUMN_OPTIONS = ColumnOptions.COLUMN_OPTIONS; + + /** + * The table information_schema.column_privileges. + */ + public static final ColumnPrivileges COLUMN_PRIVILEGES = ColumnPrivileges.COLUMN_PRIVILEGES; + + /** + * The table information_schema.column_udt_usage. + */ + public static final ColumnUdtUsage COLUMN_UDT_USAGE = ColumnUdtUsage.COLUMN_UDT_USAGE; + + /** + * The table information_schema.columns. + */ + public static final Columns COLUMNS = Columns.COLUMNS; + + /** + * The table information_schema.constraint_column_usage. + */ + public static final ConstraintColumnUsage CONSTRAINT_COLUMN_USAGE = ConstraintColumnUsage.CONSTRAINT_COLUMN_USAGE; + + /** + * The table information_schema.constraint_table_usage. + */ + public static final ConstraintTableUsage CONSTRAINT_TABLE_USAGE = ConstraintTableUsage.CONSTRAINT_TABLE_USAGE; + + /** + * The table information_schema.data_type_privileges. + */ + public static final DataTypePrivileges DATA_TYPE_PRIVILEGES = DataTypePrivileges.DATA_TYPE_PRIVILEGES; + + /** + * The table information_schema.domain_constraints. + */ + public static final DomainConstraints DOMAIN_CONSTRAINTS = DomainConstraints.DOMAIN_CONSTRAINTS; + + /** + * The table information_schema.domain_udt_usage. + */ + public static final DomainUdtUsage DOMAIN_UDT_USAGE = DomainUdtUsage.DOMAIN_UDT_USAGE; + + /** + * The table information_schema.domains. + */ + public static final Domains DOMAINS = Domains.DOMAINS; + + /** + * The table information_schema.element_types. + */ + public static final ElementTypes ELEMENT_TYPES = ElementTypes.ELEMENT_TYPES; + + /** + * The table information_schema.enabled_roles. + */ + public static final EnabledRoles ENABLED_ROLES = EnabledRoles.ENABLED_ROLES; + + /** + * The table information_schema.foreign_data_wrapper_options. + */ + public static final ForeignDataWrapperOptions FOREIGN_DATA_WRAPPER_OPTIONS = ForeignDataWrapperOptions.FOREIGN_DATA_WRAPPER_OPTIONS; + + /** + * The table information_schema.foreign_data_wrappers. + */ + public static final ForeignDataWrappers FOREIGN_DATA_WRAPPERS = ForeignDataWrappers.FOREIGN_DATA_WRAPPERS; + + /** + * The table information_schema.foreign_server_options. + */ + public static final ForeignServerOptions FOREIGN_SERVER_OPTIONS = ForeignServerOptions.FOREIGN_SERVER_OPTIONS; + + /** + * The table information_schema.foreign_servers. + */ + public static final ForeignServers FOREIGN_SERVERS = ForeignServers.FOREIGN_SERVERS; + + /** + * The table information_schema.foreign_table_options. + */ + public static final ForeignTableOptions FOREIGN_TABLE_OPTIONS = ForeignTableOptions.FOREIGN_TABLE_OPTIONS; + + /** + * The table information_schema.foreign_tables. + */ + public static final ForeignTables FOREIGN_TABLES = ForeignTables.FOREIGN_TABLES; + + /** + * The table + * information_schema.information_schema_catalog_name. + */ + public static final InformationSchemaCatalogName INFORMATION_SCHEMA_CATALOG_NAME = InformationSchemaCatalogName.INFORMATION_SCHEMA_CATALOG_NAME; + + /** + * The table information_schema.key_column_usage. + */ + public static final KeyColumnUsage KEY_COLUMN_USAGE = KeyColumnUsage.KEY_COLUMN_USAGE; + + /** + * The table information_schema.parameters. + */ + public static final Parameters PARAMETERS = Parameters.PARAMETERS; + + /** + * The table information_schema.referential_constraints. + */ + public static final ReferentialConstraints REFERENTIAL_CONSTRAINTS = ReferentialConstraints.REFERENTIAL_CONSTRAINTS; + + /** + * The table information_schema.role_column_grants. + */ + public static final RoleColumnGrants ROLE_COLUMN_GRANTS = RoleColumnGrants.ROLE_COLUMN_GRANTS; + + /** + * The table information_schema.role_routine_grants. + */ + public static final RoleRoutineGrants ROLE_ROUTINE_GRANTS = RoleRoutineGrants.ROLE_ROUTINE_GRANTS; + + /** + * The table information_schema.role_table_grants. + */ + public static final RoleTableGrants ROLE_TABLE_GRANTS = RoleTableGrants.ROLE_TABLE_GRANTS; + + /** + * The table information_schema.role_udt_grants. + */ + public static final RoleUdtGrants ROLE_UDT_GRANTS = RoleUdtGrants.ROLE_UDT_GRANTS; + + /** + * The table information_schema.role_usage_grants. + */ + public static final RoleUsageGrants ROLE_USAGE_GRANTS = RoleUsageGrants.ROLE_USAGE_GRANTS; + + /** + * The table information_schema.routine_column_usage. + */ + public static final RoutineColumnUsage ROUTINE_COLUMN_USAGE = RoutineColumnUsage.ROUTINE_COLUMN_USAGE; + + /** + * The table information_schema.routine_privileges. + */ + public static final RoutinePrivileges ROUTINE_PRIVILEGES = RoutinePrivileges.ROUTINE_PRIVILEGES; + + /** + * The table information_schema.routine_routine_usage. + */ + public static final RoutineRoutineUsage ROUTINE_ROUTINE_USAGE = RoutineRoutineUsage.ROUTINE_ROUTINE_USAGE; + + /** + * The table information_schema.routine_sequence_usage. + */ + public static final RoutineSequenceUsage ROUTINE_SEQUENCE_USAGE = RoutineSequenceUsage.ROUTINE_SEQUENCE_USAGE; + + /** + * The table information_schema.routine_table_usage. + */ + public static final RoutineTableUsage ROUTINE_TABLE_USAGE = RoutineTableUsage.ROUTINE_TABLE_USAGE; + + /** + * The table information_schema.routines. + */ + public static final Routines ROUTINES = Routines.ROUTINES; + + /** + * The table information_schema.schemata. + */ + public static final Schemata SCHEMATA = Schemata.SCHEMATA; + + /** + * The table information_schema.sequences. + */ + public static final Sequences SEQUENCES = Sequences.SEQUENCES; + + /** + * The table information_schema.sql_features. + */ + public static final SqlFeatures SQL_FEATURES = SqlFeatures.SQL_FEATURES; + + /** + * The table information_schema.sql_implementation_info. + */ + public static final SqlImplementationInfo SQL_IMPLEMENTATION_INFO = SqlImplementationInfo.SQL_IMPLEMENTATION_INFO; + + /** + * The table information_schema.sql_sizing. + */ + public static final SqlSizing SQL_SIZING = SqlSizing.SQL_SIZING; + + /** + * The table information_schema.table_constraints. + */ + public static final TableConstraints TABLE_CONSTRAINTS = TableConstraints.TABLE_CONSTRAINTS; + + /** + * The table information_schema.table_privileges. + */ + public static final TablePrivileges TABLE_PRIVILEGES = TablePrivileges.TABLE_PRIVILEGES; + + /** + * The table information_schema.tables. + */ + public static final ervu_secret.ervu_secret.db_beans.information_schema.tables.Tables TABLES = ervu_secret.ervu_secret.db_beans.information_schema.tables.Tables.TABLES; + + /** + * The table information_schema.triggered_update_columns. + */ + public static final TriggeredUpdateColumns TRIGGERED_UPDATE_COLUMNS = TriggeredUpdateColumns.TRIGGERED_UPDATE_COLUMNS; + + /** + * The table information_schema.triggers. + */ + public static final Triggers TRIGGERS = Triggers.TRIGGERS; + + /** + * The table information_schema.udt_privileges. + */ + public static final UdtPrivileges UDT_PRIVILEGES = UdtPrivileges.UDT_PRIVILEGES; + + /** + * The table information_schema.usage_privileges. + */ + public static final UsagePrivileges USAGE_PRIVILEGES = UsagePrivileges.USAGE_PRIVILEGES; + + /** + * The table information_schema.user_defined_types. + */ + public static final UserDefinedTypes USER_DEFINED_TYPES = UserDefinedTypes.USER_DEFINED_TYPES; + + /** + * The table information_schema.user_mapping_options. + */ + public static final UserMappingOptions USER_MAPPING_OPTIONS = UserMappingOptions.USER_MAPPING_OPTIONS; + + /** + * The table information_schema.user_mappings. + */ + public static final UserMappings USER_MAPPINGS = UserMappings.USER_MAPPINGS; + + /** + * The table information_schema.view_column_usage. + */ + public static final ViewColumnUsage VIEW_COLUMN_USAGE = ViewColumnUsage.VIEW_COLUMN_USAGE; + + /** + * The table information_schema.view_routine_usage. + */ + public static final ViewRoutineUsage VIEW_ROUTINE_USAGE = ViewRoutineUsage.VIEW_ROUTINE_USAGE; + + /** + * The table information_schema.view_table_usage. + */ + public static final ViewTableUsage VIEW_TABLE_USAGE = ViewTableUsage.VIEW_TABLE_USAGE; + + /** + * The table information_schema.views. + */ + public static final Views VIEWS = Views.VIEWS; +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharMaxLength.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharMaxLength.java new file mode 100644 index 0000000..9eebaca --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharMaxLength.java @@ -0,0 +1,80 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgCharMaxLength extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_char_max_length.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter information_schema._pg_char_max_length.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter information_schema._pg_char_max_length.typmod. + */ + public static final Parameter TYPMOD = Internal.createParameter("typmod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgCharMaxLength() { + super("_pg_char_max_length", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(TYPMOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the typmod parameter IN value to the routine + */ + public void setTypmod(Integer value) { + setValue(TYPMOD, value); + } + + /** + * Set the typmod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypmod(Field field) { + setField(TYPMOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharOctetLength.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharOctetLength.java new file mode 100644 index 0000000..ac98229 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgCharOctetLength.java @@ -0,0 +1,82 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgCharOctetLength extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_char_octet_length.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter + * information_schema._pg_char_octet_length.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter + * information_schema._pg_char_octet_length.typmod. + */ + public static final Parameter TYPMOD = Internal.createParameter("typmod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgCharOctetLength() { + super("_pg_char_octet_length", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(TYPMOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the typmod parameter IN value to the routine + */ + public void setTypmod(Integer value) { + setValue(TYPMOD, value); + } + + /** + * Set the typmod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypmod(Field field) { + setField(TYPMOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgDatetimePrecision.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgDatetimePrecision.java new file mode 100644 index 0000000..122498c --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgDatetimePrecision.java @@ -0,0 +1,82 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgDatetimePrecision extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_datetime_precision.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter + * information_schema._pg_datetime_precision.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter + * information_schema._pg_datetime_precision.typmod. + */ + public static final Parameter TYPMOD = Internal.createParameter("typmod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgDatetimePrecision() { + super("_pg_datetime_precision", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(TYPMOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the typmod parameter IN value to the routine + */ + public void setTypmod(Integer value) { + setValue(TYPMOD, value); + } + + /** + * Set the typmod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypmod(Field field) { + setField(TYPMOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIndexPosition.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIndexPosition.java new file mode 100644 index 0000000..a34a9ee --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIndexPosition.java @@ -0,0 +1,80 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgIndexPosition extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_index_position.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter information_schema._pg_index_position._1. + */ + public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.BIGINT, false, true); + + /** + * The parameter information_schema._pg_index_position._2. + */ + public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.SMALLINT, false, true); + + /** + * Create a new routine call instance + */ + public _PgIndexPosition() { + super("_pg_index_position", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(_1); + addInParameter(_2); + } + + /** + * Set the _1 parameter IN value to the routine + */ + public void set__1(Long value) { + setValue(_1, value); + } + + /** + * Set the _1 parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void set__1(Field field) { + setField(_1, field); + } + + /** + * Set the _2 parameter IN value to the routine + */ + public void set__2(Short value) { + setValue(_2, value); + } + + /** + * Set the _2 parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void set__2(Field field) { + setField(_2, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIntervalType.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIntervalType.java new file mode 100644 index 0000000..48b3871 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgIntervalType.java @@ -0,0 +1,80 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgIntervalType extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_interval_type.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB, false, false); + + /** + * The parameter information_schema._pg_interval_type.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter information_schema._pg_interval_type.mod. + */ + public static final Parameter MOD = Internal.createParameter("mod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgIntervalType() { + super("_pg_interval_type", InformationSchema.INFORMATION_SCHEMA, SQLDataType.CLOB); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(MOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the mod parameter IN value to the routine + */ + public void setMod(Integer value) { + setValue(MOD, value); + } + + /** + * Set the mod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setMod(Field field) { + setField(MOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecision.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecision.java new file mode 100644 index 0000000..348290d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecision.java @@ -0,0 +1,82 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgNumericPrecision extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_numeric_precision.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter + * information_schema._pg_numeric_precision.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter + * information_schema._pg_numeric_precision.typmod. + */ + public static final Parameter TYPMOD = Internal.createParameter("typmod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgNumericPrecision() { + super("_pg_numeric_precision", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(TYPMOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the typmod parameter IN value to the routine + */ + public void setTypmod(Integer value) { + setValue(TYPMOD, value); + } + + /** + * Set the typmod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypmod(Field field) { + setField(TYPMOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecisionRadix.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecisionRadix.java new file mode 100644 index 0000000..ae6c2cf --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericPrecisionRadix.java @@ -0,0 +1,82 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgNumericPrecisionRadix extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_numeric_precision_radix.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter + * information_schema._pg_numeric_precision_radix.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter + * information_schema._pg_numeric_precision_radix.typmod. + */ + public static final Parameter TYPMOD = Internal.createParameter("typmod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgNumericPrecisionRadix() { + super("_pg_numeric_precision_radix", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(TYPMOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the typmod parameter IN value to the routine + */ + public void setTypmod(Integer value) { + setValue(TYPMOD, value); + } + + /** + * Set the typmod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypmod(Field field) { + setField(TYPMOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericScale.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericScale.java new file mode 100644 index 0000000..8b6d57e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgNumericScale.java @@ -0,0 +1,80 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgNumericScale extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_numeric_scale.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter information_schema._pg_numeric_scale.typid. + */ + public static final Parameter TYPID = Internal.createParameter("typid", SQLDataType.BIGINT, false, false); + + /** + * The parameter information_schema._pg_numeric_scale.typmod. + */ + public static final Parameter TYPMOD = Internal.createParameter("typmod", SQLDataType.INTEGER, false, false); + + /** + * Create a new routine call instance + */ + public _PgNumericScale() { + super("_pg_numeric_scale", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(TYPID); + addInParameter(TYPMOD); + } + + /** + * Set the typid parameter IN value to the routine + */ + public void setTypid(Long value) { + setValue(TYPID, value); + } + + /** + * Set the typid parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypid(Field field) { + setField(TYPID, field); + } + + /** + * Set the typmod parameter IN value to the routine + */ + public void setTypmod(Integer value) { + setValue(TYPMOD, value); + } + + /** + * Set the typmod parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void setTypmod(Field field) { + setField(TYPMOD, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypid.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypid.java new file mode 100644 index 0000000..41c4392 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypid.java @@ -0,0 +1,83 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAttribute; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAttributeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTypeRecord; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgTruetypid extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter information_schema._pg_truetypid.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.BIGINT, false, false); + + /** + * The parameter information_schema._pg_truetypid._1. + */ + public static final Parameter _1 = Internal.createParameter("_1", PgAttribute.PG_ATTRIBUTE.getDataType(), false, true); + + /** + * The parameter information_schema._pg_truetypid._2. + */ + public static final Parameter _2 = Internal.createParameter("_2", PgType.PG_TYPE.getDataType(), false, true); + + /** + * Create a new routine call instance + */ + public _PgTruetypid() { + super("_pg_truetypid", InformationSchema.INFORMATION_SCHEMA, SQLDataType.BIGINT); + + setReturnParameter(RETURN_VALUE); + addInParameter(_1); + addInParameter(_2); + } + + /** + * Set the _1 parameter IN value to the routine + */ + public void set__1(PgAttributeRecord value) { + setValue(_1, value); + } + + /** + * Set the _1 parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void set__1(Field field) { + setField(_1, field); + } + + /** + * Set the _2 parameter IN value to the routine + */ + public void set__2(PgTypeRecord value) { + setValue(_2, value); + } + + /** + * Set the _2 parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void set__2(Field field) { + setField(_2, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypmod.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypmod.java new file mode 100644 index 0000000..787c5fc --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/routines/_PgTruetypmod.java @@ -0,0 +1,84 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.routines; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAttribute; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAttributeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTypeRecord; + +import org.jooq.Field; +import org.jooq.Parameter; +import org.jooq.impl.AbstractRoutine; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgTruetypmod extends AbstractRoutine { + + private static final long serialVersionUID = 1L; + + /** + * The parameter + * information_schema._pg_truetypmod.RETURN_VALUE. + */ + public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); + + /** + * The parameter information_schema._pg_truetypmod._1. + */ + public static final Parameter _1 = Internal.createParameter("_1", PgAttribute.PG_ATTRIBUTE.getDataType(), false, true); + + /** + * The parameter information_schema._pg_truetypmod._2. + */ + public static final Parameter _2 = Internal.createParameter("_2", PgType.PG_TYPE.getDataType(), false, true); + + /** + * Create a new routine call instance + */ + public _PgTruetypmod() { + super("_pg_truetypmod", InformationSchema.INFORMATION_SCHEMA, SQLDataType.INTEGER); + + setReturnParameter(RETURN_VALUE); + addInParameter(_1); + addInParameter(_2); + } + + /** + * Set the _1 parameter IN value to the routine + */ + public void set__1(PgAttributeRecord value) { + setValue(_1, value); + } + + /** + * Set the _1 parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void set__1(Field field) { + setField(_1, field); + } + + /** + * Set the _2 parameter IN value to the routine + */ + public void set__2(PgTypeRecord value) { + setValue(_2, value); + } + + /** + * Set the _2 parameter to the function to be used with a + * {@link org.jooq.Select} statement + */ + public void set__2(Field field) { + setField(_2, field); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/AdministrableRoleAuthorizations.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/AdministrableRoleAuthorizations.java new file mode 100644 index 0000000..5a5e4bb --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/AdministrableRoleAuthorizations.java @@ -0,0 +1,237 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.AdministrableRoleAuthorizationsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class AdministrableRoleAuthorizations extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.administrable_role_authorizations + */ + public static final AdministrableRoleAuthorizations ADMINISTRABLE_ROLE_AUTHORIZATIONS = new AdministrableRoleAuthorizations(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return AdministrableRoleAuthorizationsRecord.class; + } + + /** + * The column + * information_schema.administrable_role_authorizations.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.administrable_role_authorizations.role_name. + */ + public final TableField ROLE_NAME = createField(DSL.name("role_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.administrable_role_authorizations.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private AdministrableRoleAuthorizations(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private AdministrableRoleAuthorizations(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "administrable_role_authorizations" as SELECT applicable_roles.grantee, + applicable_roles.role_name, + applicable_roles.is_grantable + FROM information_schema.applicable_roles + WHERE ((applicable_roles.is_grantable)::text = 'YES'::text); + """), where); + } + + /** + * Create an aliased + * information_schema.administrable_role_authorizations table + * reference + */ + public AdministrableRoleAuthorizations(String alias) { + this(DSL.name(alias), ADMINISTRABLE_ROLE_AUTHORIZATIONS); + } + + /** + * Create an aliased + * information_schema.administrable_role_authorizations table + * reference + */ + public AdministrableRoleAuthorizations(Name alias) { + this(alias, ADMINISTRABLE_ROLE_AUTHORIZATIONS); + } + + /** + * Create a + * information_schema.administrable_role_authorizations table + * reference + */ + public AdministrableRoleAuthorizations() { + this(DSL.name("administrable_role_authorizations"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public AdministrableRoleAuthorizations as(String alias) { + return new AdministrableRoleAuthorizations(DSL.name(alias), this); + } + + @Override + public AdministrableRoleAuthorizations as(Name alias) { + return new AdministrableRoleAuthorizations(alias, this); + } + + @Override + public AdministrableRoleAuthorizations as(Table alias) { + return new AdministrableRoleAuthorizations(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public AdministrableRoleAuthorizations rename(String name) { + return new AdministrableRoleAuthorizations(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public AdministrableRoleAuthorizations rename(Name name) { + return new AdministrableRoleAuthorizations(name, null); + } + + /** + * Rename this table + */ + @Override + public AdministrableRoleAuthorizations rename(Table name) { + return new AdministrableRoleAuthorizations(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public AdministrableRoleAuthorizations where(Condition condition) { + return new AdministrableRoleAuthorizations(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public AdministrableRoleAuthorizations where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public AdministrableRoleAuthorizations where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public AdministrableRoleAuthorizations where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public AdministrableRoleAuthorizations where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public AdministrableRoleAuthorizations where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public AdministrableRoleAuthorizations where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public AdministrableRoleAuthorizations where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public AdministrableRoleAuthorizations whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public AdministrableRoleAuthorizations whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ApplicableRoles.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ApplicableRoles.java new file mode 100644 index 0000000..d7b74c3 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ApplicableRoles.java @@ -0,0 +1,246 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ApplicableRolesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ApplicableRoles extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.applicable_roles + */ + public static final ApplicableRoles APPLICABLE_ROLES = new ApplicableRoles(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ApplicableRolesRecord.class; + } + + /** + * The column information_schema.applicable_roles.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.applicable_roles.role_name. + */ + public final TableField ROLE_NAME = createField(DSL.name("role_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.applicable_roles.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private ApplicableRoles(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ApplicableRoles(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "applicable_roles" as SELECT (a.rolname)::information_schema.sql_identifier AS grantee, + (b.rolname)::information_schema.sql_identifier AS role_name, + ( + CASE + WHEN m.admin_option THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ((( SELECT pg_auth_members.member, + pg_auth_members.roleid, + pg_auth_members.admin_option + FROM pg_auth_members + UNION + SELECT pg_database.datdba, + pg_authid.oid, + false + FROM pg_database, + pg_authid + WHERE ((pg_database.datname = current_database()) AND (pg_authid.rolname = 'pg_database_owner'::name))) m + JOIN pg_authid a ON ((m.member = a.oid))) + JOIN pg_authid b ON ((m.roleid = b.oid))) + WHERE pg_has_role(a.oid, 'USAGE'::text); + """), where); + } + + /** + * Create an aliased information_schema.applicable_roles table + * reference + */ + public ApplicableRoles(String alias) { + this(DSL.name(alias), APPLICABLE_ROLES); + } + + /** + * Create an aliased information_schema.applicable_roles table + * reference + */ + public ApplicableRoles(Name alias) { + this(alias, APPLICABLE_ROLES); + } + + /** + * Create a information_schema.applicable_roles table reference + */ + public ApplicableRoles() { + this(DSL.name("applicable_roles"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ApplicableRoles as(String alias) { + return new ApplicableRoles(DSL.name(alias), this); + } + + @Override + public ApplicableRoles as(Name alias) { + return new ApplicableRoles(alias, this); + } + + @Override + public ApplicableRoles as(Table alias) { + return new ApplicableRoles(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ApplicableRoles rename(String name) { + return new ApplicableRoles(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ApplicableRoles rename(Name name) { + return new ApplicableRoles(name, null); + } + + /** + * Rename this table + */ + @Override + public ApplicableRoles rename(Table name) { + return new ApplicableRoles(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicableRoles where(Condition condition) { + return new ApplicableRoles(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicableRoles where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicableRoles where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicableRoles where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicableRoles where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicableRoles where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicableRoles where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicableRoles where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicableRoles whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicableRoles whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Attributes.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Attributes.java new file mode 100644 index 0000000..fd4c17e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Attributes.java @@ -0,0 +1,426 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.AttributesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Attributes extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.attributes + */ + public static final Attributes ATTRIBUTES = new Attributes(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return AttributesRecord.class; + } + + /** + * The column information_schema.attributes.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.attribute_name. + */ + public final TableField ATTRIBUTE_NAME = createField(DSL.name("attribute_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.ordinal_position. + */ + public final TableField ORDINAL_POSITION = createField(DSL.name("ordinal_position"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.attribute_default. + */ + public final TableField ATTRIBUTE_DEFAULT = createField(DSL.name("attribute_default"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.attributes.is_nullable. + */ + public final TableField IS_NULLABLE = createField(DSL.name("is_nullable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.attributes.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.attributes.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.attribute_udt_catalog. + */ + public final TableField ATTRIBUTE_UDT_CATALOG = createField(DSL.name("attribute_udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.attribute_udt_schema. + */ + public final TableField ATTRIBUTE_UDT_SCHEMA = createField(DSL.name("attribute_udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.attribute_udt_name. + */ + public final TableField ATTRIBUTE_UDT_NAME = createField(DSL.name("attribute_udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.scope_catalog. + */ + public final TableField SCOPE_CATALOG = createField(DSL.name("scope_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.scope_schema. + */ + public final TableField SCOPE_SCHEMA = createField(DSL.name("scope_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.scope_name. + */ + public final TableField SCOPE_NAME = createField(DSL.name("scope_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.maximum_cardinality. + */ + public final TableField MAXIMUM_CARDINALITY = createField(DSL.name("maximum_cardinality"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.attributes.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.attributes.is_derived_reference_attribute. + */ + public final TableField IS_DERIVED_REFERENCE_ATTRIBUTE = createField(DSL.name("is_derived_reference_attribute"), Domains.YES_OR_NO.getDataType(), this, ""); + + private Attributes(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Attributes(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "attributes" as SELECT (current_database())::information_schema.sql_identifier AS udt_catalog, + (nc.nspname)::information_schema.sql_identifier AS udt_schema, + (c.relname)::information_schema.sql_identifier AS udt_name, + (a.attname)::information_schema.sql_identifier AS attribute_name, + (a.attnum)::information_schema.cardinal_number AS ordinal_position, + (pg_get_expr(ad.adbin, ad.adrelid))::information_schema.character_data AS attribute_default, + ( + CASE + WHEN (a.attnotnull OR ((t.typtype = 'd'::"char") AND t.typnotnull)) THEN 'NO'::text + ELSE 'YES'::text + END)::information_schema.yes_or_no AS is_nullable, + ( + CASE + WHEN ((t.typelem <> (0)::oid) AND (t.typlen = '-1'::integer)) THEN 'ARRAY'::text + WHEN (nt.nspname = 'pg_catalog'::name) THEN format_type(a.atttypid, NULL::integer) + ELSE 'USER-DEFINED'::text + END)::information_schema.character_data AS data_type, + (information_schema._pg_char_max_length(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS character_maximum_length, + (information_schema._pg_char_octet_length(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS character_octet_length, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + ( + CASE + WHEN (nco.nspname IS NOT NULL) THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS collation_catalog, + (nco.nspname)::information_schema.sql_identifier AS collation_schema, + (co.collname)::information_schema.sql_identifier AS collation_name, + (information_schema._pg_numeric_precision(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS numeric_precision, + (information_schema._pg_numeric_precision_radix(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS numeric_precision_radix, + (information_schema._pg_numeric_scale(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS numeric_scale, + (information_schema._pg_datetime_precision(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS datetime_precision, + (information_schema._pg_interval_type(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + (current_database())::information_schema.sql_identifier AS attribute_udt_catalog, + (nt.nspname)::information_schema.sql_identifier AS attribute_udt_schema, + (t.typname)::information_schema.sql_identifier AS attribute_udt_name, + (NULL::name)::information_schema.sql_identifier AS scope_catalog, + (NULL::name)::information_schema.sql_identifier AS scope_schema, + (NULL::name)::information_schema.sql_identifier AS scope_name, + (NULL::integer)::information_schema.cardinal_number AS maximum_cardinality, + (a.attnum)::information_schema.sql_identifier AS dtd_identifier, + ('NO'::character varying)::information_schema.yes_or_no AS is_derived_reference_attribute + FROM ((((pg_attribute a + LEFT JOIN pg_attrdef ad ON (((a.attrelid = ad.adrelid) AND (a.attnum = ad.adnum)))) + JOIN (pg_class c + JOIN pg_namespace nc ON ((c.relnamespace = nc.oid))) ON ((a.attrelid = c.oid))) + JOIN (pg_type t + JOIN pg_namespace nt ON ((t.typnamespace = nt.oid))) ON ((a.atttypid = t.oid))) + LEFT JOIN (pg_collation co + JOIN pg_namespace nco ON ((co.collnamespace = nco.oid))) ON (((a.attcollation = co.oid) AND ((nco.nspname <> 'pg_catalog'::name) OR (co.collname <> 'default'::name))))) + WHERE ((a.attnum > 0) AND (NOT a.attisdropped) AND (c.relkind = 'c'::"char") AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_type_privilege(c.reltype, 'USAGE'::text))); + """), where); + } + + /** + * Create an aliased information_schema.attributes table + * reference + */ + public Attributes(String alias) { + this(DSL.name(alias), ATTRIBUTES); + } + + /** + * Create an aliased information_schema.attributes table + * reference + */ + public Attributes(Name alias) { + this(alias, ATTRIBUTES); + } + + /** + * Create a information_schema.attributes table reference + */ + public Attributes() { + this(DSL.name("attributes"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Attributes as(String alias) { + return new Attributes(DSL.name(alias), this); + } + + @Override + public Attributes as(Name alias) { + return new Attributes(alias, this); + } + + @Override + public Attributes as(Table alias) { + return new Attributes(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Attributes rename(String name) { + return new Attributes(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Attributes rename(Name name) { + return new Attributes(name, null); + } + + /** + * Rename this table + */ + @Override + public Attributes rename(Table name) { + return new Attributes(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Attributes where(Condition condition) { + return new Attributes(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Attributes where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Attributes where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Attributes where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Attributes where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Attributes where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Attributes where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Attributes where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Attributes whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Attributes whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CharacterSets.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CharacterSets.java new file mode 100644 index 0000000..25b278e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CharacterSets.java @@ -0,0 +1,274 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.CharacterSetsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CharacterSets extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.character_sets + */ + public static final CharacterSets CHARACTER_SETS = new CharacterSets(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return CharacterSetsRecord.class; + } + + /** + * The column + * information_schema.character_sets.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.character_sets.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.character_sets.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.character_sets.character_repertoire. + */ + public final TableField CHARACTER_REPERTOIRE = createField(DSL.name("character_repertoire"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.character_sets.form_of_use. + */ + public final TableField FORM_OF_USE = createField(DSL.name("form_of_use"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.character_sets.default_collate_catalog. + */ + public final TableField DEFAULT_COLLATE_CATALOG = createField(DSL.name("default_collate_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.character_sets.default_collate_schema. + */ + public final TableField DEFAULT_COLLATE_SCHEMA = createField(DSL.name("default_collate_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.character_sets.default_collate_name. + */ + public final TableField DEFAULT_COLLATE_NAME = createField(DSL.name("default_collate_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private CharacterSets(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private CharacterSets(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "character_sets" as SELECT (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (getdatabaseencoding())::information_schema.sql_identifier AS character_set_name, + ( + CASE + WHEN (getdatabaseencoding() = 'UTF8'::name) THEN 'UCS'::name + ELSE getdatabaseencoding() + END)::information_schema.sql_identifier AS character_repertoire, + (getdatabaseencoding())::information_schema.sql_identifier AS form_of_use, + (current_database())::information_schema.sql_identifier AS default_collate_catalog, + (nc.nspname)::information_schema.sql_identifier AS default_collate_schema, + (c.collname)::information_schema.sql_identifier AS default_collate_name + FROM (pg_database d + LEFT JOIN (pg_collation c + JOIN pg_namespace nc ON ((c.collnamespace = nc.oid))) ON (((d.datcollate = c.collcollate) AND (d.datctype = c.collctype)))) + WHERE (d.datname = current_database()) + ORDER BY (char_length((c.collname)::text)) DESC, c.collname + LIMIT 1; + """), where); + } + + /** + * Create an aliased information_schema.character_sets table + * reference + */ + public CharacterSets(String alias) { + this(DSL.name(alias), CHARACTER_SETS); + } + + /** + * Create an aliased information_schema.character_sets table + * reference + */ + public CharacterSets(Name alias) { + this(alias, CHARACTER_SETS); + } + + /** + * Create a information_schema.character_sets table reference + */ + public CharacterSets() { + this(DSL.name("character_sets"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public CharacterSets as(String alias) { + return new CharacterSets(DSL.name(alias), this); + } + + @Override + public CharacterSets as(Name alias) { + return new CharacterSets(alias, this); + } + + @Override + public CharacterSets as(Table alias) { + return new CharacterSets(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public CharacterSets rename(String name) { + return new CharacterSets(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public CharacterSets rename(Name name) { + return new CharacterSets(name, null); + } + + /** + * Rename this table + */ + @Override + public CharacterSets rename(Table name) { + return new CharacterSets(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CharacterSets where(Condition condition) { + return new CharacterSets(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CharacterSets where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CharacterSets where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CharacterSets where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CharacterSets where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CharacterSets where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CharacterSets where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CharacterSets where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CharacterSets whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CharacterSets whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraintRoutineUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraintRoutineUsage.java new file mode 100644 index 0000000..6cfaf74 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraintRoutineUsage.java @@ -0,0 +1,261 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.CheckConstraintRoutineUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CheckConstraintRoutineUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.check_constraint_routine_usage + */ + public static final CheckConstraintRoutineUsage CHECK_CONSTRAINT_ROUTINE_USAGE = new CheckConstraintRoutineUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return CheckConstraintRoutineUsageRecord.class; + } + + /** + * The column + * information_schema.check_constraint_routine_usage.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraint_routine_usage.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraint_routine_usage.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraint_routine_usage.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraint_routine_usage.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraint_routine_usage.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private CheckConstraintRoutineUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private CheckConstraintRoutineUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "check_constraint_routine_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (nc.nspname)::information_schema.sql_identifier AS constraint_schema, + (c.conname)::information_schema.sql_identifier AS constraint_name, + (current_database())::information_schema.sql_identifier AS specific_catalog, + (np.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name + FROM pg_namespace nc, + pg_constraint c, + pg_depend d, + pg_proc p, + pg_namespace np + WHERE ((nc.oid = c.connamespace) AND (c.contype = 'c'::"char") AND (c.oid = d.objid) AND (d.classid = ('pg_constraint'::regclass)::oid) AND (d.refobjid = p.oid) AND (d.refclassid = ('pg_proc'::regclass)::oid) AND (p.pronamespace = np.oid) AND pg_has_role(p.proowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased + * information_schema.check_constraint_routine_usage table + * reference + */ + public CheckConstraintRoutineUsage(String alias) { + this(DSL.name(alias), CHECK_CONSTRAINT_ROUTINE_USAGE); + } + + /** + * Create an aliased + * information_schema.check_constraint_routine_usage table + * reference + */ + public CheckConstraintRoutineUsage(Name alias) { + this(alias, CHECK_CONSTRAINT_ROUTINE_USAGE); + } + + /** + * Create a information_schema.check_constraint_routine_usage + * table reference + */ + public CheckConstraintRoutineUsage() { + this(DSL.name("check_constraint_routine_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public CheckConstraintRoutineUsage as(String alias) { + return new CheckConstraintRoutineUsage(DSL.name(alias), this); + } + + @Override + public CheckConstraintRoutineUsage as(Name alias) { + return new CheckConstraintRoutineUsage(alias, this); + } + + @Override + public CheckConstraintRoutineUsage as(Table alias) { + return new CheckConstraintRoutineUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public CheckConstraintRoutineUsage rename(String name) { + return new CheckConstraintRoutineUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public CheckConstraintRoutineUsage rename(Name name) { + return new CheckConstraintRoutineUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public CheckConstraintRoutineUsage rename(Table name) { + return new CheckConstraintRoutineUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraintRoutineUsage where(Condition condition) { + return new CheckConstraintRoutineUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraintRoutineUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraintRoutineUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraintRoutineUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraintRoutineUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraintRoutineUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraintRoutineUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraintRoutineUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraintRoutineUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraintRoutineUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraints.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraints.java new file mode 100644 index 0000000..29a66b3 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CheckConstraints.java @@ -0,0 +1,253 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.CheckConstraintsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CheckConstraints extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.check_constraints + */ + public static final CheckConstraints CHECK_CONSTRAINTS = new CheckConstraints(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return CheckConstraintsRecord.class; + } + + /** + * The column + * information_schema.check_constraints.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraints.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraints.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.check_constraints.check_clause. + */ + public final TableField CHECK_CLAUSE = createField(DSL.name("check_clause"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private CheckConstraints(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private CheckConstraints(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "check_constraints" as SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (rs.nspname)::information_schema.sql_identifier AS constraint_schema, + (con.conname)::information_schema.sql_identifier AS constraint_name, + (SUBSTRING(pg_get_constraintdef(con.oid) FROM 7))::information_schema.character_data AS check_clause + FROM (((pg_constraint con + LEFT JOIN pg_namespace rs ON ((rs.oid = con.connamespace))) + LEFT JOIN pg_class c ON ((c.oid = con.conrelid))) + LEFT JOIN pg_type t ON ((t.oid = con.contypid))) + WHERE (pg_has_role(COALESCE(c.relowner, t.typowner), 'USAGE'::text) AND (con.contype = 'c'::"char")) + UNION + SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (n.nspname)::information_schema.sql_identifier AS constraint_schema, + (((((((n.oid)::text || '_'::text) || (r.oid)::text) || '_'::text) || (a.attnum)::text) || '_not_null'::text))::information_schema.sql_identifier AS constraint_name, + (((a.attname)::text || ' IS NOT NULL'::text))::information_schema.character_data AS check_clause + FROM pg_namespace n, + pg_class r, + pg_attribute a + WHERE ((n.oid = r.relnamespace) AND (r.oid = a.attrelid) AND (a.attnum > 0) AND (NOT a.attisdropped) AND a.attnotnull AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) AND pg_has_role(r.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.check_constraints table + * reference + */ + public CheckConstraints(String alias) { + this(DSL.name(alias), CHECK_CONSTRAINTS); + } + + /** + * Create an aliased information_schema.check_constraints table + * reference + */ + public CheckConstraints(Name alias) { + this(alias, CHECK_CONSTRAINTS); + } + + /** + * Create a information_schema.check_constraints table + * reference + */ + public CheckConstraints() { + this(DSL.name("check_constraints"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public CheckConstraints as(String alias) { + return new CheckConstraints(DSL.name(alias), this); + } + + @Override + public CheckConstraints as(Name alias) { + return new CheckConstraints(alias, this); + } + + @Override + public CheckConstraints as(Table alias) { + return new CheckConstraints(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public CheckConstraints rename(String name) { + return new CheckConstraints(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public CheckConstraints rename(Name name) { + return new CheckConstraints(name, null); + } + + /** + * Rename this table + */ + @Override + public CheckConstraints rename(Table name) { + return new CheckConstraints(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraints where(Condition condition) { + return new CheckConstraints(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraints where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraints where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraints where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraints where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraints where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraints where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CheckConstraints where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraints whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CheckConstraints whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CollationCharacterSetApplicability.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CollationCharacterSetApplicability.java new file mode 100644 index 0000000..7cf64cd --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/CollationCharacterSetApplicability.java @@ -0,0 +1,261 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.CollationCharacterSetApplicabilityRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CollationCharacterSetApplicability extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.collation_character_set_applicability + */ + public static final CollationCharacterSetApplicability COLLATION_CHARACTER_SET_APPLICABILITY = new CollationCharacterSetApplicability(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return CollationCharacterSetApplicabilityRecord.class; + } + + /** + * The column + * information_schema.collation_character_set_applicability.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.collation_character_set_applicability.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.collation_character_set_applicability.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.collation_character_set_applicability.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.collation_character_set_applicability.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.collation_character_set_applicability.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private CollationCharacterSetApplicability(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private CollationCharacterSetApplicability(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "collation_character_set_applicability" as SELECT (current_database())::information_schema.sql_identifier AS collation_catalog, + (nc.nspname)::information_schema.sql_identifier AS collation_schema, + (c.collname)::information_schema.sql_identifier AS collation_name, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (getdatabaseencoding())::information_schema.sql_identifier AS character_set_name + FROM pg_collation c, + pg_namespace nc + WHERE ((c.collnamespace = nc.oid) AND (c.collencoding = ANY (ARRAY['-1'::integer, ( SELECT pg_database.encoding + FROM pg_database + WHERE (pg_database.datname = current_database()))]))); + """), where); + } + + /** + * Create an aliased + * information_schema.collation_character_set_applicability + * table reference + */ + public CollationCharacterSetApplicability(String alias) { + this(DSL.name(alias), COLLATION_CHARACTER_SET_APPLICABILITY); + } + + /** + * Create an aliased + * information_schema.collation_character_set_applicability + * table reference + */ + public CollationCharacterSetApplicability(Name alias) { + this(alias, COLLATION_CHARACTER_SET_APPLICABILITY); + } + + /** + * Create a + * information_schema.collation_character_set_applicability + * table reference + */ + public CollationCharacterSetApplicability() { + this(DSL.name("collation_character_set_applicability"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public CollationCharacterSetApplicability as(String alias) { + return new CollationCharacterSetApplicability(DSL.name(alias), this); + } + + @Override + public CollationCharacterSetApplicability as(Name alias) { + return new CollationCharacterSetApplicability(alias, this); + } + + @Override + public CollationCharacterSetApplicability as(Table alias) { + return new CollationCharacterSetApplicability(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public CollationCharacterSetApplicability rename(String name) { + return new CollationCharacterSetApplicability(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public CollationCharacterSetApplicability rename(Name name) { + return new CollationCharacterSetApplicability(name, null); + } + + /** + * Rename this table + */ + @Override + public CollationCharacterSetApplicability rename(Table name) { + return new CollationCharacterSetApplicability(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CollationCharacterSetApplicability where(Condition condition) { + return new CollationCharacterSetApplicability(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CollationCharacterSetApplicability where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CollationCharacterSetApplicability where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CollationCharacterSetApplicability where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CollationCharacterSetApplicability where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CollationCharacterSetApplicability where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CollationCharacterSetApplicability where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CollationCharacterSetApplicability where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CollationCharacterSetApplicability whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CollationCharacterSetApplicability whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Collations.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Collations.java new file mode 100644 index 0000000..2ab34ab --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Collations.java @@ -0,0 +1,238 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.CollationsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Collations extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.collations + */ + public static final Collations COLLATIONS = new Collations(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return CollationsRecord.class; + } + + /** + * The column information_schema.collations.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.collations.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.collations.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.collations.pad_attribute. + */ + public final TableField PAD_ATTRIBUTE = createField(DSL.name("pad_attribute"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private Collations(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Collations(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "collations" as SELECT (current_database())::information_schema.sql_identifier AS collation_catalog, + (nc.nspname)::information_schema.sql_identifier AS collation_schema, + (c.collname)::information_schema.sql_identifier AS collation_name, + ('NO PAD'::character varying)::information_schema.character_data AS pad_attribute + FROM pg_collation c, + pg_namespace nc + WHERE ((c.collnamespace = nc.oid) AND (c.collencoding = ANY (ARRAY['-1'::integer, ( SELECT pg_database.encoding + FROM pg_database + WHERE (pg_database.datname = current_database()))]))); + """), where); + } + + /** + * Create an aliased information_schema.collations table + * reference + */ + public Collations(String alias) { + this(DSL.name(alias), COLLATIONS); + } + + /** + * Create an aliased information_schema.collations table + * reference + */ + public Collations(Name alias) { + this(alias, COLLATIONS); + } + + /** + * Create a information_schema.collations table reference + */ + public Collations() { + this(DSL.name("collations"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Collations as(String alias) { + return new Collations(DSL.name(alias), this); + } + + @Override + public Collations as(Name alias) { + return new Collations(alias, this); + } + + @Override + public Collations as(Table alias) { + return new Collations(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Collations rename(String name) { + return new Collations(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Collations rename(Name name) { + return new Collations(name, null); + } + + /** + * Rename this table + */ + @Override + public Collations rename(Table name) { + return new Collations(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Collations where(Condition condition) { + return new Collations(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Collations where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Collations where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Collations where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Collations where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Collations where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Collations where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Collations where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Collations whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Collations whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnColumnUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnColumnUsage.java new file mode 100644 index 0000000..d5b4161 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnColumnUsage.java @@ -0,0 +1,253 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ColumnColumnUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnColumnUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.column_column_usage + */ + public static final ColumnColumnUsage COLUMN_COLUMN_USAGE = new ColumnColumnUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ColumnColumnUsageRecord.class; + } + + /** + * The column + * information_schema.column_column_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_column_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_column_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_column_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_column_usage.dependent_column. + */ + public final TableField DEPENDENT_COLUMN = createField(DSL.name("dependent_column"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ColumnColumnUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ColumnColumnUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "column_column_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS table_catalog, + (n.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + (ac.attname)::information_schema.sql_identifier AS column_name, + (ad.attname)::information_schema.sql_identifier AS dependent_column + FROM pg_namespace n, + pg_class c, + pg_depend d, + pg_attribute ac, + pg_attribute ad, + pg_attrdef atd + WHERE ((n.oid = c.relnamespace) AND (c.oid = ac.attrelid) AND (c.oid = ad.attrelid) AND (ac.attnum <> ad.attnum) AND (ad.attrelid = atd.adrelid) AND (ad.attnum = atd.adnum) AND (d.classid = ('pg_attrdef'::regclass)::oid) AND (d.refclassid = ('pg_class'::regclass)::oid) AND (d.objid = atd.oid) AND (d.refobjid = ac.attrelid) AND (d.refobjsubid = ac.attnum) AND (ad.attgenerated <> ''::"char") AND pg_has_role(c.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.column_column_usage + * table reference + */ + public ColumnColumnUsage(String alias) { + this(DSL.name(alias), COLUMN_COLUMN_USAGE); + } + + /** + * Create an aliased information_schema.column_column_usage + * table reference + */ + public ColumnColumnUsage(Name alias) { + this(alias, COLUMN_COLUMN_USAGE); + } + + /** + * Create a information_schema.column_column_usage table + * reference + */ + public ColumnColumnUsage() { + this(DSL.name("column_column_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ColumnColumnUsage as(String alias) { + return new ColumnColumnUsage(DSL.name(alias), this); + } + + @Override + public ColumnColumnUsage as(Name alias) { + return new ColumnColumnUsage(alias, this); + } + + @Override + public ColumnColumnUsage as(Table alias) { + return new ColumnColumnUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ColumnColumnUsage rename(String name) { + return new ColumnColumnUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ColumnColumnUsage rename(Name name) { + return new ColumnColumnUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ColumnColumnUsage rename(Table name) { + return new ColumnColumnUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnColumnUsage where(Condition condition) { + return new ColumnColumnUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnColumnUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnColumnUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnColumnUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnColumnUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnColumnUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnColumnUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnColumnUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnColumnUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnColumnUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnDomainUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnDomainUsage.java new file mode 100644 index 0000000..aaee4b1 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnDomainUsage.java @@ -0,0 +1,266 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ColumnDomainUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnDomainUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.column_domain_usage + */ + public static final ColumnDomainUsage COLUMN_DOMAIN_USAGE = new ColumnDomainUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ColumnDomainUsageRecord.class; + } + + /** + * The column + * information_schema.column_domain_usage.domain_catalog. + */ + public final TableField DOMAIN_CATALOG = createField(DSL.name("domain_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_domain_usage.domain_schema. + */ + public final TableField DOMAIN_SCHEMA = createField(DSL.name("domain_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_domain_usage.domain_name. + */ + public final TableField DOMAIN_NAME = createField(DSL.name("domain_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_domain_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_domain_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_domain_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_domain_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ColumnDomainUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ColumnDomainUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "column_domain_usage" as SELECT (current_database())::information_schema.sql_identifier AS domain_catalog, + (nt.nspname)::information_schema.sql_identifier AS domain_schema, + (t.typname)::information_schema.sql_identifier AS domain_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + (a.attname)::information_schema.sql_identifier AS column_name + FROM pg_type t, + pg_namespace nt, + pg_class c, + pg_namespace nc, + pg_attribute a + WHERE ((t.typnamespace = nt.oid) AND (c.relnamespace = nc.oid) AND (a.attrelid = c.oid) AND (a.atttypid = t.oid) AND (t.typtype = 'd'::"char") AND (c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND (a.attnum > 0) AND (NOT a.attisdropped) AND pg_has_role(t.typowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.column_domain_usage + * table reference + */ + public ColumnDomainUsage(String alias) { + this(DSL.name(alias), COLUMN_DOMAIN_USAGE); + } + + /** + * Create an aliased information_schema.column_domain_usage + * table reference + */ + public ColumnDomainUsage(Name alias) { + this(alias, COLUMN_DOMAIN_USAGE); + } + + /** + * Create a information_schema.column_domain_usage table + * reference + */ + public ColumnDomainUsage() { + this(DSL.name("column_domain_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ColumnDomainUsage as(String alias) { + return new ColumnDomainUsage(DSL.name(alias), this); + } + + @Override + public ColumnDomainUsage as(Name alias) { + return new ColumnDomainUsage(alias, this); + } + + @Override + public ColumnDomainUsage as(Table alias) { + return new ColumnDomainUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ColumnDomainUsage rename(String name) { + return new ColumnDomainUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ColumnDomainUsage rename(Name name) { + return new ColumnDomainUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ColumnDomainUsage rename(Table name) { + return new ColumnDomainUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnDomainUsage where(Condition condition) { + return new ColumnDomainUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnDomainUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnDomainUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnDomainUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnDomainUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnDomainUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnDomainUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnDomainUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnDomainUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnDomainUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnOptions.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnOptions.java new file mode 100644 index 0000000..6bc1fea --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnOptions.java @@ -0,0 +1,246 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ColumnOptionsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnOptions extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.column_options + */ + public static final ColumnOptions COLUMN_OPTIONS = new ColumnOptions(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ColumnOptionsRecord.class; + } + + /** + * The column information_schema.column_options.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_options.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_options.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_options.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_options.option_name. + */ + public final TableField OPTION_NAME = createField(DSL.name("option_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_options.option_value. + */ + public final TableField OPTION_VALUE = createField(DSL.name("option_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private ColumnOptions(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ColumnOptions(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "column_options" as SELECT (current_database())::information_schema.sql_identifier AS table_catalog, + (c.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + (c.attname)::information_schema.sql_identifier AS column_name, + ((pg_options_to_table(c.attfdwoptions)).option_name)::information_schema.sql_identifier AS option_name, + ((pg_options_to_table(c.attfdwoptions)).option_value)::information_schema.character_data AS option_value + FROM information_schema._pg_foreign_table_columns c; + """), where); + } + + /** + * Create an aliased information_schema.column_options table + * reference + */ + public ColumnOptions(String alias) { + this(DSL.name(alias), COLUMN_OPTIONS); + } + + /** + * Create an aliased information_schema.column_options table + * reference + */ + public ColumnOptions(Name alias) { + this(alias, COLUMN_OPTIONS); + } + + /** + * Create a information_schema.column_options table reference + */ + public ColumnOptions() { + this(DSL.name("column_options"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ColumnOptions as(String alias) { + return new ColumnOptions(DSL.name(alias), this); + } + + @Override + public ColumnOptions as(Name alias) { + return new ColumnOptions(alias, this); + } + + @Override + public ColumnOptions as(Table alias) { + return new ColumnOptions(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ColumnOptions rename(String name) { + return new ColumnOptions(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ColumnOptions rename(Name name) { + return new ColumnOptions(name, null); + } + + /** + * Rename this table + */ + @Override + public ColumnOptions rename(Table name) { + return new ColumnOptions(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnOptions where(Condition condition) { + return new ColumnOptions(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnOptions where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnOptions where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnOptions where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnOptions where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnOptions where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnOptions where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnOptions where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnOptions whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnOptions whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnPrivileges.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnPrivileges.java new file mode 100644 index 0000000..fe4d207 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnPrivileges.java @@ -0,0 +1,316 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ColumnPrivilegesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnPrivileges extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.column_privileges + */ + public static final ColumnPrivileges COLUMN_PRIVILEGES = new ColumnPrivileges(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ColumnPrivilegesRecord.class; + } + + /** + * The column information_schema.column_privileges.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_privileges.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_privileges.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_privileges.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_privileges.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_privileges.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_privileges.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.column_privileges.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private ColumnPrivileges(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ColumnPrivileges(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "column_privileges" as SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (x.relname)::information_schema.sql_identifier AS table_name, + (x.attname)::information_schema.sql_identifier AS column_name, + (x.prtype)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(x.grantee, x.relowner, 'USAGE'::text) OR x.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pr_c.grantor, + pr_c.grantee, + a.attname, + pr_c.relname, + pr_c.relnamespace, + pr_c.prtype, + pr_c.grantable, + pr_c.relowner + FROM ( SELECT pg_class.oid, + pg_class.relname, + pg_class.relnamespace, + pg_class.relowner, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).is_grantable AS is_grantable + FROM pg_class + WHERE (pg_class.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"]))) pr_c(oid, relname, relnamespace, relowner, grantor, grantee, prtype, grantable), + pg_attribute a + WHERE ((a.attrelid = pr_c.oid) AND (a.attnum > 0) AND (NOT a.attisdropped)) + UNION + SELECT pr_a.grantor, + pr_a.grantee, + pr_a.attname, + c.relname, + c.relnamespace, + pr_a.prtype, + pr_a.grantable, + c.relowner + FROM ( SELECT a.attrelid, + a.attname, + (aclexplode(COALESCE(a.attacl, acldefault('c'::"char", cc.relowner)))).grantor AS grantor, + (aclexplode(COALESCE(a.attacl, acldefault('c'::"char", cc.relowner)))).grantee AS grantee, + (aclexplode(COALESCE(a.attacl, acldefault('c'::"char", cc.relowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(a.attacl, acldefault('c'::"char", cc.relowner)))).is_grantable AS is_grantable + FROM (pg_attribute a + JOIN pg_class cc ON ((a.attrelid = cc.oid))) + WHERE ((a.attnum > 0) AND (NOT a.attisdropped))) pr_a(attrelid, attname, grantor, grantee, prtype, grantable), + pg_class c + WHERE ((pr_a.attrelid = c.oid) AND (c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])))) x, + pg_namespace nc, + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((x.relnamespace = nc.oid) AND (x.grantee = grantee.oid) AND (x.grantor = u_grantor.oid) AND (x.prtype = ANY (ARRAY['INSERT'::text, 'SELECT'::text, 'UPDATE'::text, 'REFERENCES'::text])) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))); + """), where); + } + + /** + * Create an aliased information_schema.column_privileges table + * reference + */ + public ColumnPrivileges(String alias) { + this(DSL.name(alias), COLUMN_PRIVILEGES); + } + + /** + * Create an aliased information_schema.column_privileges table + * reference + */ + public ColumnPrivileges(Name alias) { + this(alias, COLUMN_PRIVILEGES); + } + + /** + * Create a information_schema.column_privileges table + * reference + */ + public ColumnPrivileges() { + this(DSL.name("column_privileges"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ColumnPrivileges as(String alias) { + return new ColumnPrivileges(DSL.name(alias), this); + } + + @Override + public ColumnPrivileges as(Name alias) { + return new ColumnPrivileges(alias, this); + } + + @Override + public ColumnPrivileges as(Table alias) { + return new ColumnPrivileges(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ColumnPrivileges rename(String name) { + return new ColumnPrivileges(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ColumnPrivileges rename(Name name) { + return new ColumnPrivileges(name, null); + } + + /** + * Rename this table + */ + @Override + public ColumnPrivileges rename(Table name) { + return new ColumnPrivileges(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnPrivileges where(Condition condition) { + return new ColumnPrivileges(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnPrivileges where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnPrivileges where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnPrivileges where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnPrivileges where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnPrivileges where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnPrivileges where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnPrivileges where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnPrivileges whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnPrivileges whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnUdtUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnUdtUsage.java new file mode 100644 index 0000000..94816b6 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ColumnUdtUsage.java @@ -0,0 +1,261 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ColumnUdtUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnUdtUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.column_udt_usage + */ + public static final ColumnUdtUsage COLUMN_UDT_USAGE = new ColumnUdtUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ColumnUdtUsageRecord.class; + } + + /** + * The column information_schema.column_udt_usage.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_udt_usage.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_udt_usage.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.column_udt_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_udt_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_udt_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.column_udt_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ColumnUdtUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ColumnUdtUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "column_udt_usage" as SELECT (current_database())::information_schema.sql_identifier AS udt_catalog, + (COALESCE(nbt.nspname, nt.nspname))::information_schema.sql_identifier AS udt_schema, + (COALESCE(bt.typname, t.typname))::information_schema.sql_identifier AS udt_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + (a.attname)::information_schema.sql_identifier AS column_name + FROM pg_attribute a, + pg_class c, + pg_namespace nc, + ((pg_type t + JOIN pg_namespace nt ON ((t.typnamespace = nt.oid))) + LEFT JOIN (pg_type bt + JOIN pg_namespace nbt ON ((bt.typnamespace = nbt.oid))) ON (((t.typtype = 'd'::"char") AND (t.typbasetype = bt.oid)))) + WHERE ((a.attrelid = c.oid) AND (a.atttypid = t.oid) AND (nc.oid = c.relnamespace) AND (a.attnum > 0) AND (NOT a.attisdropped) AND (c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND pg_has_role(COALESCE(bt.typowner, t.typowner), 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.column_udt_usage table + * reference + */ + public ColumnUdtUsage(String alias) { + this(DSL.name(alias), COLUMN_UDT_USAGE); + } + + /** + * Create an aliased information_schema.column_udt_usage table + * reference + */ + public ColumnUdtUsage(Name alias) { + this(alias, COLUMN_UDT_USAGE); + } + + /** + * Create a information_schema.column_udt_usage table reference + */ + public ColumnUdtUsage() { + this(DSL.name("column_udt_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ColumnUdtUsage as(String alias) { + return new ColumnUdtUsage(DSL.name(alias), this); + } + + @Override + public ColumnUdtUsage as(Name alias) { + return new ColumnUdtUsage(alias, this); + } + + @Override + public ColumnUdtUsage as(Table alias) { + return new ColumnUdtUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ColumnUdtUsage rename(String name) { + return new ColumnUdtUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ColumnUdtUsage rename(Name name) { + return new ColumnUdtUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ColumnUdtUsage rename(Table name) { + return new ColumnUdtUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnUdtUsage where(Condition condition) { + return new ColumnUdtUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnUdtUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnUdtUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnUdtUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnUdtUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnUdtUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnUdtUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ColumnUdtUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnUdtUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ColumnUdtUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Columns.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Columns.java new file mode 100644 index 0000000..75c4461 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Columns.java @@ -0,0 +1,550 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ColumnsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Columns extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.columns + */ + public static final Columns COLUMNS = new Columns(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ColumnsRecord.class; + } + + /** + * The column information_schema.columns.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.ordinal_position. + */ + public final TableField ORDINAL_POSITION = createField(DSL.name("ordinal_position"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.column_default. + */ + public final TableField COLUMN_DEFAULT = createField(DSL.name("column_default"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.is_nullable. + */ + public final TableField IS_NULLABLE = createField(DSL.name("is_nullable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.columns.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.columns.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.columns.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.columns.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.domain_catalog. + */ + public final TableField DOMAIN_CATALOG = createField(DSL.name("domain_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.domain_schema. + */ + public final TableField DOMAIN_SCHEMA = createField(DSL.name("domain_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.domain_name. + */ + public final TableField DOMAIN_NAME = createField(DSL.name("domain_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.scope_catalog. + */ + public final TableField SCOPE_CATALOG = createField(DSL.name("scope_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.scope_schema. + */ + public final TableField SCOPE_SCHEMA = createField(DSL.name("scope_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.scope_name. + */ + public final TableField SCOPE_NAME = createField(DSL.name("scope_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.maximum_cardinality. + */ + public final TableField MAXIMUM_CARDINALITY = createField(DSL.name("maximum_cardinality"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.columns.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.columns.is_self_referencing. + */ + public final TableField IS_SELF_REFERENCING = createField(DSL.name("is_self_referencing"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.columns.is_identity. + */ + public final TableField IS_IDENTITY = createField(DSL.name("is_identity"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.columns.identity_generation. + */ + public final TableField IDENTITY_GENERATION = createField(DSL.name("identity_generation"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.identity_start. + */ + public final TableField IDENTITY_START = createField(DSL.name("identity_start"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.identity_increment. + */ + public final TableField IDENTITY_INCREMENT = createField(DSL.name("identity_increment"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.identity_maximum. + */ + public final TableField IDENTITY_MAXIMUM = createField(DSL.name("identity_maximum"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.identity_minimum. + */ + public final TableField IDENTITY_MINIMUM = createField(DSL.name("identity_minimum"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.identity_cycle. + */ + public final TableField IDENTITY_CYCLE = createField(DSL.name("identity_cycle"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.columns.is_generated. + */ + public final TableField IS_GENERATED = createField(DSL.name("is_generated"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.generation_expression. + */ + public final TableField GENERATION_EXPRESSION = createField(DSL.name("generation_expression"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.columns.is_updatable. + */ + public final TableField IS_UPDATABLE = createField(DSL.name("is_updatable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private Columns(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Columns(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "columns" as SELECT (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + (a.attname)::information_schema.sql_identifier AS column_name, + (a.attnum)::information_schema.cardinal_number AS ordinal_position, + ( + CASE + WHEN (a.attgenerated = ''::"char") THEN pg_get_expr(ad.adbin, ad.adrelid) + ELSE NULL::text + END)::information_schema.character_data AS column_default, + ( + CASE + WHEN (a.attnotnull OR ((t.typtype = 'd'::"char") AND t.typnotnull)) THEN 'NO'::text + ELSE 'YES'::text + END)::information_schema.yes_or_no AS is_nullable, + ( + CASE + WHEN (t.typtype = 'd'::"char") THEN + CASE + WHEN ((bt.typelem <> (0)::oid) AND (bt.typlen = '-1'::integer)) THEN 'ARRAY'::text + WHEN (nbt.nspname = 'pg_catalog'::name) THEN format_type(t.typbasetype, NULL::integer) + ELSE 'USER-DEFINED'::text + END + ELSE + CASE + WHEN ((t.typelem <> (0)::oid) AND (t.typlen = '-1'::integer)) THEN 'ARRAY'::text + WHEN (nt.nspname = 'pg_catalog'::name) THEN format_type(a.atttypid, NULL::integer) + ELSE 'USER-DEFINED'::text + END + END)::information_schema.character_data AS data_type, + (information_schema._pg_char_max_length(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS character_maximum_length, + (information_schema._pg_char_octet_length(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS character_octet_length, + (information_schema._pg_numeric_precision(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS numeric_precision, + (information_schema._pg_numeric_precision_radix(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS numeric_precision_radix, + (information_schema._pg_numeric_scale(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS numeric_scale, + (information_schema._pg_datetime_precision(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.cardinal_number AS datetime_precision, + (information_schema._pg_interval_type(information_schema._pg_truetypid(a.*, t.*), information_schema._pg_truetypmod(a.*, t.*)))::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + ( + CASE + WHEN (nco.nspname IS NOT NULL) THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS collation_catalog, + (nco.nspname)::information_schema.sql_identifier AS collation_schema, + (co.collname)::information_schema.sql_identifier AS collation_name, + ( + CASE + WHEN (t.typtype = 'd'::"char") THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS domain_catalog, + ( + CASE + WHEN (t.typtype = 'd'::"char") THEN nt.nspname + ELSE NULL::name + END)::information_schema.sql_identifier AS domain_schema, + ( + CASE + WHEN (t.typtype = 'd'::"char") THEN t.typname + ELSE NULL::name + END)::information_schema.sql_identifier AS domain_name, + (current_database())::information_schema.sql_identifier AS udt_catalog, + (COALESCE(nbt.nspname, nt.nspname))::information_schema.sql_identifier AS udt_schema, + (COALESCE(bt.typname, t.typname))::information_schema.sql_identifier AS udt_name, + (NULL::name)::information_schema.sql_identifier AS scope_catalog, + (NULL::name)::information_schema.sql_identifier AS scope_schema, + (NULL::name)::information_schema.sql_identifier AS scope_name, + (NULL::integer)::information_schema.cardinal_number AS maximum_cardinality, + (a.attnum)::information_schema.sql_identifier AS dtd_identifier, + ('NO'::character varying)::information_schema.yes_or_no AS is_self_referencing, + ( + CASE + WHEN (a.attidentity = ANY (ARRAY['a'::"char", 'd'::"char"])) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_identity, + ( + CASE a.attidentity + WHEN 'a'::"char" THEN 'ALWAYS'::text + WHEN 'd'::"char" THEN 'BY DEFAULT'::text + ELSE NULL::text + END)::information_schema.character_data AS identity_generation, + (seq.seqstart)::information_schema.character_data AS identity_start, + (seq.seqincrement)::information_schema.character_data AS identity_increment, + (seq.seqmax)::information_schema.character_data AS identity_maximum, + (seq.seqmin)::information_schema.character_data AS identity_minimum, + ( + CASE + WHEN seq.seqcycle THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS identity_cycle, + ( + CASE + WHEN (a.attgenerated <> ''::"char") THEN 'ALWAYS'::text + ELSE 'NEVER'::text + END)::information_schema.character_data AS is_generated, + ( + CASE + WHEN (a.attgenerated <> ''::"char") THEN pg_get_expr(ad.adbin, ad.adrelid) + ELSE NULL::text + END)::information_schema.character_data AS generation_expression, + ( + CASE + WHEN ((c.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) OR ((c.relkind = ANY (ARRAY['v'::"char", 'f'::"char"])) AND pg_column_is_updatable((c.oid)::regclass, a.attnum, false))) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_updatable + FROM ((((((pg_attribute a + LEFT JOIN pg_attrdef ad ON (((a.attrelid = ad.adrelid) AND (a.attnum = ad.adnum)))) + JOIN (pg_class c + JOIN pg_namespace nc ON ((c.relnamespace = nc.oid))) ON ((a.attrelid = c.oid))) + JOIN (pg_type t + JOIN pg_namespace nt ON ((t.typnamespace = nt.oid))) ON ((a.atttypid = t.oid))) + LEFT JOIN (pg_type bt + JOIN pg_namespace nbt ON ((bt.typnamespace = nbt.oid))) ON (((t.typtype = 'd'::"char") AND (t.typbasetype = bt.oid)))) + LEFT JOIN (pg_collation co + JOIN pg_namespace nco ON ((co.collnamespace = nco.oid))) ON (((a.attcollation = co.oid) AND ((nco.nspname <> 'pg_catalog'::name) OR (co.collname <> 'default'::name))))) + LEFT JOIN (pg_depend dep + JOIN pg_sequence seq ON (((dep.classid = ('pg_class'::regclass)::oid) AND (dep.objid = seq.seqrelid) AND (dep.deptype = 'i'::"char")))) ON (((dep.refclassid = ('pg_class'::regclass)::oid) AND (dep.refobjid = c.oid) AND (dep.refobjsubid = a.attnum)))) + WHERE ((NOT pg_is_other_temp_schema(nc.oid)) AND (a.attnum > 0) AND (NOT a.attisdropped) AND (c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_column_privilege(c.oid, a.attnum, 'SELECT, INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased information_schema.columns table reference + */ + public Columns(String alias) { + this(DSL.name(alias), COLUMNS); + } + + /** + * Create an aliased information_schema.columns table reference + */ + public Columns(Name alias) { + this(alias, COLUMNS); + } + + /** + * Create a information_schema.columns table reference + */ + public Columns() { + this(DSL.name("columns"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Columns as(String alias) { + return new Columns(DSL.name(alias), this); + } + + @Override + public Columns as(Name alias) { + return new Columns(alias, this); + } + + @Override + public Columns as(Table alias) { + return new Columns(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Columns rename(String name) { + return new Columns(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Columns rename(Name name) { + return new Columns(name, null); + } + + /** + * Rename this table + */ + @Override + public Columns rename(Table name) { + return new Columns(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Columns where(Condition condition) { + return new Columns(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Columns where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Columns where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Columns where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Columns where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Columns where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Columns where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Columns where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Columns whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Columns whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintColumnUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintColumnUsage.java new file mode 100644 index 0000000..42d909d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintColumnUsage.java @@ -0,0 +1,295 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ConstraintColumnUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ConstraintColumnUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.constraint_column_usage + */ + public static final ConstraintColumnUsage CONSTRAINT_COLUMN_USAGE = new ConstraintColumnUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ConstraintColumnUsageRecord.class; + } + + /** + * The column + * information_schema.constraint_column_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_column_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_column_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_column_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_column_usage.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_column_usage.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_column_usage.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ConstraintColumnUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ConstraintColumnUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "constraint_column_usage" as SELECT (current_database())::information_schema.sql_identifier AS table_catalog, + (x.tblschema)::information_schema.sql_identifier AS table_schema, + (x.tblname)::information_schema.sql_identifier AS table_name, + (x.colname)::information_schema.sql_identifier AS column_name, + (current_database())::information_schema.sql_identifier AS constraint_catalog, + (x.cstrschema)::information_schema.sql_identifier AS constraint_schema, + (x.cstrname)::information_schema.sql_identifier AS constraint_name + FROM ( SELECT DISTINCT nr.nspname, + r.relname, + r.relowner, + a.attname, + nc.nspname, + c.conname + FROM pg_namespace nr, + pg_class r, + pg_attribute a, + pg_depend d, + pg_namespace nc, + pg_constraint c + WHERE ((nr.oid = r.relnamespace) AND (r.oid = a.attrelid) AND (d.refclassid = ('pg_class'::regclass)::oid) AND (d.refobjid = r.oid) AND (d.refobjsubid = a.attnum) AND (d.classid = ('pg_constraint'::regclass)::oid) AND (d.objid = c.oid) AND (c.connamespace = nc.oid) AND (c.contype = 'c'::"char") AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) AND (NOT a.attisdropped)) + UNION ALL + SELECT nr.nspname, + r.relname, + r.relowner, + a.attname, + nc.nspname, + c.conname + FROM pg_namespace nr, + pg_class r, + pg_attribute a, + pg_namespace nc, + pg_constraint c + WHERE ((nr.oid = r.relnamespace) AND (r.oid = a.attrelid) AND (nc.oid = c.connamespace) AND (r.oid = + CASE c.contype + WHEN 'f'::"char" THEN c.confrelid + ELSE c.conrelid + END) AND (a.attnum = ANY ( + CASE c.contype + WHEN 'f'::"char" THEN c.confkey + ELSE c.conkey + END)) AND (NOT a.attisdropped) AND (c.contype = ANY (ARRAY['p'::"char", 'u'::"char", 'f'::"char"])) AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])))) x(tblschema, tblname, tblowner, colname, cstrschema, cstrname) + WHERE pg_has_role(x.tblowner, 'USAGE'::text); + """), where); + } + + /** + * Create an aliased information_schema.constraint_column_usage + * table reference + */ + public ConstraintColumnUsage(String alias) { + this(DSL.name(alias), CONSTRAINT_COLUMN_USAGE); + } + + /** + * Create an aliased information_schema.constraint_column_usage + * table reference + */ + public ConstraintColumnUsage(Name alias) { + this(alias, CONSTRAINT_COLUMN_USAGE); + } + + /** + * Create a information_schema.constraint_column_usage table + * reference + */ + public ConstraintColumnUsage() { + this(DSL.name("constraint_column_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ConstraintColumnUsage as(String alias) { + return new ConstraintColumnUsage(DSL.name(alias), this); + } + + @Override + public ConstraintColumnUsage as(Name alias) { + return new ConstraintColumnUsage(alias, this); + } + + @Override + public ConstraintColumnUsage as(Table alias) { + return new ConstraintColumnUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ConstraintColumnUsage rename(String name) { + return new ConstraintColumnUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ConstraintColumnUsage rename(Name name) { + return new ConstraintColumnUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ConstraintColumnUsage rename(Table name) { + return new ConstraintColumnUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintColumnUsage where(Condition condition) { + return new ConstraintColumnUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintColumnUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintColumnUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintColumnUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintColumnUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintColumnUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintColumnUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintColumnUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintColumnUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintColumnUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintTableUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintTableUsage.java new file mode 100644 index 0000000..a36773f --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ConstraintTableUsage.java @@ -0,0 +1,258 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ConstraintTableUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ConstraintTableUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.constraint_table_usage + */ + public static final ConstraintTableUsage CONSTRAINT_TABLE_USAGE = new ConstraintTableUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ConstraintTableUsageRecord.class; + } + + /** + * The column + * information_schema.constraint_table_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_table_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_table_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_table_usage.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_table_usage.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.constraint_table_usage.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ConstraintTableUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ConstraintTableUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "constraint_table_usage" as SELECT (current_database())::information_schema.sql_identifier AS table_catalog, + (nr.nspname)::information_schema.sql_identifier AS table_schema, + (r.relname)::information_schema.sql_identifier AS table_name, + (current_database())::information_schema.sql_identifier AS constraint_catalog, + (nc.nspname)::information_schema.sql_identifier AS constraint_schema, + (c.conname)::information_schema.sql_identifier AS constraint_name + FROM pg_constraint c, + pg_namespace nc, + pg_class r, + pg_namespace nr + WHERE ((c.connamespace = nc.oid) AND (r.relnamespace = nr.oid) AND (((c.contype = 'f'::"char") AND (c.confrelid = r.oid)) OR ((c.contype = ANY (ARRAY['p'::"char", 'u'::"char"])) AND (c.conrelid = r.oid))) AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) AND pg_has_role(r.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.constraint_table_usage + * table reference + */ + public ConstraintTableUsage(String alias) { + this(DSL.name(alias), CONSTRAINT_TABLE_USAGE); + } + + /** + * Create an aliased information_schema.constraint_table_usage + * table reference + */ + public ConstraintTableUsage(Name alias) { + this(alias, CONSTRAINT_TABLE_USAGE); + } + + /** + * Create a information_schema.constraint_table_usage table + * reference + */ + public ConstraintTableUsage() { + this(DSL.name("constraint_table_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ConstraintTableUsage as(String alias) { + return new ConstraintTableUsage(DSL.name(alias), this); + } + + @Override + public ConstraintTableUsage as(Name alias) { + return new ConstraintTableUsage(alias, this); + } + + @Override + public ConstraintTableUsage as(Table alias) { + return new ConstraintTableUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ConstraintTableUsage rename(String name) { + return new ConstraintTableUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ConstraintTableUsage rename(Name name) { + return new ConstraintTableUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ConstraintTableUsage rename(Table name) { + return new ConstraintTableUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintTableUsage where(Condition condition) { + return new ConstraintTableUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintTableUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintTableUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintTableUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintTableUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintTableUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintTableUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ConstraintTableUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintTableUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ConstraintTableUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DataTypePrivileges.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DataTypePrivileges.java new file mode 100644 index 0000000..8467634 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DataTypePrivileges.java @@ -0,0 +1,275 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.DataTypePrivilegesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DataTypePrivileges extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.data_type_privileges + */ + public static final DataTypePrivileges DATA_TYPE_PRIVILEGES = new DataTypePrivileges(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return DataTypePrivilegesRecord.class; + } + + /** + * The column + * information_schema.data_type_privileges.object_catalog. + */ + public final TableField OBJECT_CATALOG = createField(DSL.name("object_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.data_type_privileges.object_schema. + */ + public final TableField OBJECT_SCHEMA = createField(DSL.name("object_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.data_type_privileges.object_name. + */ + public final TableField OBJECT_NAME = createField(DSL.name("object_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.data_type_privileges.object_type. + */ + public final TableField OBJECT_TYPE = createField(DSL.name("object_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.data_type_privileges.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private DataTypePrivileges(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private DataTypePrivileges(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "data_type_privileges" as SELECT (current_database())::information_schema.sql_identifier AS object_catalog, + x.objschema AS object_schema, + x.objname AS object_name, + (x.objtype)::information_schema.character_data AS object_type, + x.objdtdid AS dtd_identifier + FROM ( SELECT attributes.udt_schema, + attributes.udt_name, + 'USER-DEFINED TYPE'::text AS text, + attributes.dtd_identifier + FROM information_schema.attributes + UNION ALL + SELECT columns.table_schema, + columns.table_name, + 'TABLE'::text AS text, + columns.dtd_identifier + FROM information_schema.columns + UNION ALL + SELECT domains.domain_schema, + domains.domain_name, + 'DOMAIN'::text AS text, + domains.dtd_identifier + FROM information_schema.domains + UNION ALL + SELECT parameters.specific_schema, + parameters.specific_name, + 'ROUTINE'::text AS text, + parameters.dtd_identifier + FROM information_schema.parameters + UNION ALL + SELECT routines.specific_schema, + routines.specific_name, + 'ROUTINE'::text AS text, + routines.dtd_identifier + FROM information_schema.routines) x(objschema, objname, objtype, objdtdid); + """), where); + } + + /** + * Create an aliased information_schema.data_type_privileges + * table reference + */ + public DataTypePrivileges(String alias) { + this(DSL.name(alias), DATA_TYPE_PRIVILEGES); + } + + /** + * Create an aliased information_schema.data_type_privileges + * table reference + */ + public DataTypePrivileges(Name alias) { + this(alias, DATA_TYPE_PRIVILEGES); + } + + /** + * Create a information_schema.data_type_privileges table + * reference + */ + public DataTypePrivileges() { + this(DSL.name("data_type_privileges"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public DataTypePrivileges as(String alias) { + return new DataTypePrivileges(DSL.name(alias), this); + } + + @Override + public DataTypePrivileges as(Name alias) { + return new DataTypePrivileges(alias, this); + } + + @Override + public DataTypePrivileges as(Table alias) { + return new DataTypePrivileges(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public DataTypePrivileges rename(String name) { + return new DataTypePrivileges(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public DataTypePrivileges rename(Name name) { + return new DataTypePrivileges(name, null); + } + + /** + * Rename this table + */ + @Override + public DataTypePrivileges rename(Table name) { + return new DataTypePrivileges(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DataTypePrivileges where(Condition condition) { + return new DataTypePrivileges(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DataTypePrivileges where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DataTypePrivileges where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DataTypePrivileges where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DataTypePrivileges where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DataTypePrivileges where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DataTypePrivileges where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DataTypePrivileges where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DataTypePrivileges whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DataTypePrivileges whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainConstraints.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainConstraints.java new file mode 100644 index 0000000..11a6932 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainConstraints.java @@ -0,0 +1,280 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.DomainConstraintsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DomainConstraints extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.domain_constraints + */ + public static final DomainConstraints DOMAIN_CONSTRAINTS = new DomainConstraints(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return DomainConstraintsRecord.class; + } + + /** + * The column + * information_schema.domain_constraints.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.domain_catalog. + */ + public final TableField DOMAIN_CATALOG = createField(DSL.name("domain_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.domain_schema. + */ + public final TableField DOMAIN_SCHEMA = createField(DSL.name("domain_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.domain_name. + */ + public final TableField DOMAIN_NAME = createField(DSL.name("domain_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.is_deferrable. + */ + public final TableField IS_DEFERRABLE = createField(DSL.name("is_deferrable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_constraints.initially_deferred. + */ + public final TableField INITIALLY_DEFERRED = createField(DSL.name("initially_deferred"), Domains.YES_OR_NO.getDataType(), this, ""); + + private DomainConstraints(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private DomainConstraints(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "domain_constraints" as SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (rs.nspname)::information_schema.sql_identifier AS constraint_schema, + (con.conname)::information_schema.sql_identifier AS constraint_name, + (current_database())::information_schema.sql_identifier AS domain_catalog, + (n.nspname)::information_schema.sql_identifier AS domain_schema, + (t.typname)::information_schema.sql_identifier AS domain_name, + ( + CASE + WHEN con.condeferrable THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_deferrable, + ( + CASE + WHEN con.condeferred THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS initially_deferred + FROM pg_namespace rs, + pg_namespace n, + pg_constraint con, + pg_type t + WHERE ((rs.oid = con.connamespace) AND (n.oid = t.typnamespace) AND (t.oid = con.contypid) AND (pg_has_role(t.typowner, 'USAGE'::text) OR has_type_privilege(t.oid, 'USAGE'::text))); + """), where); + } + + /** + * Create an aliased information_schema.domain_constraints + * table reference + */ + public DomainConstraints(String alias) { + this(DSL.name(alias), DOMAIN_CONSTRAINTS); + } + + /** + * Create an aliased information_schema.domain_constraints + * table reference + */ + public DomainConstraints(Name alias) { + this(alias, DOMAIN_CONSTRAINTS); + } + + /** + * Create a information_schema.domain_constraints table + * reference + */ + public DomainConstraints() { + this(DSL.name("domain_constraints"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public DomainConstraints as(String alias) { + return new DomainConstraints(DSL.name(alias), this); + } + + @Override + public DomainConstraints as(Name alias) { + return new DomainConstraints(alias, this); + } + + @Override + public DomainConstraints as(Table alias) { + return new DomainConstraints(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public DomainConstraints rename(String name) { + return new DomainConstraints(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public DomainConstraints rename(Name name) { + return new DomainConstraints(name, null); + } + + /** + * Rename this table + */ + @Override + public DomainConstraints rename(Table name) { + return new DomainConstraints(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainConstraints where(Condition condition) { + return new DomainConstraints(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainConstraints where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainConstraints where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainConstraints where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainConstraints where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainConstraints where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainConstraints where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainConstraints where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainConstraints whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainConstraints whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainUdtUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainUdtUsage.java new file mode 100644 index 0000000..ca4ea5e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/DomainUdtUsage.java @@ -0,0 +1,253 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.DomainUdtUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DomainUdtUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.domain_udt_usage + */ + public static final DomainUdtUsage DOMAIN_UDT_USAGE = new DomainUdtUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return DomainUdtUsageRecord.class; + } + + /** + * The column information_schema.domain_udt_usage.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domain_udt_usage.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domain_udt_usage.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_udt_usage.domain_catalog. + */ + public final TableField DOMAIN_CATALOG = createField(DSL.name("domain_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.domain_udt_usage.domain_schema. + */ + public final TableField DOMAIN_SCHEMA = createField(DSL.name("domain_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domain_udt_usage.domain_name. + */ + public final TableField DOMAIN_NAME = createField(DSL.name("domain_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private DomainUdtUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private DomainUdtUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "domain_udt_usage" as SELECT (current_database())::information_schema.sql_identifier AS udt_catalog, + (nbt.nspname)::information_schema.sql_identifier AS udt_schema, + (bt.typname)::information_schema.sql_identifier AS udt_name, + (current_database())::information_schema.sql_identifier AS domain_catalog, + (nt.nspname)::information_schema.sql_identifier AS domain_schema, + (t.typname)::information_schema.sql_identifier AS domain_name + FROM pg_type t, + pg_namespace nt, + pg_type bt, + pg_namespace nbt + WHERE ((t.typnamespace = nt.oid) AND (t.typbasetype = bt.oid) AND (bt.typnamespace = nbt.oid) AND (t.typtype = 'd'::"char") AND pg_has_role(bt.typowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.domain_udt_usage table + * reference + */ + public DomainUdtUsage(String alias) { + this(DSL.name(alias), DOMAIN_UDT_USAGE); + } + + /** + * Create an aliased information_schema.domain_udt_usage table + * reference + */ + public DomainUdtUsage(Name alias) { + this(alias, DOMAIN_UDT_USAGE); + } + + /** + * Create a information_schema.domain_udt_usage table reference + */ + public DomainUdtUsage() { + this(DSL.name("domain_udt_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public DomainUdtUsage as(String alias) { + return new DomainUdtUsage(DSL.name(alias), this); + } + + @Override + public DomainUdtUsage as(Name alias) { + return new DomainUdtUsage(alias, this); + } + + @Override + public DomainUdtUsage as(Table alias) { + return new DomainUdtUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public DomainUdtUsage rename(String name) { + return new DomainUdtUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public DomainUdtUsage rename(Name name) { + return new DomainUdtUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public DomainUdtUsage rename(Table name) { + return new DomainUdtUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainUdtUsage where(Condition condition) { + return new DomainUdtUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainUdtUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainUdtUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainUdtUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainUdtUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainUdtUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainUdtUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DomainUdtUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainUdtUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DomainUdtUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Domains.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Domains.java new file mode 100644 index 0000000..191d299 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Domains.java @@ -0,0 +1,387 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.DomainsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Domains extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.domains + */ + public static final Domains DOMAINS = new Domains(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return DomainsRecord.class; + } + + /** + * The column information_schema.domains.domain_catalog. + */ + public final TableField DOMAIN_CATALOG = createField(DSL.name("domain_catalog"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.domain_schema. + */ + public final TableField DOMAIN_SCHEMA = createField(DSL.name("domain_schema"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.domain_name. + */ + public final TableField DOMAIN_NAME = createField(DSL.name("domain_name"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.domains.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.domains.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.domains.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.domains.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.domains.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.domains.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.domains.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.domains.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.domains.domain_default. + */ + public final TableField DOMAIN_DEFAULT = createField(DSL.name("domain_default"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.domains.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.scope_catalog. + */ + public final TableField SCOPE_CATALOG = createField(DSL.name("scope_catalog"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.scope_schema. + */ + public final TableField SCOPE_SCHEMA = createField(DSL.name("scope_schema"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.scope_name. + */ + public final TableField SCOPE_NAME = createField(DSL.name("scope_name"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.domains.maximum_cardinality. + */ + public final TableField MAXIMUM_CARDINALITY = createField(DSL.name("maximum_cardinality"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.domains.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), ervu_secret.ervu_secret.db_beans.information_schema.Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private Domains(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Domains(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "domains" as SELECT (current_database())::information_schema.sql_identifier AS domain_catalog, + (nt.nspname)::information_schema.sql_identifier AS domain_schema, + (t.typname)::information_schema.sql_identifier AS domain_name, + ( + CASE + WHEN ((t.typelem <> (0)::oid) AND (t.typlen = '-1'::integer)) THEN 'ARRAY'::text + WHEN (nbt.nspname = 'pg_catalog'::name) THEN format_type(t.typbasetype, NULL::integer) + ELSE 'USER-DEFINED'::text + END)::information_schema.character_data AS data_type, + (information_schema._pg_char_max_length(t.typbasetype, t.typtypmod))::information_schema.cardinal_number AS character_maximum_length, + (information_schema._pg_char_octet_length(t.typbasetype, t.typtypmod))::information_schema.cardinal_number AS character_octet_length, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + ( + CASE + WHEN (nco.nspname IS NOT NULL) THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS collation_catalog, + (nco.nspname)::information_schema.sql_identifier AS collation_schema, + (co.collname)::information_schema.sql_identifier AS collation_name, + (information_schema._pg_numeric_precision(t.typbasetype, t.typtypmod))::information_schema.cardinal_number AS numeric_precision, + (information_schema._pg_numeric_precision_radix(t.typbasetype, t.typtypmod))::information_schema.cardinal_number AS numeric_precision_radix, + (information_schema._pg_numeric_scale(t.typbasetype, t.typtypmod))::information_schema.cardinal_number AS numeric_scale, + (information_schema._pg_datetime_precision(t.typbasetype, t.typtypmod))::information_schema.cardinal_number AS datetime_precision, + (information_schema._pg_interval_type(t.typbasetype, t.typtypmod))::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + (t.typdefault)::information_schema.character_data AS domain_default, + (current_database())::information_schema.sql_identifier AS udt_catalog, + (nbt.nspname)::information_schema.sql_identifier AS udt_schema, + (bt.typname)::information_schema.sql_identifier AS udt_name, + (NULL::name)::information_schema.sql_identifier AS scope_catalog, + (NULL::name)::information_schema.sql_identifier AS scope_schema, + (NULL::name)::information_schema.sql_identifier AS scope_name, + (NULL::integer)::information_schema.cardinal_number AS maximum_cardinality, + (1)::information_schema.sql_identifier AS dtd_identifier + FROM (((pg_type t + JOIN pg_namespace nt ON ((t.typnamespace = nt.oid))) + JOIN (pg_type bt + JOIN pg_namespace nbt ON ((bt.typnamespace = nbt.oid))) ON (((t.typbasetype = bt.oid) AND (t.typtype = 'd'::"char")))) + LEFT JOIN (pg_collation co + JOIN pg_namespace nco ON ((co.collnamespace = nco.oid))) ON (((t.typcollation = co.oid) AND ((nco.nspname <> 'pg_catalog'::name) OR (co.collname <> 'default'::name))))) + WHERE (pg_has_role(t.typowner, 'USAGE'::text) OR has_type_privilege(t.oid, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.domains table reference + */ + public Domains(String alias) { + this(DSL.name(alias), DOMAINS); + } + + /** + * Create an aliased information_schema.domains table reference + */ + public Domains(Name alias) { + this(alias, DOMAINS); + } + + /** + * Create a information_schema.domains table reference + */ + public Domains() { + this(DSL.name("domains"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Domains as(String alias) { + return new Domains(DSL.name(alias), this); + } + + @Override + public Domains as(Name alias) { + return new Domains(alias, this); + } + + @Override + public Domains as(Table alias) { + return new Domains(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Domains rename(String name) { + return new Domains(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Domains rename(Name name) { + return new Domains(name, null); + } + + /** + * Rename this table + */ + @Override + public Domains rename(Table name) { + return new Domains(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Domains where(Condition condition) { + return new Domains(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Domains where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Domains where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Domains where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Domains where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Domains where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Domains where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Domains where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Domains whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Domains whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ElementTypes.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ElementTypes.java new file mode 100644 index 0000000..886d473 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ElementTypes.java @@ -0,0 +1,456 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ElementTypesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ElementTypes extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.element_types + */ + public static final ElementTypes ELEMENT_TYPES = new ElementTypes(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ElementTypesRecord.class; + } + + /** + * The column information_schema.element_types.object_catalog. + */ + public final TableField OBJECT_CATALOG = createField(DSL.name("object_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.object_schema. + */ + public final TableField OBJECT_SCHEMA = createField(DSL.name("object_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.object_name. + */ + public final TableField OBJECT_NAME = createField(DSL.name("object_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.object_type. + */ + public final TableField OBJECT_TYPE = createField(DSL.name("object_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.collection_type_identifier. + */ + public final TableField COLLECTION_TYPE_IDENTIFIER = createField(DSL.name("collection_type_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.domain_default. + */ + public final TableField DOMAIN_DEFAULT = createField(DSL.name("domain_default"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.element_types.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.scope_catalog. + */ + public final TableField SCOPE_CATALOG = createField(DSL.name("scope_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.scope_schema. + */ + public final TableField SCOPE_SCHEMA = createField(DSL.name("scope_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.scope_name. + */ + public final TableField SCOPE_NAME = createField(DSL.name("scope_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.element_types.maximum_cardinality. + */ + public final TableField MAXIMUM_CARDINALITY = createField(DSL.name("maximum_cardinality"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.element_types.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ElementTypes(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ElementTypes(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "element_types" as SELECT (current_database())::information_schema.sql_identifier AS object_catalog, + (n.nspname)::information_schema.sql_identifier AS object_schema, + x.objname AS object_name, + (x.objtype)::information_schema.character_data AS object_type, + (x.objdtdid)::information_schema.sql_identifier AS collection_type_identifier, + ( + CASE + WHEN (nbt.nspname = 'pg_catalog'::name) THEN format_type(bt.oid, NULL::integer) + ELSE 'USER-DEFINED'::text + END)::information_schema.character_data AS data_type, + (NULL::integer)::information_schema.cardinal_number AS character_maximum_length, + (NULL::integer)::information_schema.cardinal_number AS character_octet_length, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + ( + CASE + WHEN (nco.nspname IS NOT NULL) THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS collation_catalog, + (nco.nspname)::information_schema.sql_identifier AS collation_schema, + (co.collname)::information_schema.sql_identifier AS collation_name, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision_radix, + (NULL::integer)::information_schema.cardinal_number AS numeric_scale, + (NULL::integer)::information_schema.cardinal_number AS datetime_precision, + (NULL::character varying)::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + (NULL::character varying)::information_schema.character_data AS domain_default, + (current_database())::information_schema.sql_identifier AS udt_catalog, + (nbt.nspname)::information_schema.sql_identifier AS udt_schema, + (bt.typname)::information_schema.sql_identifier AS udt_name, + (NULL::name)::information_schema.sql_identifier AS scope_catalog, + (NULL::name)::information_schema.sql_identifier AS scope_schema, + (NULL::name)::information_schema.sql_identifier AS scope_name, + (NULL::integer)::information_schema.cardinal_number AS maximum_cardinality, + (('a'::text || (x.objdtdid)::text))::information_schema.sql_identifier AS dtd_identifier + FROM pg_namespace n, + pg_type at, + pg_namespace nbt, + pg_type bt, + (( SELECT c.relnamespace, + (c.relname)::information_schema.sql_identifier AS relname, + CASE + WHEN (c.relkind = 'c'::"char") THEN 'USER-DEFINED TYPE'::text + ELSE 'TABLE'::text + END AS "case", + a.attnum, + a.atttypid, + a.attcollation + FROM pg_class c, + pg_attribute a + WHERE ((c.oid = a.attrelid) AND (c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'c'::"char", 'p'::"char"])) AND (a.attnum > 0) AND (NOT a.attisdropped)) + UNION ALL + SELECT t.typnamespace, + (t.typname)::information_schema.sql_identifier AS typname, + 'DOMAIN'::text AS text, + 1, + t.typbasetype, + t.typcollation + FROM pg_type t + WHERE (t.typtype = 'd'::"char") + UNION ALL + SELECT ss.pronamespace, + (nameconcatoid(ss.proname, ss.oid))::information_schema.sql_identifier AS nameconcatoid, + 'ROUTINE'::text AS text, + (ss.x).n AS n, + (ss.x).x AS x, + 0 + FROM ( SELECT p.pronamespace, + p.proname, + p.oid, + information_schema._pg_expandarray(COALESCE(p.proallargtypes, (p.proargtypes)::oid[])) AS x + FROM pg_proc p) ss + UNION ALL + SELECT p.pronamespace, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS nameconcatoid, + 'ROUTINE'::text AS text, + 0, + p.prorettype, + 0 + FROM pg_proc p) x(objschema, objname, objtype, objdtdid, objtypeid, objcollation) + LEFT JOIN (pg_collation co + JOIN pg_namespace nco ON ((co.collnamespace = nco.oid))) ON (((x.objcollation = co.oid) AND ((nco.nspname <> 'pg_catalog'::name) OR (co.collname <> 'default'::name))))) + WHERE ((n.oid = x.objschema) AND (at.oid = x.objtypeid) AND ((at.typelem <> (0)::oid) AND (at.typlen = '-1'::integer)) AND (at.typelem = bt.oid) AND (nbt.oid = bt.typnamespace) AND ((n.nspname, (x.objname)::name, x.objtype, ((x.objdtdid)::information_schema.sql_identifier)::name) IN ( SELECT data_type_privileges.object_schema, + data_type_privileges.object_name, + data_type_privileges.object_type, + data_type_privileges.dtd_identifier + FROM information_schema.data_type_privileges))); + """), where); + } + + /** + * Create an aliased information_schema.element_types table + * reference + */ + public ElementTypes(String alias) { + this(DSL.name(alias), ELEMENT_TYPES); + } + + /** + * Create an aliased information_schema.element_types table + * reference + */ + public ElementTypes(Name alias) { + this(alias, ELEMENT_TYPES); + } + + /** + * Create a information_schema.element_types table reference + */ + public ElementTypes() { + this(DSL.name("element_types"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ElementTypes as(String alias) { + return new ElementTypes(DSL.name(alias), this); + } + + @Override + public ElementTypes as(Name alias) { + return new ElementTypes(alias, this); + } + + @Override + public ElementTypes as(Table alias) { + return new ElementTypes(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ElementTypes rename(String name) { + return new ElementTypes(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ElementTypes rename(Name name) { + return new ElementTypes(name, null); + } + + /** + * Rename this table + */ + @Override + public ElementTypes rename(Table name) { + return new ElementTypes(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ElementTypes where(Condition condition) { + return new ElementTypes(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ElementTypes where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ElementTypes where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ElementTypes where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ElementTypes where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ElementTypes where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ElementTypes where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ElementTypes where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ElementTypes whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ElementTypes whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/EnabledRoles.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/EnabledRoles.java new file mode 100644 index 0000000..3fec7fb --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/EnabledRoles.java @@ -0,0 +1,217 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.EnabledRolesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class EnabledRoles extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.enabled_roles + */ + public static final EnabledRoles ENABLED_ROLES = new EnabledRoles(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return EnabledRolesRecord.class; + } + + /** + * The column information_schema.enabled_roles.role_name. + */ + public final TableField ROLE_NAME = createField(DSL.name("role_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private EnabledRoles(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private EnabledRoles(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "enabled_roles" as SELECT (a.rolname)::information_schema.sql_identifier AS role_name + FROM pg_authid a + WHERE pg_has_role(a.oid, 'USAGE'::text); + """), where); + } + + /** + * Create an aliased information_schema.enabled_roles table + * reference + */ + public EnabledRoles(String alias) { + this(DSL.name(alias), ENABLED_ROLES); + } + + /** + * Create an aliased information_schema.enabled_roles table + * reference + */ + public EnabledRoles(Name alias) { + this(alias, ENABLED_ROLES); + } + + /** + * Create a information_schema.enabled_roles table reference + */ + public EnabledRoles() { + this(DSL.name("enabled_roles"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public EnabledRoles as(String alias) { + return new EnabledRoles(DSL.name(alias), this); + } + + @Override + public EnabledRoles as(Name alias) { + return new EnabledRoles(alias, this); + } + + @Override + public EnabledRoles as(Table alias) { + return new EnabledRoles(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public EnabledRoles rename(String name) { + return new EnabledRoles(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public EnabledRoles rename(Name name) { + return new EnabledRoles(name, null); + } + + /** + * Rename this table + */ + @Override + public EnabledRoles rename(Table name) { + return new EnabledRoles(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public EnabledRoles where(Condition condition) { + return new EnabledRoles(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public EnabledRoles where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public EnabledRoles where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public EnabledRoles where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public EnabledRoles where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public EnabledRoles where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public EnabledRoles where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public EnabledRoles where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public EnabledRoles whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public EnabledRoles whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrapperOptions.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrapperOptions.java new file mode 100644 index 0000000..8fa51cd --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrapperOptions.java @@ -0,0 +1,242 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ForeignDataWrapperOptionsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignDataWrapperOptions extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.foreign_data_wrapper_options + */ + public static final ForeignDataWrapperOptions FOREIGN_DATA_WRAPPER_OPTIONS = new ForeignDataWrapperOptions(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ForeignDataWrapperOptionsRecord.class; + } + + /** + * The column + * information_schema.foreign_data_wrapper_options.foreign_data_wrapper_catalog. + */ + public final TableField FOREIGN_DATA_WRAPPER_CATALOG = createField(DSL.name("foreign_data_wrapper_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrapper_options.foreign_data_wrapper_name. + */ + public final TableField FOREIGN_DATA_WRAPPER_NAME = createField(DSL.name("foreign_data_wrapper_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrapper_options.option_name. + */ + public final TableField OPTION_NAME = createField(DSL.name("option_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrapper_options.option_value. + */ + public final TableField OPTION_VALUE = createField(DSL.name("option_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private ForeignDataWrapperOptions(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ForeignDataWrapperOptions(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "foreign_data_wrapper_options" as SELECT w.foreign_data_wrapper_catalog, + w.foreign_data_wrapper_name, + ((pg_options_to_table(w.fdwoptions)).option_name)::information_schema.sql_identifier AS option_name, + ((pg_options_to_table(w.fdwoptions)).option_value)::information_schema.character_data AS option_value + FROM information_schema._pg_foreign_data_wrappers w; + """), where); + } + + /** + * Create an aliased + * information_schema.foreign_data_wrapper_options table + * reference + */ + public ForeignDataWrapperOptions(String alias) { + this(DSL.name(alias), FOREIGN_DATA_WRAPPER_OPTIONS); + } + + /** + * Create an aliased + * information_schema.foreign_data_wrapper_options table + * reference + */ + public ForeignDataWrapperOptions(Name alias) { + this(alias, FOREIGN_DATA_WRAPPER_OPTIONS); + } + + /** + * Create a information_schema.foreign_data_wrapper_options + * table reference + */ + public ForeignDataWrapperOptions() { + this(DSL.name("foreign_data_wrapper_options"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ForeignDataWrapperOptions as(String alias) { + return new ForeignDataWrapperOptions(DSL.name(alias), this); + } + + @Override + public ForeignDataWrapperOptions as(Name alias) { + return new ForeignDataWrapperOptions(alias, this); + } + + @Override + public ForeignDataWrapperOptions as(Table alias) { + return new ForeignDataWrapperOptions(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ForeignDataWrapperOptions rename(String name) { + return new ForeignDataWrapperOptions(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ForeignDataWrapperOptions rename(Name name) { + return new ForeignDataWrapperOptions(name, null); + } + + /** + * Rename this table + */ + @Override + public ForeignDataWrapperOptions rename(Table name) { + return new ForeignDataWrapperOptions(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrapperOptions where(Condition condition) { + return new ForeignDataWrapperOptions(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrapperOptions where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrapperOptions where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrapperOptions where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrapperOptions where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrapperOptions where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrapperOptions where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrapperOptions where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrapperOptions whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrapperOptions whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrappers.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrappers.java new file mode 100644 index 0000000..485dde5 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignDataWrappers.java @@ -0,0 +1,247 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ForeignDataWrappersRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignDataWrappers extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.foreign_data_wrappers + */ + public static final ForeignDataWrappers FOREIGN_DATA_WRAPPERS = new ForeignDataWrappers(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ForeignDataWrappersRecord.class; + } + + /** + * The column + * information_schema.foreign_data_wrappers.foreign_data_wrapper_catalog. + */ + public final TableField FOREIGN_DATA_WRAPPER_CATALOG = createField(DSL.name("foreign_data_wrapper_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrappers.foreign_data_wrapper_name. + */ + public final TableField FOREIGN_DATA_WRAPPER_NAME = createField(DSL.name("foreign_data_wrapper_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrappers.authorization_identifier. + */ + public final TableField AUTHORIZATION_IDENTIFIER = createField(DSL.name("authorization_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrappers.library_name. + */ + public final TableField LIBRARY_NAME = createField(DSL.name("library_name"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_data_wrappers.foreign_data_wrapper_language. + */ + public final TableField FOREIGN_DATA_WRAPPER_LANGUAGE = createField(DSL.name("foreign_data_wrapper_language"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private ForeignDataWrappers(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ForeignDataWrappers(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "foreign_data_wrappers" as SELECT w.foreign_data_wrapper_catalog, + w.foreign_data_wrapper_name, + w.authorization_identifier, + (NULL::character varying)::information_schema.character_data AS library_name, + w.foreign_data_wrapper_language + FROM information_schema._pg_foreign_data_wrappers w; + """), where); + } + + /** + * Create an aliased information_schema.foreign_data_wrappers + * table reference + */ + public ForeignDataWrappers(String alias) { + this(DSL.name(alias), FOREIGN_DATA_WRAPPERS); + } + + /** + * Create an aliased information_schema.foreign_data_wrappers + * table reference + */ + public ForeignDataWrappers(Name alias) { + this(alias, FOREIGN_DATA_WRAPPERS); + } + + /** + * Create a information_schema.foreign_data_wrappers table + * reference + */ + public ForeignDataWrappers() { + this(DSL.name("foreign_data_wrappers"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ForeignDataWrappers as(String alias) { + return new ForeignDataWrappers(DSL.name(alias), this); + } + + @Override + public ForeignDataWrappers as(Name alias) { + return new ForeignDataWrappers(alias, this); + } + + @Override + public ForeignDataWrappers as(Table alias) { + return new ForeignDataWrappers(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ForeignDataWrappers rename(String name) { + return new ForeignDataWrappers(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ForeignDataWrappers rename(Name name) { + return new ForeignDataWrappers(name, null); + } + + /** + * Rename this table + */ + @Override + public ForeignDataWrappers rename(Table name) { + return new ForeignDataWrappers(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrappers where(Condition condition) { + return new ForeignDataWrappers(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrappers where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrappers where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrappers where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrappers where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrappers where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrappers where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignDataWrappers where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrappers whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignDataWrappers whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServerOptions.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServerOptions.java new file mode 100644 index 0000000..be76a94 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServerOptions.java @@ -0,0 +1,240 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ForeignServerOptionsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignServerOptions extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.foreign_server_options + */ + public static final ForeignServerOptions FOREIGN_SERVER_OPTIONS = new ForeignServerOptions(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ForeignServerOptionsRecord.class; + } + + /** + * The column + * information_schema.foreign_server_options.foreign_server_catalog. + */ + public final TableField FOREIGN_SERVER_CATALOG = createField(DSL.name("foreign_server_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_server_options.foreign_server_name. + */ + public final TableField FOREIGN_SERVER_NAME = createField(DSL.name("foreign_server_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_server_options.option_name. + */ + public final TableField OPTION_NAME = createField(DSL.name("option_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_server_options.option_value. + */ + public final TableField OPTION_VALUE = createField(DSL.name("option_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private ForeignServerOptions(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ForeignServerOptions(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "foreign_server_options" as SELECT s.foreign_server_catalog, + s.foreign_server_name, + ((pg_options_to_table(s.srvoptions)).option_name)::information_schema.sql_identifier AS option_name, + ((pg_options_to_table(s.srvoptions)).option_value)::information_schema.character_data AS option_value + FROM information_schema._pg_foreign_servers s; + """), where); + } + + /** + * Create an aliased information_schema.foreign_server_options + * table reference + */ + public ForeignServerOptions(String alias) { + this(DSL.name(alias), FOREIGN_SERVER_OPTIONS); + } + + /** + * Create an aliased information_schema.foreign_server_options + * table reference + */ + public ForeignServerOptions(Name alias) { + this(alias, FOREIGN_SERVER_OPTIONS); + } + + /** + * Create a information_schema.foreign_server_options table + * reference + */ + public ForeignServerOptions() { + this(DSL.name("foreign_server_options"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ForeignServerOptions as(String alias) { + return new ForeignServerOptions(DSL.name(alias), this); + } + + @Override + public ForeignServerOptions as(Name alias) { + return new ForeignServerOptions(alias, this); + } + + @Override + public ForeignServerOptions as(Table alias) { + return new ForeignServerOptions(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ForeignServerOptions rename(String name) { + return new ForeignServerOptions(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ForeignServerOptions rename(Name name) { + return new ForeignServerOptions(name, null); + } + + /** + * Rename this table + */ + @Override + public ForeignServerOptions rename(Table name) { + return new ForeignServerOptions(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServerOptions where(Condition condition) { + return new ForeignServerOptions(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServerOptions where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServerOptions where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServerOptions where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServerOptions where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServerOptions where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServerOptions where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServerOptions where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServerOptions whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServerOptions whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServers.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServers.java new file mode 100644 index 0000000..5e86e7f --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignServers.java @@ -0,0 +1,259 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ForeignServersRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignServers extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.foreign_servers + */ + public static final ForeignServers FOREIGN_SERVERS = new ForeignServers(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ForeignServersRecord.class; + } + + /** + * The column + * information_schema.foreign_servers.foreign_server_catalog. + */ + public final TableField FOREIGN_SERVER_CATALOG = createField(DSL.name("foreign_server_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_servers.foreign_server_name. + */ + public final TableField FOREIGN_SERVER_NAME = createField(DSL.name("foreign_server_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_servers.foreign_data_wrapper_catalog. + */ + public final TableField FOREIGN_DATA_WRAPPER_CATALOG = createField(DSL.name("foreign_data_wrapper_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_servers.foreign_data_wrapper_name. + */ + public final TableField FOREIGN_DATA_WRAPPER_NAME = createField(DSL.name("foreign_data_wrapper_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_servers.foreign_server_type. + */ + public final TableField FOREIGN_SERVER_TYPE = createField(DSL.name("foreign_server_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_servers.foreign_server_version. + */ + public final TableField FOREIGN_SERVER_VERSION = createField(DSL.name("foreign_server_version"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_servers.authorization_identifier. + */ + public final TableField AUTHORIZATION_IDENTIFIER = createField(DSL.name("authorization_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ForeignServers(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ForeignServers(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "foreign_servers" as SELECT _pg_foreign_servers.foreign_server_catalog, + _pg_foreign_servers.foreign_server_name, + _pg_foreign_servers.foreign_data_wrapper_catalog, + _pg_foreign_servers.foreign_data_wrapper_name, + _pg_foreign_servers.foreign_server_type, + _pg_foreign_servers.foreign_server_version, + _pg_foreign_servers.authorization_identifier + FROM information_schema._pg_foreign_servers; + """), where); + } + + /** + * Create an aliased information_schema.foreign_servers table + * reference + */ + public ForeignServers(String alias) { + this(DSL.name(alias), FOREIGN_SERVERS); + } + + /** + * Create an aliased information_schema.foreign_servers table + * reference + */ + public ForeignServers(Name alias) { + this(alias, FOREIGN_SERVERS); + } + + /** + * Create a information_schema.foreign_servers table reference + */ + public ForeignServers() { + this(DSL.name("foreign_servers"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ForeignServers as(String alias) { + return new ForeignServers(DSL.name(alias), this); + } + + @Override + public ForeignServers as(Name alias) { + return new ForeignServers(alias, this); + } + + @Override + public ForeignServers as(Table alias) { + return new ForeignServers(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ForeignServers rename(String name) { + return new ForeignServers(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ForeignServers rename(Name name) { + return new ForeignServers(name, null); + } + + /** + * Rename this table + */ + @Override + public ForeignServers rename(Table name) { + return new ForeignServers(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServers where(Condition condition) { + return new ForeignServers(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServers where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServers where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServers where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServers where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServers where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServers where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignServers where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServers whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignServers whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTableOptions.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTableOptions.java new file mode 100644 index 0000000..c7628af --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTableOptions.java @@ -0,0 +1,247 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ForeignTableOptionsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignTableOptions extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.foreign_table_options + */ + public static final ForeignTableOptions FOREIGN_TABLE_OPTIONS = new ForeignTableOptions(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ForeignTableOptionsRecord.class; + } + + /** + * The column + * information_schema.foreign_table_options.foreign_table_catalog. + */ + public final TableField FOREIGN_TABLE_CATALOG = createField(DSL.name("foreign_table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_table_options.foreign_table_schema. + */ + public final TableField FOREIGN_TABLE_SCHEMA = createField(DSL.name("foreign_table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_table_options.foreign_table_name. + */ + public final TableField FOREIGN_TABLE_NAME = createField(DSL.name("foreign_table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_table_options.option_name. + */ + public final TableField OPTION_NAME = createField(DSL.name("option_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_table_options.option_value. + */ + public final TableField OPTION_VALUE = createField(DSL.name("option_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private ForeignTableOptions(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ForeignTableOptions(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "foreign_table_options" as SELECT t.foreign_table_catalog, + t.foreign_table_schema, + t.foreign_table_name, + ((pg_options_to_table(t.ftoptions)).option_name)::information_schema.sql_identifier AS option_name, + ((pg_options_to_table(t.ftoptions)).option_value)::information_schema.character_data AS option_value + FROM information_schema._pg_foreign_tables t; + """), where); + } + + /** + * Create an aliased information_schema.foreign_table_options + * table reference + */ + public ForeignTableOptions(String alias) { + this(DSL.name(alias), FOREIGN_TABLE_OPTIONS); + } + + /** + * Create an aliased information_schema.foreign_table_options + * table reference + */ + public ForeignTableOptions(Name alias) { + this(alias, FOREIGN_TABLE_OPTIONS); + } + + /** + * Create a information_schema.foreign_table_options table + * reference + */ + public ForeignTableOptions() { + this(DSL.name("foreign_table_options"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ForeignTableOptions as(String alias) { + return new ForeignTableOptions(DSL.name(alias), this); + } + + @Override + public ForeignTableOptions as(Name alias) { + return new ForeignTableOptions(alias, this); + } + + @Override + public ForeignTableOptions as(Table alias) { + return new ForeignTableOptions(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ForeignTableOptions rename(String name) { + return new ForeignTableOptions(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ForeignTableOptions rename(Name name) { + return new ForeignTableOptions(name, null); + } + + /** + * Rename this table + */ + @Override + public ForeignTableOptions rename(Table name) { + return new ForeignTableOptions(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTableOptions where(Condition condition) { + return new ForeignTableOptions(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTableOptions where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTableOptions where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTableOptions where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTableOptions where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTableOptions where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTableOptions where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTableOptions where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTableOptions whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTableOptions whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTables.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTables.java new file mode 100644 index 0000000..f8d5268 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ForeignTables.java @@ -0,0 +1,245 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ForeignTablesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignTables extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.foreign_tables + */ + public static final ForeignTables FOREIGN_TABLES = new ForeignTables(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ForeignTablesRecord.class; + } + + /** + * The column + * information_schema.foreign_tables.foreign_table_catalog. + */ + public final TableField FOREIGN_TABLE_CATALOG = createField(DSL.name("foreign_table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_tables.foreign_table_schema. + */ + public final TableField FOREIGN_TABLE_SCHEMA = createField(DSL.name("foreign_table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_tables.foreign_table_name. + */ + public final TableField FOREIGN_TABLE_NAME = createField(DSL.name("foreign_table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_tables.foreign_server_catalog. + */ + public final TableField FOREIGN_SERVER_CATALOG = createField(DSL.name("foreign_server_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.foreign_tables.foreign_server_name. + */ + public final TableField FOREIGN_SERVER_NAME = createField(DSL.name("foreign_server_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ForeignTables(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ForeignTables(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "foreign_tables" as SELECT _pg_foreign_tables.foreign_table_catalog, + _pg_foreign_tables.foreign_table_schema, + _pg_foreign_tables.foreign_table_name, + _pg_foreign_tables.foreign_server_catalog, + _pg_foreign_tables.foreign_server_name + FROM information_schema._pg_foreign_tables; + """), where); + } + + /** + * Create an aliased information_schema.foreign_tables table + * reference + */ + public ForeignTables(String alias) { + this(DSL.name(alias), FOREIGN_TABLES); + } + + /** + * Create an aliased information_schema.foreign_tables table + * reference + */ + public ForeignTables(Name alias) { + this(alias, FOREIGN_TABLES); + } + + /** + * Create a information_schema.foreign_tables table reference + */ + public ForeignTables() { + this(DSL.name("foreign_tables"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ForeignTables as(String alias) { + return new ForeignTables(DSL.name(alias), this); + } + + @Override + public ForeignTables as(Name alias) { + return new ForeignTables(alias, this); + } + + @Override + public ForeignTables as(Table alias) { + return new ForeignTables(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ForeignTables rename(String name) { + return new ForeignTables(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ForeignTables rename(Name name) { + return new ForeignTables(name, null); + } + + /** + * Rename this table + */ + @Override + public ForeignTables rename(Table name) { + return new ForeignTables(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTables where(Condition condition) { + return new ForeignTables(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTables where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTables where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTables where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTables where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTables where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTables where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ForeignTables where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTables whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ForeignTables whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/InformationSchemaCatalogName.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/InformationSchemaCatalogName.java new file mode 100644 index 0000000..58d3619 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/InformationSchemaCatalogName.java @@ -0,0 +1,220 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.InformationSchemaCatalogNameRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InformationSchemaCatalogName extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.information_schema_catalog_name + */ + public static final InformationSchemaCatalogName INFORMATION_SCHEMA_CATALOG_NAME = new InformationSchemaCatalogName(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return InformationSchemaCatalogNameRecord.class; + } + + /** + * The column + * information_schema.information_schema_catalog_name.catalog_name. + */ + public final TableField CATALOG_NAME = createField(DSL.name("catalog_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private InformationSchemaCatalogName(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private InformationSchemaCatalogName(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "information_schema_catalog_name" as SELECT (current_database())::information_schema.sql_identifier AS catalog_name; + """), where); + } + + /** + * Create an aliased + * information_schema.information_schema_catalog_name table + * reference + */ + public InformationSchemaCatalogName(String alias) { + this(DSL.name(alias), INFORMATION_SCHEMA_CATALOG_NAME); + } + + /** + * Create an aliased + * information_schema.information_schema_catalog_name table + * reference + */ + public InformationSchemaCatalogName(Name alias) { + this(alias, INFORMATION_SCHEMA_CATALOG_NAME); + } + + /** + * Create a information_schema.information_schema_catalog_name + * table reference + */ + public InformationSchemaCatalogName() { + this(DSL.name("information_schema_catalog_name"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public InformationSchemaCatalogName as(String alias) { + return new InformationSchemaCatalogName(DSL.name(alias), this); + } + + @Override + public InformationSchemaCatalogName as(Name alias) { + return new InformationSchemaCatalogName(alias, this); + } + + @Override + public InformationSchemaCatalogName as(Table alias) { + return new InformationSchemaCatalogName(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public InformationSchemaCatalogName rename(String name) { + return new InformationSchemaCatalogName(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public InformationSchemaCatalogName rename(Name name) { + return new InformationSchemaCatalogName(name, null); + } + + /** + * Rename this table + */ + @Override + public InformationSchemaCatalogName rename(Table name) { + return new InformationSchemaCatalogName(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InformationSchemaCatalogName where(Condition condition) { + return new InformationSchemaCatalogName(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InformationSchemaCatalogName where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InformationSchemaCatalogName where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InformationSchemaCatalogName where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InformationSchemaCatalogName where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InformationSchemaCatalogName where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InformationSchemaCatalogName where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InformationSchemaCatalogName where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InformationSchemaCatalogName whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InformationSchemaCatalogName whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/KeyColumnUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/KeyColumnUsage.java new file mode 100644 index 0000000..5d11afb --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/KeyColumnUsage.java @@ -0,0 +1,293 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.KeyColumnUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class KeyColumnUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.key_column_usage + */ + public static final KeyColumnUsage KEY_COLUMN_USAGE = new KeyColumnUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return KeyColumnUsageRecord.class; + } + + /** + * The column + * information_schema.key_column_usage.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.key_column_usage.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.key_column_usage.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.key_column_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.key_column_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.key_column_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.key_column_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.key_column_usage.ordinal_position. + */ + public final TableField ORDINAL_POSITION = createField(DSL.name("ordinal_position"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.key_column_usage.position_in_unique_constraint. + */ + public final TableField POSITION_IN_UNIQUE_CONSTRAINT = createField(DSL.name("position_in_unique_constraint"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + private KeyColumnUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private KeyColumnUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "key_column_usage" as SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (ss.nc_nspname)::information_schema.sql_identifier AS constraint_schema, + (ss.conname)::information_schema.sql_identifier AS constraint_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (ss.nr_nspname)::information_schema.sql_identifier AS table_schema, + (ss.relname)::information_schema.sql_identifier AS table_name, + (a.attname)::information_schema.sql_identifier AS column_name, + ((ss.x).n)::information_schema.cardinal_number AS ordinal_position, + ( + CASE + WHEN (ss.contype = 'f'::"char") THEN information_schema._pg_index_position(ss.conindid, ss.confkey[(ss.x).n]) + ELSE NULL::integer + END)::information_schema.cardinal_number AS position_in_unique_constraint + FROM pg_attribute a, + ( SELECT r.oid AS roid, + r.relname, + r.relowner, + nc.nspname AS nc_nspname, + nr.nspname AS nr_nspname, + c.oid AS coid, + c.conname, + c.contype, + c.conindid, + c.confkey, + c.confrelid, + information_schema._pg_expandarray(c.conkey) AS x + FROM pg_namespace nr, + pg_class r, + pg_namespace nc, + pg_constraint c + WHERE ((nr.oid = r.relnamespace) AND (r.oid = c.conrelid) AND (nc.oid = c.connamespace) AND (c.contype = ANY (ARRAY['p'::"char", 'u'::"char", 'f'::"char"])) AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) AND (NOT pg_is_other_temp_schema(nr.oid)))) ss + WHERE ((ss.roid = a.attrelid) AND (a.attnum = (ss.x).x) AND (NOT a.attisdropped) AND (pg_has_role(ss.relowner, 'USAGE'::text) OR has_column_privilege(ss.roid, a.attnum, 'SELECT, INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased information_schema.key_column_usage table + * reference + */ + public KeyColumnUsage(String alias) { + this(DSL.name(alias), KEY_COLUMN_USAGE); + } + + /** + * Create an aliased information_schema.key_column_usage table + * reference + */ + public KeyColumnUsage(Name alias) { + this(alias, KEY_COLUMN_USAGE); + } + + /** + * Create a information_schema.key_column_usage table reference + */ + public KeyColumnUsage() { + this(DSL.name("key_column_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public KeyColumnUsage as(String alias) { + return new KeyColumnUsage(DSL.name(alias), this); + } + + @Override + public KeyColumnUsage as(Name alias) { + return new KeyColumnUsage(alias, this); + } + + @Override + public KeyColumnUsage as(Table alias) { + return new KeyColumnUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public KeyColumnUsage rename(String name) { + return new KeyColumnUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public KeyColumnUsage rename(Name name) { + return new KeyColumnUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public KeyColumnUsage rename(Table name) { + return new KeyColumnUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public KeyColumnUsage where(Condition condition) { + return new KeyColumnUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public KeyColumnUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public KeyColumnUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public KeyColumnUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public KeyColumnUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public KeyColumnUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public KeyColumnUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public KeyColumnUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public KeyColumnUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public KeyColumnUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Parameters.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Parameters.java new file mode 100644 index 0000000..b8bc507 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Parameters.java @@ -0,0 +1,438 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ParametersRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Parameters extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.parameters + */ + public static final Parameters PARAMETERS = new Parameters(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ParametersRecord.class; + } + + /** + * The column information_schema.parameters.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.ordinal_position. + */ + public final TableField ORDINAL_POSITION = createField(DSL.name("ordinal_position"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.parameter_mode. + */ + public final TableField PARAMETER_MODE = createField(DSL.name("parameter_mode"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.parameters.is_result. + */ + public final TableField IS_RESULT = createField(DSL.name("is_result"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.parameters.as_locator. + */ + public final TableField AS_LOCATOR = createField(DSL.name("as_locator"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.parameters.parameter_name. + */ + public final TableField PARAMETER_NAME = createField(DSL.name("parameter_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.parameters.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.parameters.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.parameters.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.parameters.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.parameters.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.parameters.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.scope_catalog. + */ + public final TableField SCOPE_CATALOG = createField(DSL.name("scope_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.scope_schema. + */ + public final TableField SCOPE_SCHEMA = createField(DSL.name("scope_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.scope_name. + */ + public final TableField SCOPE_NAME = createField(DSL.name("scope_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.parameters.maximum_cardinality. + */ + public final TableField MAXIMUM_CARDINALITY = createField(DSL.name("maximum_cardinality"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.parameters.parameter_default. + */ + public final TableField PARAMETER_DEFAULT = createField(DSL.name("parameter_default"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private Parameters(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Parameters(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "parameters" as SELECT (current_database())::information_schema.sql_identifier AS specific_catalog, + (ss.n_nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(ss.proname, ss.p_oid))::information_schema.sql_identifier AS specific_name, + ((ss.x).n)::information_schema.cardinal_number AS ordinal_position, + ( + CASE + WHEN (ss.proargmodes IS NULL) THEN 'IN'::text + WHEN (ss.proargmodes[(ss.x).n] = 'i'::"char") THEN 'IN'::text + WHEN (ss.proargmodes[(ss.x).n] = 'o'::"char") THEN 'OUT'::text + WHEN (ss.proargmodes[(ss.x).n] = 'b'::"char") THEN 'INOUT'::text + WHEN (ss.proargmodes[(ss.x).n] = 'v'::"char") THEN 'IN'::text + WHEN (ss.proargmodes[(ss.x).n] = 't'::"char") THEN 'OUT'::text + ELSE NULL::text + END)::information_schema.character_data AS parameter_mode, + ('NO'::character varying)::information_schema.yes_or_no AS is_result, + ('NO'::character varying)::information_schema.yes_or_no AS as_locator, + (NULLIF(ss.proargnames[(ss.x).n], ''::text))::information_schema.sql_identifier AS parameter_name, + ( + CASE + WHEN ((t.typelem <> (0)::oid) AND (t.typlen = '-1'::integer)) THEN 'ARRAY'::text + WHEN (nt.nspname = 'pg_catalog'::name) THEN format_type(t.oid, NULL::integer) + ELSE 'USER-DEFINED'::text + END)::information_schema.character_data AS data_type, + (NULL::integer)::information_schema.cardinal_number AS character_maximum_length, + (NULL::integer)::information_schema.cardinal_number AS character_octet_length, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + (NULL::name)::information_schema.sql_identifier AS collation_catalog, + (NULL::name)::information_schema.sql_identifier AS collation_schema, + (NULL::name)::information_schema.sql_identifier AS collation_name, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision_radix, + (NULL::integer)::information_schema.cardinal_number AS numeric_scale, + (NULL::integer)::information_schema.cardinal_number AS datetime_precision, + (NULL::character varying)::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + (current_database())::information_schema.sql_identifier AS udt_catalog, + (nt.nspname)::information_schema.sql_identifier AS udt_schema, + (t.typname)::information_schema.sql_identifier AS udt_name, + (NULL::name)::information_schema.sql_identifier AS scope_catalog, + (NULL::name)::information_schema.sql_identifier AS scope_schema, + (NULL::name)::information_schema.sql_identifier AS scope_name, + (NULL::integer)::information_schema.cardinal_number AS maximum_cardinality, + ((ss.x).n)::information_schema.sql_identifier AS dtd_identifier, + ( + CASE + WHEN pg_has_role(ss.proowner, 'USAGE'::text) THEN pg_get_function_arg_default(ss.p_oid, (ss.x).n) + ELSE NULL::text + END)::information_schema.character_data AS parameter_default + FROM pg_type t, + pg_namespace nt, + ( SELECT n.nspname AS n_nspname, + p.proname, + p.oid AS p_oid, + p.proowner, + p.proargnames, + p.proargmodes, + information_schema._pg_expandarray(COALESCE(p.proallargtypes, (p.proargtypes)::oid[])) AS x + FROM pg_namespace n, + pg_proc p + WHERE ((n.oid = p.pronamespace) AND (pg_has_role(p.proowner, 'USAGE'::text) OR has_function_privilege(p.oid, 'EXECUTE'::text)))) ss + WHERE ((t.oid = (ss.x).x) AND (t.typnamespace = nt.oid)); + """), where); + } + + /** + * Create an aliased information_schema.parameters table + * reference + */ + public Parameters(String alias) { + this(DSL.name(alias), PARAMETERS); + } + + /** + * Create an aliased information_schema.parameters table + * reference + */ + public Parameters(Name alias) { + this(alias, PARAMETERS); + } + + /** + * Create a information_schema.parameters table reference + */ + public Parameters() { + this(DSL.name("parameters"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Parameters as(String alias) { + return new Parameters(DSL.name(alias), this); + } + + @Override + public Parameters as(Name alias) { + return new Parameters(alias, this); + } + + @Override + public Parameters as(Table alias) { + return new Parameters(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Parameters rename(String name) { + return new Parameters(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Parameters rename(Name name) { + return new Parameters(name, null); + } + + /** + * Rename this table + */ + @Override + public Parameters rename(Table name) { + return new Parameters(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Parameters where(Condition condition) { + return new Parameters(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Parameters where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Parameters where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Parameters where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Parameters where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Parameters where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Parameters where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Parameters where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Parameters whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Parameters whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ReferentialConstraints.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ReferentialConstraints.java new file mode 100644 index 0000000..bafda80 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ReferentialConstraints.java @@ -0,0 +1,308 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ReferentialConstraintsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ReferentialConstraints extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.referential_constraints + */ + public static final ReferentialConstraints REFERENTIAL_CONSTRAINTS = new ReferentialConstraints(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ReferentialConstraintsRecord.class; + } + + /** + * The column + * information_schema.referential_constraints.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.unique_constraint_catalog. + */ + public final TableField UNIQUE_CONSTRAINT_CATALOG = createField(DSL.name("unique_constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.unique_constraint_schema. + */ + public final TableField UNIQUE_CONSTRAINT_SCHEMA = createField(DSL.name("unique_constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.unique_constraint_name. + */ + public final TableField UNIQUE_CONSTRAINT_NAME = createField(DSL.name("unique_constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.match_option. + */ + public final TableField MATCH_OPTION = createField(DSL.name("match_option"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.update_rule. + */ + public final TableField UPDATE_RULE = createField(DSL.name("update_rule"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.referential_constraints.delete_rule. + */ + public final TableField DELETE_RULE = createField(DSL.name("delete_rule"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private ReferentialConstraints(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ReferentialConstraints(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "referential_constraints" as SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (ncon.nspname)::information_schema.sql_identifier AS constraint_schema, + (con.conname)::information_schema.sql_identifier AS constraint_name, + ( + CASE + WHEN (npkc.nspname IS NULL) THEN NULL::name + ELSE current_database() + END)::information_schema.sql_identifier AS unique_constraint_catalog, + (npkc.nspname)::information_schema.sql_identifier AS unique_constraint_schema, + (pkc.conname)::information_schema.sql_identifier AS unique_constraint_name, + ( + CASE con.confmatchtype + WHEN 'f'::"char" THEN 'FULL'::text + WHEN 'p'::"char" THEN 'PARTIAL'::text + WHEN 's'::"char" THEN 'NONE'::text + ELSE NULL::text + END)::information_schema.character_data AS match_option, + ( + CASE con.confupdtype + WHEN 'c'::"char" THEN 'CASCADE'::text + WHEN 'n'::"char" THEN 'SET NULL'::text + WHEN 'd'::"char" THEN 'SET DEFAULT'::text + WHEN 'r'::"char" THEN 'RESTRICT'::text + WHEN 'a'::"char" THEN 'NO ACTION'::text + ELSE NULL::text + END)::information_schema.character_data AS update_rule, + ( + CASE con.confdeltype + WHEN 'c'::"char" THEN 'CASCADE'::text + WHEN 'n'::"char" THEN 'SET NULL'::text + WHEN 'd'::"char" THEN 'SET DEFAULT'::text + WHEN 'r'::"char" THEN 'RESTRICT'::text + WHEN 'a'::"char" THEN 'NO ACTION'::text + ELSE NULL::text + END)::information_schema.character_data AS delete_rule + FROM ((((((pg_namespace ncon + JOIN pg_constraint con ON ((ncon.oid = con.connamespace))) + JOIN pg_class c ON (((con.conrelid = c.oid) AND (con.contype = 'f'::"char")))) + LEFT JOIN pg_depend d1 ON (((d1.objid = con.oid) AND (d1.classid = ('pg_constraint'::regclass)::oid) AND (d1.refclassid = ('pg_class'::regclass)::oid) AND (d1.refobjsubid = 0)))) + LEFT JOIN pg_depend d2 ON (((d2.refclassid = ('pg_constraint'::regclass)::oid) AND (d2.classid = ('pg_class'::regclass)::oid) AND (d2.objid = d1.refobjid) AND (d2.objsubid = 0) AND (d2.deptype = 'i'::"char")))) + LEFT JOIN pg_constraint pkc ON (((pkc.oid = d2.refobjid) AND (pkc.contype = ANY (ARRAY['p'::"char", 'u'::"char"])) AND (pkc.conrelid = con.confrelid)))) + LEFT JOIN pg_namespace npkc ON ((pkc.connamespace = npkc.oid))) + WHERE (pg_has_role(c.relowner, 'USAGE'::text) OR has_table_privilege(c.oid, 'INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(c.oid, 'INSERT, UPDATE, REFERENCES'::text)); + """), where); + } + + /** + * Create an aliased information_schema.referential_constraints + * table reference + */ + public ReferentialConstraints(String alias) { + this(DSL.name(alias), REFERENTIAL_CONSTRAINTS); + } + + /** + * Create an aliased information_schema.referential_constraints + * table reference + */ + public ReferentialConstraints(Name alias) { + this(alias, REFERENTIAL_CONSTRAINTS); + } + + /** + * Create a information_schema.referential_constraints table + * reference + */ + public ReferentialConstraints() { + this(DSL.name("referential_constraints"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ReferentialConstraints as(String alias) { + return new ReferentialConstraints(DSL.name(alias), this); + } + + @Override + public ReferentialConstraints as(Name alias) { + return new ReferentialConstraints(alias, this); + } + + @Override + public ReferentialConstraints as(Table alias) { + return new ReferentialConstraints(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ReferentialConstraints rename(String name) { + return new ReferentialConstraints(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ReferentialConstraints rename(Name name) { + return new ReferentialConstraints(name, null); + } + + /** + * Rename this table + */ + @Override + public ReferentialConstraints rename(Table name) { + return new ReferentialConstraints(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ReferentialConstraints where(Condition condition) { + return new ReferentialConstraints(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ReferentialConstraints where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ReferentialConstraints where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ReferentialConstraints where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ReferentialConstraints where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ReferentialConstraints where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ReferentialConstraints where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ReferentialConstraints where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ReferentialConstraints whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ReferentialConstraints whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleColumnGrants.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleColumnGrants.java new file mode 100644 index 0000000..40740b6 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleColumnGrants.java @@ -0,0 +1,268 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoleColumnGrantsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleColumnGrants extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.role_column_grants + */ + public static final RoleColumnGrants ROLE_COLUMN_GRANTS = new RoleColumnGrants(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoleColumnGrantsRecord.class; + } + + /** + * The column information_schema.role_column_grants.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_column_grants.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_column_grants.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_column_grants.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_column_grants.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_column_grants.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_column_grants.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.role_column_grants.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private RoleColumnGrants(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoleColumnGrants(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "role_column_grants" as SELECT column_privileges.grantor, + column_privileges.grantee, + column_privileges.table_catalog, + column_privileges.table_schema, + column_privileges.table_name, + column_privileges.column_name, + column_privileges.privilege_type, + column_privileges.is_grantable + FROM information_schema.column_privileges + WHERE (((column_privileges.grantor)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles)) OR ((column_privileges.grantee)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles))); + """), where); + } + + /** + * Create an aliased information_schema.role_column_grants + * table reference + */ + public RoleColumnGrants(String alias) { + this(DSL.name(alias), ROLE_COLUMN_GRANTS); + } + + /** + * Create an aliased information_schema.role_column_grants + * table reference + */ + public RoleColumnGrants(Name alias) { + this(alias, ROLE_COLUMN_GRANTS); + } + + /** + * Create a information_schema.role_column_grants table + * reference + */ + public RoleColumnGrants() { + this(DSL.name("role_column_grants"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoleColumnGrants as(String alias) { + return new RoleColumnGrants(DSL.name(alias), this); + } + + @Override + public RoleColumnGrants as(Name alias) { + return new RoleColumnGrants(alias, this); + } + + @Override + public RoleColumnGrants as(Table alias) { + return new RoleColumnGrants(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoleColumnGrants rename(String name) { + return new RoleColumnGrants(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoleColumnGrants rename(Name name) { + return new RoleColumnGrants(name, null); + } + + /** + * Rename this table + */ + @Override + public RoleColumnGrants rename(Table name) { + return new RoleColumnGrants(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleColumnGrants where(Condition condition) { + return new RoleColumnGrants(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleColumnGrants where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleColumnGrants where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleColumnGrants where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleColumnGrants where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleColumnGrants where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleColumnGrants where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleColumnGrants where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleColumnGrants whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleColumnGrants whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleRoutineGrants.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleRoutineGrants.java new file mode 100644 index 0000000..d7df3b8 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleRoutineGrants.java @@ -0,0 +1,283 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoleRoutineGrantsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleRoutineGrants extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.role_routine_grants + */ + public static final RoleRoutineGrants ROLE_ROUTINE_GRANTS = new RoleRoutineGrants(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoleRoutineGrantsRecord.class; + } + + /** + * The column information_schema.role_routine_grants.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_routine_grants.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.role_routine_grants.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private RoleRoutineGrants(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoleRoutineGrants(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "role_routine_grants" as SELECT routine_privileges.grantor, + routine_privileges.grantee, + routine_privileges.specific_catalog, + routine_privileges.specific_schema, + routine_privileges.specific_name, + routine_privileges.routine_catalog, + routine_privileges.routine_schema, + routine_privileges.routine_name, + routine_privileges.privilege_type, + routine_privileges.is_grantable + FROM information_schema.routine_privileges + WHERE (((routine_privileges.grantor)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles)) OR ((routine_privileges.grantee)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles))); + """), where); + } + + /** + * Create an aliased information_schema.role_routine_grants + * table reference + */ + public RoleRoutineGrants(String alias) { + this(DSL.name(alias), ROLE_ROUTINE_GRANTS); + } + + /** + * Create an aliased information_schema.role_routine_grants + * table reference + */ + public RoleRoutineGrants(Name alias) { + this(alias, ROLE_ROUTINE_GRANTS); + } + + /** + * Create a information_schema.role_routine_grants table + * reference + */ + public RoleRoutineGrants() { + this(DSL.name("role_routine_grants"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoleRoutineGrants as(String alias) { + return new RoleRoutineGrants(DSL.name(alias), this); + } + + @Override + public RoleRoutineGrants as(Name alias) { + return new RoleRoutineGrants(alias, this); + } + + @Override + public RoleRoutineGrants as(Table alias) { + return new RoleRoutineGrants(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoleRoutineGrants rename(String name) { + return new RoleRoutineGrants(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoleRoutineGrants rename(Name name) { + return new RoleRoutineGrants(name, null); + } + + /** + * Rename this table + */ + @Override + public RoleRoutineGrants rename(Table name) { + return new RoleRoutineGrants(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleRoutineGrants where(Condition condition) { + return new RoleRoutineGrants(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleRoutineGrants where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleRoutineGrants where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleRoutineGrants where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleRoutineGrants where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleRoutineGrants where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleRoutineGrants where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleRoutineGrants where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleRoutineGrants whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleRoutineGrants whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleTableGrants.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleTableGrants.java new file mode 100644 index 0000000..0e593a4 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleTableGrants.java @@ -0,0 +1,268 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoleTableGrantsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleTableGrants extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.role_table_grants + */ + public static final RoleTableGrants ROLE_TABLE_GRANTS = new RoleTableGrants(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoleTableGrantsRecord.class; + } + + /** + * The column information_schema.role_table_grants.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_table_grants.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_table_grants.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_table_grants.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_table_grants.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_table_grants.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.role_table_grants.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.role_table_grants.with_hierarchy. + */ + public final TableField WITH_HIERARCHY = createField(DSL.name("with_hierarchy"), Domains.YES_OR_NO.getDataType(), this, ""); + + private RoleTableGrants(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoleTableGrants(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "role_table_grants" as SELECT table_privileges.grantor, + table_privileges.grantee, + table_privileges.table_catalog, + table_privileges.table_schema, + table_privileges.table_name, + table_privileges.privilege_type, + table_privileges.is_grantable, + table_privileges.with_hierarchy + FROM information_schema.table_privileges + WHERE (((table_privileges.grantor)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles)) OR ((table_privileges.grantee)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles))); + """), where); + } + + /** + * Create an aliased information_schema.role_table_grants table + * reference + */ + public RoleTableGrants(String alias) { + this(DSL.name(alias), ROLE_TABLE_GRANTS); + } + + /** + * Create an aliased information_schema.role_table_grants table + * reference + */ + public RoleTableGrants(Name alias) { + this(alias, ROLE_TABLE_GRANTS); + } + + /** + * Create a information_schema.role_table_grants table + * reference + */ + public RoleTableGrants() { + this(DSL.name("role_table_grants"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoleTableGrants as(String alias) { + return new RoleTableGrants(DSL.name(alias), this); + } + + @Override + public RoleTableGrants as(Name alias) { + return new RoleTableGrants(alias, this); + } + + @Override + public RoleTableGrants as(Table alias) { + return new RoleTableGrants(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoleTableGrants rename(String name) { + return new RoleTableGrants(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoleTableGrants rename(Name name) { + return new RoleTableGrants(name, null); + } + + /** + * Rename this table + */ + @Override + public RoleTableGrants rename(Table name) { + return new RoleTableGrants(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleTableGrants where(Condition condition) { + return new RoleTableGrants(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleTableGrants where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleTableGrants where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleTableGrants where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleTableGrants where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleTableGrants where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleTableGrants where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleTableGrants where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleTableGrants whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleTableGrants whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUdtGrants.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUdtGrants.java new file mode 100644 index 0000000..3e48a94 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUdtGrants.java @@ -0,0 +1,256 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoleUdtGrantsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleUdtGrants extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.role_udt_grants + */ + public static final RoleUdtGrants ROLE_UDT_GRANTS = new RoleUdtGrants(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoleUdtGrantsRecord.class; + } + + /** + * The column information_schema.role_udt_grants.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_udt_grants.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_udt_grants.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_udt_grants.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_udt_grants.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_udt_grants.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.role_udt_grants.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private RoleUdtGrants(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoleUdtGrants(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "role_udt_grants" as SELECT udt_privileges.grantor, + udt_privileges.grantee, + udt_privileges.udt_catalog, + udt_privileges.udt_schema, + udt_privileges.udt_name, + udt_privileges.privilege_type, + udt_privileges.is_grantable + FROM information_schema.udt_privileges + WHERE (((udt_privileges.grantor)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles)) OR ((udt_privileges.grantee)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles))); + """), where); + } + + /** + * Create an aliased information_schema.role_udt_grants table + * reference + */ + public RoleUdtGrants(String alias) { + this(DSL.name(alias), ROLE_UDT_GRANTS); + } + + /** + * Create an aliased information_schema.role_udt_grants table + * reference + */ + public RoleUdtGrants(Name alias) { + this(alias, ROLE_UDT_GRANTS); + } + + /** + * Create a information_schema.role_udt_grants table reference + */ + public RoleUdtGrants() { + this(DSL.name("role_udt_grants"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoleUdtGrants as(String alias) { + return new RoleUdtGrants(DSL.name(alias), this); + } + + @Override + public RoleUdtGrants as(Name alias) { + return new RoleUdtGrants(alias, this); + } + + @Override + public RoleUdtGrants as(Table alias) { + return new RoleUdtGrants(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoleUdtGrants rename(String name) { + return new RoleUdtGrants(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoleUdtGrants rename(Name name) { + return new RoleUdtGrants(name, null); + } + + /** + * Rename this table + */ + @Override + public RoleUdtGrants rename(Table name) { + return new RoleUdtGrants(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUdtGrants where(Condition condition) { + return new RoleUdtGrants(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUdtGrants where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUdtGrants where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUdtGrants where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUdtGrants where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUdtGrants where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUdtGrants where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUdtGrants where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUdtGrants whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUdtGrants whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUsageGrants.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUsageGrants.java new file mode 100644 index 0000000..f992d31 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoleUsageGrants.java @@ -0,0 +1,267 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoleUsageGrantsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleUsageGrants extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.role_usage_grants + */ + public static final RoleUsageGrants ROLE_USAGE_GRANTS = new RoleUsageGrants(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoleUsageGrantsRecord.class; + } + + /** + * The column information_schema.role_usage_grants.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_usage_grants.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_usage_grants.object_catalog. + */ + public final TableField OBJECT_CATALOG = createField(DSL.name("object_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.role_usage_grants.object_schema. + */ + public final TableField OBJECT_SCHEMA = createField(DSL.name("object_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_usage_grants.object_name. + */ + public final TableField OBJECT_NAME = createField(DSL.name("object_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.role_usage_grants.object_type. + */ + public final TableField OBJECT_TYPE = createField(DSL.name("object_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.role_usage_grants.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.role_usage_grants.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private RoleUsageGrants(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoleUsageGrants(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "role_usage_grants" as SELECT usage_privileges.grantor, + usage_privileges.grantee, + usage_privileges.object_catalog, + usage_privileges.object_schema, + usage_privileges.object_name, + usage_privileges.object_type, + usage_privileges.privilege_type, + usage_privileges.is_grantable + FROM information_schema.usage_privileges + WHERE (((usage_privileges.grantor)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles)) OR ((usage_privileges.grantee)::name IN ( SELECT enabled_roles.role_name + FROM information_schema.enabled_roles))); + """), where); + } + + /** + * Create an aliased information_schema.role_usage_grants table + * reference + */ + public RoleUsageGrants(String alias) { + this(DSL.name(alias), ROLE_USAGE_GRANTS); + } + + /** + * Create an aliased information_schema.role_usage_grants table + * reference + */ + public RoleUsageGrants(Name alias) { + this(alias, ROLE_USAGE_GRANTS); + } + + /** + * Create a information_schema.role_usage_grants table + * reference + */ + public RoleUsageGrants() { + this(DSL.name("role_usage_grants"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoleUsageGrants as(String alias) { + return new RoleUsageGrants(DSL.name(alias), this); + } + + @Override + public RoleUsageGrants as(Name alias) { + return new RoleUsageGrants(alias, this); + } + + @Override + public RoleUsageGrants as(Table alias) { + return new RoleUsageGrants(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoleUsageGrants rename(String name) { + return new RoleUsageGrants(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoleUsageGrants rename(Name name) { + return new RoleUsageGrants(name, null); + } + + /** + * Rename this table + */ + @Override + public RoleUsageGrants rename(Table name) { + return new RoleUsageGrants(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUsageGrants where(Condition condition) { + return new RoleUsageGrants(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUsageGrants where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUsageGrants where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUsageGrants where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUsageGrants where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUsageGrants where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUsageGrants where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoleUsageGrants where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUsageGrants whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoleUsageGrants whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineColumnUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineColumnUsage.java new file mode 100644 index 0000000..60f5e8a --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineColumnUsage.java @@ -0,0 +1,288 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoutineColumnUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineColumnUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.routine_column_usage + */ + public static final RoutineColumnUsage ROUTINE_COLUMN_USAGE = new RoutineColumnUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoutineColumnUsageRecord.class; + } + + /** + * The column + * information_schema.routine_column_usage.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_column_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private RoutineColumnUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoutineColumnUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "routine_column_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS specific_catalog, + (np.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name, + (current_database())::information_schema.sql_identifier AS routine_catalog, + (np.nspname)::information_schema.sql_identifier AS routine_schema, + (p.proname)::information_schema.sql_identifier AS routine_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nt.nspname)::information_schema.sql_identifier AS table_schema, + (t.relname)::information_schema.sql_identifier AS table_name, + (a.attname)::information_schema.sql_identifier AS column_name + FROM pg_namespace np, + pg_proc p, + pg_depend d, + pg_class t, + pg_namespace nt, + pg_attribute a + WHERE ((np.oid = p.pronamespace) AND (p.oid = d.objid) AND (d.classid = ('pg_proc'::regclass)::oid) AND (d.refobjid = t.oid) AND (d.refclassid = ('pg_class'::regclass)::oid) AND (t.relnamespace = nt.oid) AND (t.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND (t.oid = a.attrelid) AND (d.refobjsubid = a.attnum) AND pg_has_role(t.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.routine_column_usage + * table reference + */ + public RoutineColumnUsage(String alias) { + this(DSL.name(alias), ROUTINE_COLUMN_USAGE); + } + + /** + * Create an aliased information_schema.routine_column_usage + * table reference + */ + public RoutineColumnUsage(Name alias) { + this(alias, ROUTINE_COLUMN_USAGE); + } + + /** + * Create a information_schema.routine_column_usage table + * reference + */ + public RoutineColumnUsage() { + this(DSL.name("routine_column_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoutineColumnUsage as(String alias) { + return new RoutineColumnUsage(DSL.name(alias), this); + } + + @Override + public RoutineColumnUsage as(Name alias) { + return new RoutineColumnUsage(alias, this); + } + + @Override + public RoutineColumnUsage as(Table alias) { + return new RoutineColumnUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoutineColumnUsage rename(String name) { + return new RoutineColumnUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoutineColumnUsage rename(Name name) { + return new RoutineColumnUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public RoutineColumnUsage rename(Table name) { + return new RoutineColumnUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineColumnUsage where(Condition condition) { + return new RoutineColumnUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineColumnUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineColumnUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineColumnUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineColumnUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineColumnUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineColumnUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineColumnUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineColumnUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineColumnUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutinePrivileges.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutinePrivileges.java new file mode 100644 index 0000000..14d46c9 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutinePrivileges.java @@ -0,0 +1,301 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoutinePrivilegesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutinePrivileges extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.routine_privileges + */ + public static final RoutinePrivileges ROUTINE_PRIVILEGES = new RoutinePrivileges(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoutinePrivilegesRecord.class; + } + + /** + * The column information_schema.routine_privileges.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routine_privileges.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_privileges.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private RoutinePrivileges(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoutinePrivileges(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "routine_privileges" as SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS specific_catalog, + (n.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name, + (current_database())::information_schema.sql_identifier AS routine_catalog, + (n.nspname)::information_schema.sql_identifier AS routine_schema, + (p.proname)::information_schema.sql_identifier AS routine_name, + ('EXECUTE'::character varying)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, p.proowner, 'USAGE'::text) OR p.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pg_proc.oid, + pg_proc.proname, + pg_proc.proowner, + pg_proc.pronamespace, + (aclexplode(COALESCE(pg_proc.proacl, acldefault('f'::"char", pg_proc.proowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_proc.proacl, acldefault('f'::"char", pg_proc.proowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_proc.proacl, acldefault('f'::"char", pg_proc.proowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_proc.proacl, acldefault('f'::"char", pg_proc.proowner)))).is_grantable AS is_grantable + FROM pg_proc) p(oid, proname, proowner, pronamespace, grantor, grantee, prtype, grantable), + pg_namespace n, + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((p.pronamespace = n.oid) AND (grantee.oid = p.grantee) AND (u_grantor.oid = p.grantor) AND (p.prtype = 'EXECUTE'::text) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))); + """), where); + } + + /** + * Create an aliased information_schema.routine_privileges + * table reference + */ + public RoutinePrivileges(String alias) { + this(DSL.name(alias), ROUTINE_PRIVILEGES); + } + + /** + * Create an aliased information_schema.routine_privileges + * table reference + */ + public RoutinePrivileges(Name alias) { + this(alias, ROUTINE_PRIVILEGES); + } + + /** + * Create a information_schema.routine_privileges table + * reference + */ + public RoutinePrivileges() { + this(DSL.name("routine_privileges"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoutinePrivileges as(String alias) { + return new RoutinePrivileges(DSL.name(alias), this); + } + + @Override + public RoutinePrivileges as(Name alias) { + return new RoutinePrivileges(alias, this); + } + + @Override + public RoutinePrivileges as(Table alias) { + return new RoutinePrivileges(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoutinePrivileges rename(String name) { + return new RoutinePrivileges(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoutinePrivileges rename(Name name) { + return new RoutinePrivileges(name, null); + } + + /** + * Rename this table + */ + @Override + public RoutinePrivileges rename(Table name) { + return new RoutinePrivileges(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutinePrivileges where(Condition condition) { + return new RoutinePrivileges(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutinePrivileges where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutinePrivileges where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutinePrivileges where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutinePrivileges where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutinePrivileges where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutinePrivileges where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutinePrivileges where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutinePrivileges whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutinePrivileges whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineRoutineUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineRoutineUsage.java new file mode 100644 index 0000000..11b2227 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineRoutineUsage.java @@ -0,0 +1,259 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoutineRoutineUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineRoutineUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.routine_routine_usage + */ + public static final RoutineRoutineUsage ROUTINE_ROUTINE_USAGE = new RoutineRoutineUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoutineRoutineUsageRecord.class; + } + + /** + * The column + * information_schema.routine_routine_usage.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_routine_usage.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_routine_usage.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_routine_usage.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_routine_usage.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_routine_usage.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private RoutineRoutineUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoutineRoutineUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "routine_routine_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS specific_catalog, + (np.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name, + (current_database())::information_schema.sql_identifier AS routine_catalog, + (np1.nspname)::information_schema.sql_identifier AS routine_schema, + (nameconcatoid(p1.proname, p1.oid))::information_schema.sql_identifier AS routine_name + FROM pg_namespace np, + pg_proc p, + pg_depend d, + pg_proc p1, + pg_namespace np1 + WHERE ((np.oid = p.pronamespace) AND (p.oid = d.objid) AND (d.classid = ('pg_proc'::regclass)::oid) AND (d.refobjid = p1.oid) AND (d.refclassid = ('pg_proc'::regclass)::oid) AND (p1.pronamespace = np1.oid) AND (p.prokind = ANY (ARRAY['f'::"char", 'p'::"char"])) AND (p1.prokind = ANY (ARRAY['f'::"char", 'p'::"char"])) AND pg_has_role(p1.proowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.routine_routine_usage + * table reference + */ + public RoutineRoutineUsage(String alias) { + this(DSL.name(alias), ROUTINE_ROUTINE_USAGE); + } + + /** + * Create an aliased information_schema.routine_routine_usage + * table reference + */ + public RoutineRoutineUsage(Name alias) { + this(alias, ROUTINE_ROUTINE_USAGE); + } + + /** + * Create a information_schema.routine_routine_usage table + * reference + */ + public RoutineRoutineUsage() { + this(DSL.name("routine_routine_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoutineRoutineUsage as(String alias) { + return new RoutineRoutineUsage(DSL.name(alias), this); + } + + @Override + public RoutineRoutineUsage as(Name alias) { + return new RoutineRoutineUsage(alias, this); + } + + @Override + public RoutineRoutineUsage as(Table alias) { + return new RoutineRoutineUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoutineRoutineUsage rename(String name) { + return new RoutineRoutineUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoutineRoutineUsage rename(Name name) { + return new RoutineRoutineUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public RoutineRoutineUsage rename(Table name) { + return new RoutineRoutineUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineRoutineUsage where(Condition condition) { + return new RoutineRoutineUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineRoutineUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineRoutineUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineRoutineUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineRoutineUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineRoutineUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineRoutineUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineRoutineUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineRoutineUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineRoutineUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineSequenceUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineSequenceUsage.java new file mode 100644 index 0000000..064f4de --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineSequenceUsage.java @@ -0,0 +1,280 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoutineSequenceUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineSequenceUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.routine_sequence_usage + */ + public static final RoutineSequenceUsage ROUTINE_SEQUENCE_USAGE = new RoutineSequenceUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoutineSequenceUsageRecord.class; + } + + /** + * The column + * information_schema.routine_sequence_usage.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.sequence_catalog. + */ + public final TableField SEQUENCE_CATALOG = createField(DSL.name("sequence_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.sequence_schema. + */ + public final TableField SEQUENCE_SCHEMA = createField(DSL.name("sequence_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_sequence_usage.sequence_name. + */ + public final TableField SEQUENCE_NAME = createField(DSL.name("sequence_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private RoutineSequenceUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoutineSequenceUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "routine_sequence_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS specific_catalog, + (np.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name, + (current_database())::information_schema.sql_identifier AS routine_catalog, + (np.nspname)::information_schema.sql_identifier AS routine_schema, + (p.proname)::information_schema.sql_identifier AS routine_name, + (current_database())::information_schema.sql_identifier AS sequence_catalog, + (ns.nspname)::information_schema.sql_identifier AS sequence_schema, + (s.relname)::information_schema.sql_identifier AS sequence_name + FROM pg_namespace np, + pg_proc p, + pg_depend d, + pg_class s, + pg_namespace ns + WHERE ((np.oid = p.pronamespace) AND (p.oid = d.objid) AND (d.classid = ('pg_proc'::regclass)::oid) AND (d.refobjid = s.oid) AND (d.refclassid = ('pg_class'::regclass)::oid) AND (s.relnamespace = ns.oid) AND (s.relkind = 'S'::"char") AND pg_has_role(s.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.routine_sequence_usage + * table reference + */ + public RoutineSequenceUsage(String alias) { + this(DSL.name(alias), ROUTINE_SEQUENCE_USAGE); + } + + /** + * Create an aliased information_schema.routine_sequence_usage + * table reference + */ + public RoutineSequenceUsage(Name alias) { + this(alias, ROUTINE_SEQUENCE_USAGE); + } + + /** + * Create a information_schema.routine_sequence_usage table + * reference + */ + public RoutineSequenceUsage() { + this(DSL.name("routine_sequence_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoutineSequenceUsage as(String alias) { + return new RoutineSequenceUsage(DSL.name(alias), this); + } + + @Override + public RoutineSequenceUsage as(Name alias) { + return new RoutineSequenceUsage(alias, this); + } + + @Override + public RoutineSequenceUsage as(Table alias) { + return new RoutineSequenceUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoutineSequenceUsage rename(String name) { + return new RoutineSequenceUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoutineSequenceUsage rename(Name name) { + return new RoutineSequenceUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public RoutineSequenceUsage rename(Table name) { + return new RoutineSequenceUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineSequenceUsage where(Condition condition) { + return new RoutineSequenceUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineSequenceUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineSequenceUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineSequenceUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineSequenceUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineSequenceUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineSequenceUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineSequenceUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineSequenceUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineSequenceUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineTableUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineTableUsage.java new file mode 100644 index 0000000..d283cbe --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/RoutineTableUsage.java @@ -0,0 +1,280 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoutineTableUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineTableUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.routine_table_usage + */ + public static final RoutineTableUsage ROUTINE_TABLE_USAGE = new RoutineTableUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoutineTableUsageRecord.class; + } + + /** + * The column + * information_schema.routine_table_usage.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routine_table_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private RoutineTableUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RoutineTableUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "routine_table_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS specific_catalog, + (np.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name, + (current_database())::information_schema.sql_identifier AS routine_catalog, + (np.nspname)::information_schema.sql_identifier AS routine_schema, + (p.proname)::information_schema.sql_identifier AS routine_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nt.nspname)::information_schema.sql_identifier AS table_schema, + (t.relname)::information_schema.sql_identifier AS table_name + FROM pg_namespace np, + pg_proc p, + pg_depend d, + pg_class t, + pg_namespace nt + WHERE ((np.oid = p.pronamespace) AND (p.oid = d.objid) AND (d.classid = ('pg_proc'::regclass)::oid) AND (d.refobjid = t.oid) AND (d.refclassid = ('pg_class'::regclass)::oid) AND (t.relnamespace = nt.oid) AND (t.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND pg_has_role(t.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.routine_table_usage + * table reference + */ + public RoutineTableUsage(String alias) { + this(DSL.name(alias), ROUTINE_TABLE_USAGE); + } + + /** + * Create an aliased information_schema.routine_table_usage + * table reference + */ + public RoutineTableUsage(Name alias) { + this(alias, ROUTINE_TABLE_USAGE); + } + + /** + * Create a information_schema.routine_table_usage table + * reference + */ + public RoutineTableUsage() { + this(DSL.name("routine_table_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public RoutineTableUsage as(String alias) { + return new RoutineTableUsage(DSL.name(alias), this); + } + + @Override + public RoutineTableUsage as(Name alias) { + return new RoutineTableUsage(alias, this); + } + + @Override + public RoutineTableUsage as(Table alias) { + return new RoutineTableUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RoutineTableUsage rename(String name) { + return new RoutineTableUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RoutineTableUsage rename(Name name) { + return new RoutineTableUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public RoutineTableUsage rename(Table name) { + return new RoutineTableUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineTableUsage where(Condition condition) { + return new RoutineTableUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineTableUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineTableUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineTableUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineTableUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineTableUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineTableUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RoutineTableUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineTableUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RoutineTableUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Routines.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Routines.java new file mode 100644 index 0000000..6e491ba --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Routines.java @@ -0,0 +1,788 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.RoutinesRecord; + +import java.sql.Timestamp; +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Routines extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.routines + */ + public static final Routines ROUTINES = new Routines(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RoutinesRecord.class; + } + + /** + * The column information_schema.routines.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.routine_catalog. + */ + public final TableField ROUTINE_CATALOG = createField(DSL.name("routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.routine_schema. + */ + public final TableField ROUTINE_SCHEMA = createField(DSL.name("routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.routine_name. + */ + public final TableField ROUTINE_NAME = createField(DSL.name("routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.routine_type. + */ + public final TableField ROUTINE_TYPE = createField(DSL.name("routine_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.module_catalog. + */ + public final TableField MODULE_CATALOG = createField(DSL.name("module_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.module_schema. + */ + public final TableField MODULE_SCHEMA = createField(DSL.name("module_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.module_name. + */ + public final TableField MODULE_NAME = createField(DSL.name("module_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.routines.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.routines.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.routines.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.routines.type_udt_catalog. + */ + public final TableField TYPE_UDT_CATALOG = createField(DSL.name("type_udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.type_udt_schema. + */ + public final TableField TYPE_UDT_SCHEMA = createField(DSL.name("type_udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.type_udt_name. + */ + public final TableField TYPE_UDT_NAME = createField(DSL.name("type_udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.scope_catalog. + */ + public final TableField SCOPE_CATALOG = createField(DSL.name("scope_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.scope_schema. + */ + public final TableField SCOPE_SCHEMA = createField(DSL.name("scope_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.scope_name. + */ + public final TableField SCOPE_NAME = createField(DSL.name("scope_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.maximum_cardinality. + */ + public final TableField MAXIMUM_CARDINALITY = createField(DSL.name("maximum_cardinality"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.routines.dtd_identifier. + */ + public final TableField DTD_IDENTIFIER = createField(DSL.name("dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.routine_body. + */ + public final TableField ROUTINE_BODY = createField(DSL.name("routine_body"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.routine_definition. + */ + public final TableField ROUTINE_DEFINITION = createField(DSL.name("routine_definition"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.external_name. + */ + public final TableField EXTERNAL_NAME = createField(DSL.name("external_name"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.external_language. + */ + public final TableField EXTERNAL_LANGUAGE = createField(DSL.name("external_language"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.parameter_style. + */ + public final TableField PARAMETER_STYLE = createField(DSL.name("parameter_style"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.is_deterministic. + */ + public final TableField IS_DETERMINISTIC = createField(DSL.name("is_deterministic"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.routines.sql_data_access. + */ + public final TableField SQL_DATA_ACCESS = createField(DSL.name("sql_data_access"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.is_null_call. + */ + public final TableField IS_NULL_CALL = createField(DSL.name("is_null_call"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.routines.sql_path. + */ + public final TableField SQL_PATH = createField(DSL.name("sql_path"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.routines.schema_level_routine. + */ + public final TableField SCHEMA_LEVEL_ROUTINE = createField(DSL.name("schema_level_routine"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.max_dynamic_result_sets. + */ + public final TableField MAX_DYNAMIC_RESULT_SETS = createField(DSL.name("max_dynamic_result_sets"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.routines.is_user_defined_cast. + */ + public final TableField IS_USER_DEFINED_CAST = createField(DSL.name("is_user_defined_cast"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.is_implicitly_invocable. + */ + public final TableField IS_IMPLICITLY_INVOCABLE = createField(DSL.name("is_implicitly_invocable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.routines.security_type. + */ + public final TableField SECURITY_TYPE = createField(DSL.name("security_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.to_sql_specific_catalog. + */ + public final TableField TO_SQL_SPECIFIC_CATALOG = createField(DSL.name("to_sql_specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.to_sql_specific_schema. + */ + public final TableField TO_SQL_SPECIFIC_SCHEMA = createField(DSL.name("to_sql_specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.to_sql_specific_name. + */ + public final TableField TO_SQL_SPECIFIC_NAME = createField(DSL.name("to_sql_specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.routines.as_locator. + */ + public final TableField AS_LOCATOR = createField(DSL.name("as_locator"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.routines.created. + */ + public final TableField CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0), this, ""); + + /** + * The column information_schema.routines.last_altered. + */ + public final TableField LAST_ALTERED = createField(DSL.name("last_altered"), SQLDataType.TIMESTAMP(0), this, ""); + + /** + * The column information_schema.routines.new_savepoint_level. + */ + public final TableField NEW_SAVEPOINT_LEVEL = createField(DSL.name("new_savepoint_level"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.routines.is_udt_dependent. + */ + public final TableField IS_UDT_DEPENDENT = createField(DSL.name("is_udt_dependent"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_from_data_type. + */ + public final TableField RESULT_CAST_FROM_DATA_TYPE = createField(DSL.name("result_cast_from_data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_as_locator. + */ + public final TableField RESULT_CAST_AS_LOCATOR = createField(DSL.name("result_cast_as_locator"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_char_max_length. + */ + public final TableField RESULT_CAST_CHAR_MAX_LENGTH = createField(DSL.name("result_cast_char_max_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_char_octet_length. + */ + public final TableField RESULT_CAST_CHAR_OCTET_LENGTH = createField(DSL.name("result_cast_char_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_char_set_catalog. + */ + public final TableField RESULT_CAST_CHAR_SET_CATALOG = createField(DSL.name("result_cast_char_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_char_set_schema. + */ + public final TableField RESULT_CAST_CHAR_SET_SCHEMA = createField(DSL.name("result_cast_char_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_char_set_name. + */ + public final TableField RESULT_CAST_CHAR_SET_NAME = createField(DSL.name("result_cast_char_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_collation_catalog. + */ + public final TableField RESULT_CAST_COLLATION_CATALOG = createField(DSL.name("result_cast_collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_collation_schema. + */ + public final TableField RESULT_CAST_COLLATION_SCHEMA = createField(DSL.name("result_cast_collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_collation_name. + */ + public final TableField RESULT_CAST_COLLATION_NAME = createField(DSL.name("result_cast_collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_numeric_precision. + */ + public final TableField RESULT_CAST_NUMERIC_PRECISION = createField(DSL.name("result_cast_numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_numeric_precision_radix. + */ + public final TableField RESULT_CAST_NUMERIC_PRECISION_RADIX = createField(DSL.name("result_cast_numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_numeric_scale. + */ + public final TableField RESULT_CAST_NUMERIC_SCALE = createField(DSL.name("result_cast_numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_datetime_precision. + */ + public final TableField RESULT_CAST_DATETIME_PRECISION = createField(DSL.name("result_cast_datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_interval_type. + */ + public final TableField RESULT_CAST_INTERVAL_TYPE = createField(DSL.name("result_cast_interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_interval_precision. + */ + public final TableField RESULT_CAST_INTERVAL_PRECISION = createField(DSL.name("result_cast_interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_type_udt_catalog. + */ + public final TableField RESULT_CAST_TYPE_UDT_CATALOG = createField(DSL.name("result_cast_type_udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_type_udt_schema. + */ + public final TableField RESULT_CAST_TYPE_UDT_SCHEMA = createField(DSL.name("result_cast_type_udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_type_udt_name. + */ + public final TableField RESULT_CAST_TYPE_UDT_NAME = createField(DSL.name("result_cast_type_udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_scope_catalog. + */ + public final TableField RESULT_CAST_SCOPE_CATALOG = createField(DSL.name("result_cast_scope_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_scope_schema. + */ + public final TableField RESULT_CAST_SCOPE_SCHEMA = createField(DSL.name("result_cast_scope_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_scope_name. + */ + public final TableField RESULT_CAST_SCOPE_NAME = createField(DSL.name("result_cast_scope_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_maximum_cardinality. + */ + public final TableField RESULT_CAST_MAXIMUM_CARDINALITY = createField(DSL.name("result_cast_maximum_cardinality"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.routines.result_cast_dtd_identifier. + */ + public final TableField RESULT_CAST_DTD_IDENTIFIER = createField(DSL.name("result_cast_dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private Routines(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Routines(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "routines" as SELECT (current_database())::information_schema.sql_identifier AS specific_catalog, + (n.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name, + (current_database())::information_schema.sql_identifier AS routine_catalog, + (n.nspname)::information_schema.sql_identifier AS routine_schema, + (p.proname)::information_schema.sql_identifier AS routine_name, + ( + CASE p.prokind + WHEN 'f'::"char" THEN 'FUNCTION'::text + WHEN 'p'::"char" THEN 'PROCEDURE'::text + ELSE NULL::text + END)::information_schema.character_data AS routine_type, + (NULL::name)::information_schema.sql_identifier AS module_catalog, + (NULL::name)::information_schema.sql_identifier AS module_schema, + (NULL::name)::information_schema.sql_identifier AS module_name, + (NULL::name)::information_schema.sql_identifier AS udt_catalog, + (NULL::name)::information_schema.sql_identifier AS udt_schema, + (NULL::name)::information_schema.sql_identifier AS udt_name, + ( + CASE + WHEN (p.prokind = 'p'::"char") THEN NULL::text + WHEN ((t.typelem <> (0)::oid) AND (t.typlen = '-1'::integer)) THEN 'ARRAY'::text + WHEN (nt.nspname = 'pg_catalog'::name) THEN format_type(t.oid, NULL::integer) + ELSE 'USER-DEFINED'::text + END)::information_schema.character_data AS data_type, + (NULL::integer)::information_schema.cardinal_number AS character_maximum_length, + (NULL::integer)::information_schema.cardinal_number AS character_octet_length, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + (NULL::name)::information_schema.sql_identifier AS collation_catalog, + (NULL::name)::information_schema.sql_identifier AS collation_schema, + (NULL::name)::information_schema.sql_identifier AS collation_name, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision_radix, + (NULL::integer)::information_schema.cardinal_number AS numeric_scale, + (NULL::integer)::information_schema.cardinal_number AS datetime_precision, + (NULL::character varying)::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + ( + CASE + WHEN (nt.nspname IS NOT NULL) THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS type_udt_catalog, + (nt.nspname)::information_schema.sql_identifier AS type_udt_schema, + (t.typname)::information_schema.sql_identifier AS type_udt_name, + (NULL::name)::information_schema.sql_identifier AS scope_catalog, + (NULL::name)::information_schema.sql_identifier AS scope_schema, + (NULL::name)::information_schema.sql_identifier AS scope_name, + (NULL::integer)::information_schema.cardinal_number AS maximum_cardinality, + ( + CASE + WHEN (p.prokind <> 'p'::"char") THEN 0 + ELSE NULL::integer + END)::information_schema.sql_identifier AS dtd_identifier, + ( + CASE + WHEN (l.lanname = 'sql'::name) THEN 'SQL'::text + ELSE 'EXTERNAL'::text + END)::information_schema.character_data AS routine_body, + ( + CASE + WHEN pg_has_role(p.proowner, 'USAGE'::text) THEN p.prosrc + ELSE NULL::text + END)::information_schema.character_data AS routine_definition, + ( + CASE + WHEN (l.lanname = 'c'::name) THEN p.prosrc + ELSE NULL::text + END)::information_schema.character_data AS external_name, + (upper((l.lanname)::text))::information_schema.character_data AS external_language, + ('GENERAL'::character varying)::information_schema.character_data AS parameter_style, + ( + CASE + WHEN (p.provolatile = 'i'::"char") THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_deterministic, + ('MODIFIES'::character varying)::information_schema.character_data AS sql_data_access, + ( + CASE + WHEN (p.prokind <> 'p'::"char") THEN + CASE + WHEN p.proisstrict THEN 'YES'::text + ELSE 'NO'::text + END + ELSE NULL::text + END)::information_schema.yes_or_no AS is_null_call, + (NULL::character varying)::information_schema.character_data AS sql_path, + ('YES'::character varying)::information_schema.yes_or_no AS schema_level_routine, + (0)::information_schema.cardinal_number AS max_dynamic_result_sets, + (NULL::character varying)::information_schema.yes_or_no AS is_user_defined_cast, + (NULL::character varying)::information_schema.yes_or_no AS is_implicitly_invocable, + ( + CASE + WHEN p.prosecdef THEN 'DEFINER'::text + ELSE 'INVOKER'::text + END)::information_schema.character_data AS security_type, + (NULL::name)::information_schema.sql_identifier AS to_sql_specific_catalog, + (NULL::name)::information_schema.sql_identifier AS to_sql_specific_schema, + (NULL::name)::information_schema.sql_identifier AS to_sql_specific_name, + ('NO'::character varying)::information_schema.yes_or_no AS as_locator, + (NULL::timestamp with time zone)::information_schema.time_stamp AS created, + (NULL::timestamp with time zone)::information_schema.time_stamp AS last_altered, + (NULL::character varying)::information_schema.yes_or_no AS new_savepoint_level, + ('NO'::character varying)::information_schema.yes_or_no AS is_udt_dependent, + (NULL::character varying)::information_schema.character_data AS result_cast_from_data_type, + (NULL::character varying)::information_schema.yes_or_no AS result_cast_as_locator, + (NULL::integer)::information_schema.cardinal_number AS result_cast_char_max_length, + (NULL::integer)::information_schema.cardinal_number AS result_cast_char_octet_length, + (NULL::name)::information_schema.sql_identifier AS result_cast_char_set_catalog, + (NULL::name)::information_schema.sql_identifier AS result_cast_char_set_schema, + (NULL::name)::information_schema.sql_identifier AS result_cast_char_set_name, + (NULL::name)::information_schema.sql_identifier AS result_cast_collation_catalog, + (NULL::name)::information_schema.sql_identifier AS result_cast_collation_schema, + (NULL::name)::information_schema.sql_identifier AS result_cast_collation_name, + (NULL::integer)::information_schema.cardinal_number AS result_cast_numeric_precision, + (NULL::integer)::information_schema.cardinal_number AS result_cast_numeric_precision_radix, + (NULL::integer)::information_schema.cardinal_number AS result_cast_numeric_scale, + (NULL::integer)::information_schema.cardinal_number AS result_cast_datetime_precision, + (NULL::character varying)::information_schema.character_data AS result_cast_interval_type, + (NULL::integer)::information_schema.cardinal_number AS result_cast_interval_precision, + (NULL::name)::information_schema.sql_identifier AS result_cast_type_udt_catalog, + (NULL::name)::information_schema.sql_identifier AS result_cast_type_udt_schema, + (NULL::name)::information_schema.sql_identifier AS result_cast_type_udt_name, + (NULL::name)::information_schema.sql_identifier AS result_cast_scope_catalog, + (NULL::name)::information_schema.sql_identifier AS result_cast_scope_schema, + (NULL::name)::information_schema.sql_identifier AS result_cast_scope_name, + (NULL::integer)::information_schema.cardinal_number AS result_cast_maximum_cardinality, + (NULL::name)::information_schema.sql_identifier AS result_cast_dtd_identifier + FROM (((pg_namespace n + JOIN pg_proc p ON ((n.oid = p.pronamespace))) + JOIN pg_language l ON ((p.prolang = l.oid))) + LEFT JOIN (pg_type t + JOIN pg_namespace nt ON ((t.typnamespace = nt.oid))) ON (((p.prorettype = t.oid) AND (p.prokind <> 'p'::"char")))) + WHERE (pg_has_role(p.proowner, 'USAGE'::text) OR has_function_privilege(p.oid, 'EXECUTE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.routines table + * reference + */ + public Routines(String alias) { + this(DSL.name(alias), ROUTINES); + } + + /** + * Create an aliased information_schema.routines table + * reference + */ + public Routines(Name alias) { + this(alias, ROUTINES); + } + + /** + * Create a information_schema.routines table reference + */ + public Routines() { + this(DSL.name("routines"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Routines as(String alias) { + return new Routines(DSL.name(alias), this); + } + + @Override + public Routines as(Name alias) { + return new Routines(alias, this); + } + + @Override + public Routines as(Table alias) { + return new Routines(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Routines rename(String name) { + return new Routines(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Routines rename(Name name) { + return new Routines(name, null); + } + + /** + * Rename this table + */ + @Override + public Routines rename(Table name) { + return new Routines(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Routines where(Condition condition) { + return new Routines(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Routines where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Routines where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Routines where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Routines where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Routines where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Routines where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Routines where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Routines whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Routines whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Schemata.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Schemata.java new file mode 100644 index 0000000..e041636 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Schemata.java @@ -0,0 +1,257 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.SchemataRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Schemata extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.schemata + */ + public static final Schemata SCHEMATA = new Schemata(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return SchemataRecord.class; + } + + /** + * The column information_schema.schemata.catalog_name. + */ + public final TableField CATALOG_NAME = createField(DSL.name("catalog_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.schemata.schema_name. + */ + public final TableField SCHEMA_NAME = createField(DSL.name("schema_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.schemata.schema_owner. + */ + public final TableField SCHEMA_OWNER = createField(DSL.name("schema_owner"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.schemata.default_character_set_catalog. + */ + public final TableField DEFAULT_CHARACTER_SET_CATALOG = createField(DSL.name("default_character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.schemata.default_character_set_schema. + */ + public final TableField DEFAULT_CHARACTER_SET_SCHEMA = createField(DSL.name("default_character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.schemata.default_character_set_name. + */ + public final TableField DEFAULT_CHARACTER_SET_NAME = createField(DSL.name("default_character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.schemata.sql_path. + */ + public final TableField SQL_PATH = createField(DSL.name("sql_path"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private Schemata(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Schemata(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "schemata" as SELECT (current_database())::information_schema.sql_identifier AS catalog_name, + (n.nspname)::information_schema.sql_identifier AS schema_name, + (u.rolname)::information_schema.sql_identifier AS schema_owner, + (NULL::name)::information_schema.sql_identifier AS default_character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS default_character_set_schema, + (NULL::name)::information_schema.sql_identifier AS default_character_set_name, + (NULL::character varying)::information_schema.character_data AS sql_path + FROM pg_namespace n, + pg_authid u + WHERE ((n.nspowner = u.oid) AND (pg_has_role(n.nspowner, 'USAGE'::text) OR has_schema_privilege(n.oid, 'CREATE, USAGE'::text))); + """), where); + } + + /** + * Create an aliased information_schema.schemata table + * reference + */ + public Schemata(String alias) { + this(DSL.name(alias), SCHEMATA); + } + + /** + * Create an aliased information_schema.schemata table + * reference + */ + public Schemata(Name alias) { + this(alias, SCHEMATA); + } + + /** + * Create a information_schema.schemata table reference + */ + public Schemata() { + this(DSL.name("schemata"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Schemata as(String alias) { + return new Schemata(DSL.name(alias), this); + } + + @Override + public Schemata as(Name alias) { + return new Schemata(alias, this); + } + + @Override + public Schemata as(Table alias) { + return new Schemata(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Schemata rename(String name) { + return new Schemata(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Schemata rename(Name name) { + return new Schemata(name, null); + } + + /** + * Rename this table + */ + @Override + public Schemata rename(Table name) { + return new Schemata(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Schemata where(Condition condition) { + return new Schemata(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Schemata where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Schemata where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Schemata where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Schemata where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Schemata where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Schemata where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Schemata where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Schemata whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Schemata whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Sequences.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Sequences.java new file mode 100644 index 0000000..86c9292 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Sequences.java @@ -0,0 +1,292 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.SequencesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Sequences extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.sequences + */ + public static final Sequences SEQUENCES = new Sequences(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return SequencesRecord.class; + } + + /** + * The column information_schema.sequences.sequence_catalog. + */ + public final TableField SEQUENCE_CATALOG = createField(DSL.name("sequence_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.sequences.sequence_schema. + */ + public final TableField SEQUENCE_SCHEMA = createField(DSL.name("sequence_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.sequences.sequence_name. + */ + public final TableField SEQUENCE_NAME = createField(DSL.name("sequence_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.sequences.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sequences.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.sequences.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.sequences.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.sequences.start_value. + */ + public final TableField START_VALUE = createField(DSL.name("start_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sequences.minimum_value. + */ + public final TableField MINIMUM_VALUE = createField(DSL.name("minimum_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sequences.maximum_value. + */ + public final TableField MAXIMUM_VALUE = createField(DSL.name("maximum_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sequences.increment. + */ + public final TableField INCREMENT = createField(DSL.name("increment"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sequences.cycle_option. + */ + public final TableField CYCLE_OPTION = createField(DSL.name("cycle_option"), Domains.YES_OR_NO.getDataType(), this, ""); + + private Sequences(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Sequences(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "sequences" as SELECT (current_database())::information_schema.sql_identifier AS sequence_catalog, + (nc.nspname)::information_schema.sql_identifier AS sequence_schema, + (c.relname)::information_schema.sql_identifier AS sequence_name, + (format_type(s.seqtypid, NULL::integer))::information_schema.character_data AS data_type, + (information_schema._pg_numeric_precision(s.seqtypid, '-1'::integer))::information_schema.cardinal_number AS numeric_precision, + (2)::information_schema.cardinal_number AS numeric_precision_radix, + (0)::information_schema.cardinal_number AS numeric_scale, + (s.seqstart)::information_schema.character_data AS start_value, + (s.seqmin)::information_schema.character_data AS minimum_value, + (s.seqmax)::information_schema.character_data AS maximum_value, + (s.seqincrement)::information_schema.character_data AS increment, + ( + CASE + WHEN s.seqcycle THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS cycle_option + FROM pg_namespace nc, + pg_class c, + pg_sequence s + WHERE ((c.relnamespace = nc.oid) AND (c.relkind = 'S'::"char") AND (NOT (EXISTS ( SELECT 1 + FROM pg_depend + WHERE ((pg_depend.classid = ('pg_class'::regclass)::oid) AND (pg_depend.objid = c.oid) AND (pg_depend.deptype = 'i'::"char"))))) AND (NOT pg_is_other_temp_schema(nc.oid)) AND (c.oid = s.seqrelid) AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_sequence_privilege(c.oid, 'SELECT, UPDATE, USAGE'::text))); + """), where); + } + + /** + * Create an aliased information_schema.sequences table + * reference + */ + public Sequences(String alias) { + this(DSL.name(alias), SEQUENCES); + } + + /** + * Create an aliased information_schema.sequences table + * reference + */ + public Sequences(Name alias) { + this(alias, SEQUENCES); + } + + /** + * Create a information_schema.sequences table reference + */ + public Sequences() { + this(DSL.name("sequences"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Sequences as(String alias) { + return new Sequences(DSL.name(alias), this); + } + + @Override + public Sequences as(Name alias) { + return new Sequences(alias, this); + } + + @Override + public Sequences as(Table alias) { + return new Sequences(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Sequences rename(String name) { + return new Sequences(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Sequences rename(Name name) { + return new Sequences(name, null); + } + + /** + * Rename this table + */ + @Override + public Sequences rename(Table name) { + return new Sequences(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Sequences where(Condition condition) { + return new Sequences(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Sequences where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Sequences where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Sequences where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Sequences where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Sequences where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Sequences where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Sequences where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Sequences whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Sequences whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlFeatures.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlFeatures.java new file mode 100644 index 0000000..15c5de2 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlFeatures.java @@ -0,0 +1,243 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.SqlFeaturesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SqlFeatures extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.sql_features + */ + public static final SqlFeatures SQL_FEATURES = new SqlFeatures(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return SqlFeaturesRecord.class; + } + + /** + * The column information_schema.sql_features.feature_id. + */ + public final TableField FEATURE_ID = createField(DSL.name("feature_id"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sql_features.feature_name. + */ + public final TableField FEATURE_NAME = createField(DSL.name("feature_name"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sql_features.sub_feature_id. + */ + public final TableField SUB_FEATURE_ID = createField(DSL.name("sub_feature_id"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sql_features.sub_feature_name. + */ + public final TableField SUB_FEATURE_NAME = createField(DSL.name("sub_feature_name"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sql_features.is_supported. + */ + public final TableField IS_SUPPORTED = createField(DSL.name("is_supported"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.sql_features.is_verified_by. + */ + public final TableField IS_VERIFIED_BY = createField(DSL.name("is_verified_by"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sql_features.comments. + */ + public final TableField COMMENTS = createField(DSL.name("comments"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private SqlFeatures(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private SqlFeatures(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); + } + + /** + * Create an aliased information_schema.sql_features table + * reference + */ + public SqlFeatures(String alias) { + this(DSL.name(alias), SQL_FEATURES); + } + + /** + * Create an aliased information_schema.sql_features table + * reference + */ + public SqlFeatures(Name alias) { + this(alias, SQL_FEATURES); + } + + /** + * Create a information_schema.sql_features table reference + */ + public SqlFeatures() { + this(DSL.name("sql_features"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public SqlFeatures as(String alias) { + return new SqlFeatures(DSL.name(alias), this); + } + + @Override + public SqlFeatures as(Name alias) { + return new SqlFeatures(alias, this); + } + + @Override + public SqlFeatures as(Table alias) { + return new SqlFeatures(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public SqlFeatures rename(String name) { + return new SqlFeatures(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public SqlFeatures rename(Name name) { + return new SqlFeatures(name, null); + } + + /** + * Rename this table + */ + @Override + public SqlFeatures rename(Table name) { + return new SqlFeatures(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlFeatures where(Condition condition) { + return new SqlFeatures(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlFeatures where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlFeatures where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlFeatures where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlFeatures where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlFeatures where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlFeatures where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlFeatures where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlFeatures whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlFeatures whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlImplementationInfo.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlImplementationInfo.java new file mode 100644 index 0000000..9e0610e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlImplementationInfo.java @@ -0,0 +1,240 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.SqlImplementationInfoRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SqlImplementationInfo extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.sql_implementation_info + */ + public static final SqlImplementationInfo SQL_IMPLEMENTATION_INFO = new SqlImplementationInfo(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return SqlImplementationInfoRecord.class; + } + + /** + * The column + * information_schema.sql_implementation_info.implementation_info_id. + */ + public final TableField IMPLEMENTATION_INFO_ID = createField(DSL.name("implementation_info_id"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.sql_implementation_info.implementation_info_name. + */ + public final TableField IMPLEMENTATION_INFO_NAME = createField(DSL.name("implementation_info_name"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.sql_implementation_info.integer_value. + */ + public final TableField INTEGER_VALUE = createField(DSL.name("integer_value"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.sql_implementation_info.character_value. + */ + public final TableField CHARACTER_VALUE = createField(DSL.name("character_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.sql_implementation_info.comments. + */ + public final TableField COMMENTS = createField(DSL.name("comments"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private SqlImplementationInfo(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private SqlImplementationInfo(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); + } + + /** + * Create an aliased information_schema.sql_implementation_info + * table reference + */ + public SqlImplementationInfo(String alias) { + this(DSL.name(alias), SQL_IMPLEMENTATION_INFO); + } + + /** + * Create an aliased information_schema.sql_implementation_info + * table reference + */ + public SqlImplementationInfo(Name alias) { + this(alias, SQL_IMPLEMENTATION_INFO); + } + + /** + * Create a information_schema.sql_implementation_info table + * reference + */ + public SqlImplementationInfo() { + this(DSL.name("sql_implementation_info"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public SqlImplementationInfo as(String alias) { + return new SqlImplementationInfo(DSL.name(alias), this); + } + + @Override + public SqlImplementationInfo as(Name alias) { + return new SqlImplementationInfo(alias, this); + } + + @Override + public SqlImplementationInfo as(Table alias) { + return new SqlImplementationInfo(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public SqlImplementationInfo rename(String name) { + return new SqlImplementationInfo(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public SqlImplementationInfo rename(Name name) { + return new SqlImplementationInfo(name, null); + } + + /** + * Rename this table + */ + @Override + public SqlImplementationInfo rename(Table name) { + return new SqlImplementationInfo(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlImplementationInfo where(Condition condition) { + return new SqlImplementationInfo(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlImplementationInfo where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlImplementationInfo where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlImplementationInfo where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlImplementationInfo where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlImplementationInfo where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlImplementationInfo where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlImplementationInfo where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlImplementationInfo whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlImplementationInfo whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlSizing.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlSizing.java new file mode 100644 index 0000000..ea61855 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/SqlSizing.java @@ -0,0 +1,228 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.SqlSizingRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SqlSizing extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.sql_sizing + */ + public static final SqlSizing SQL_SIZING = new SqlSizing(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return SqlSizingRecord.class; + } + + /** + * The column information_schema.sql_sizing.sizing_id. + */ + public final TableField SIZING_ID = createField(DSL.name("sizing_id"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.sql_sizing.sizing_name. + */ + public final TableField SIZING_NAME = createField(DSL.name("sizing_name"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.sql_sizing.supported_value. + */ + public final TableField SUPPORTED_VALUE = createField(DSL.name("supported_value"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.sql_sizing.comments. + */ + public final TableField COMMENTS = createField(DSL.name("comments"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private SqlSizing(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private SqlSizing(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); + } + + /** + * Create an aliased information_schema.sql_sizing table + * reference + */ + public SqlSizing(String alias) { + this(DSL.name(alias), SQL_SIZING); + } + + /** + * Create an aliased information_schema.sql_sizing table + * reference + */ + public SqlSizing(Name alias) { + this(alias, SQL_SIZING); + } + + /** + * Create a information_schema.sql_sizing table reference + */ + public SqlSizing() { + this(DSL.name("sql_sizing"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public SqlSizing as(String alias) { + return new SqlSizing(DSL.name(alias), this); + } + + @Override + public SqlSizing as(Name alias) { + return new SqlSizing(alias, this); + } + + @Override + public SqlSizing as(Table alias) { + return new SqlSizing(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public SqlSizing rename(String name) { + return new SqlSizing(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public SqlSizing rename(Name name) { + return new SqlSizing(name, null); + } + + /** + * Rename this table + */ + @Override + public SqlSizing rename(Table name) { + return new SqlSizing(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlSizing where(Condition condition) { + return new SqlSizing(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlSizing where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlSizing where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlSizing where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlSizing where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlSizing where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlSizing where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public SqlSizing where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlSizing whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public SqlSizing whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TableConstraints.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TableConstraints.java new file mode 100644 index 0000000..ce3b6da --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TableConstraints.java @@ -0,0 +1,332 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.TableConstraintsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TableConstraints extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.table_constraints + */ + public static final TableConstraints TABLE_CONSTRAINTS = new TableConstraints(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return TableConstraintsRecord.class; + } + + /** + * The column + * information_schema.table_constraints.constraint_catalog. + */ + public final TableField CONSTRAINT_CATALOG = createField(DSL.name("constraint_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.constraint_schema. + */ + public final TableField CONSTRAINT_SCHEMA = createField(DSL.name("constraint_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.constraint_name. + */ + public final TableField CONSTRAINT_NAME = createField(DSL.name("constraint_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.table_constraints.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.constraint_type. + */ + public final TableField CONSTRAINT_TYPE = createField(DSL.name("constraint_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.is_deferrable. + */ + public final TableField IS_DEFERRABLE = createField(DSL.name("is_deferrable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.initially_deferred. + */ + public final TableField INITIALLY_DEFERRED = createField(DSL.name("initially_deferred"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.table_constraints.enforced. + */ + public final TableField ENFORCED = createField(DSL.name("enforced"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.table_constraints.nulls_distinct. + */ + public final TableField NULLS_DISTINCT = createField(DSL.name("nulls_distinct"), Domains.YES_OR_NO.getDataType(), this, ""); + + private TableConstraints(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private TableConstraints(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "table_constraints" as SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (nc.nspname)::information_schema.sql_identifier AS constraint_schema, + (c.conname)::information_schema.sql_identifier AS constraint_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nr.nspname)::information_schema.sql_identifier AS table_schema, + (r.relname)::information_schema.sql_identifier AS table_name, + ( + CASE c.contype + WHEN 'c'::"char" THEN 'CHECK'::text + WHEN 'f'::"char" THEN 'FOREIGN KEY'::text + WHEN 'p'::"char" THEN 'PRIMARY KEY'::text + WHEN 'u'::"char" THEN 'UNIQUE'::text + ELSE NULL::text + END)::information_schema.character_data AS constraint_type, + ( + CASE + WHEN c.condeferrable THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_deferrable, + ( + CASE + WHEN c.condeferred THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS initially_deferred, + ('YES'::character varying)::information_schema.yes_or_no AS enforced, + ( + CASE + WHEN (c.contype = 'u'::"char") THEN + CASE + WHEN ( SELECT (NOT pg_index.indnullsnotdistinct) + FROM pg_index + WHERE (pg_index.indexrelid = c.conindid)) THEN 'YES'::text + ELSE 'NO'::text + END + ELSE NULL::text + END)::information_schema.yes_or_no AS nulls_distinct + FROM pg_namespace nc, + pg_namespace nr, + pg_constraint c, + pg_class r + WHERE ((nc.oid = c.connamespace) AND (nr.oid = r.relnamespace) AND (c.conrelid = r.oid) AND (c.contype <> ALL (ARRAY['t'::"char", 'x'::"char"])) AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) AND (NOT pg_is_other_temp_schema(nr.oid)) AND (pg_has_role(r.relowner, 'USAGE'::text) OR has_table_privilege(r.oid, 'INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(r.oid, 'INSERT, UPDATE, REFERENCES'::text))) + UNION ALL + SELECT (current_database())::information_schema.sql_identifier AS constraint_catalog, + (nr.nspname)::information_schema.sql_identifier AS constraint_schema, + (((((((nr.oid)::text || '_'::text) || (r.oid)::text) || '_'::text) || (a.attnum)::text) || '_not_null'::text))::information_schema.sql_identifier AS constraint_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nr.nspname)::information_schema.sql_identifier AS table_schema, + (r.relname)::information_schema.sql_identifier AS table_name, + ('CHECK'::character varying)::information_schema.character_data AS constraint_type, + ('NO'::character varying)::information_schema.yes_or_no AS is_deferrable, + ('NO'::character varying)::information_schema.yes_or_no AS initially_deferred, + ('YES'::character varying)::information_schema.yes_or_no AS enforced, + (NULL::character varying)::information_schema.yes_or_no AS nulls_distinct + FROM pg_namespace nr, + pg_class r, + pg_attribute a + WHERE ((nr.oid = r.relnamespace) AND (r.oid = a.attrelid) AND a.attnotnull AND (a.attnum > 0) AND (NOT a.attisdropped) AND (r.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) AND (NOT pg_is_other_temp_schema(nr.oid)) AND (pg_has_role(r.relowner, 'USAGE'::text) OR has_table_privilege(r.oid, 'INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(r.oid, 'INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased information_schema.table_constraints table + * reference + */ + public TableConstraints(String alias) { + this(DSL.name(alias), TABLE_CONSTRAINTS); + } + + /** + * Create an aliased information_schema.table_constraints table + * reference + */ + public TableConstraints(Name alias) { + this(alias, TABLE_CONSTRAINTS); + } + + /** + * Create a information_schema.table_constraints table + * reference + */ + public TableConstraints() { + this(DSL.name("table_constraints"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public TableConstraints as(String alias) { + return new TableConstraints(DSL.name(alias), this); + } + + @Override + public TableConstraints as(Name alias) { + return new TableConstraints(alias, this); + } + + @Override + public TableConstraints as(Table alias) { + return new TableConstraints(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public TableConstraints rename(String name) { + return new TableConstraints(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public TableConstraints rename(Name name) { + return new TableConstraints(name, null); + } + + /** + * Rename this table + */ + @Override + public TableConstraints rename(Table name) { + return new TableConstraints(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TableConstraints where(Condition condition) { + return new TableConstraints(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TableConstraints where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TableConstraints where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TableConstraints where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TableConstraints where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TableConstraints where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TableConstraints where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TableConstraints where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TableConstraints whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TableConstraints whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TablePrivileges.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TablePrivileges.java new file mode 100644 index 0000000..c6a75c0 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TablePrivileges.java @@ -0,0 +1,288 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.TablePrivilegesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TablePrivileges extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.table_privileges + */ + public static final TablePrivileges TABLE_PRIVILEGES = new TablePrivileges(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return TablePrivilegesRecord.class; + } + + /** + * The column information_schema.table_privileges.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.table_privileges.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_privileges.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.table_privileges.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.table_privileges.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.table_privileges.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.table_privileges.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.table_privileges.with_hierarchy. + */ + public final TableField WITH_HIERARCHY = createField(DSL.name("with_hierarchy"), Domains.YES_OR_NO.getDataType(), this, ""); + + private TablePrivileges(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private TablePrivileges(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "table_privileges" as SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + (c.prtype)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, c.relowner, 'USAGE'::text) OR c.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable, + ( + CASE + WHEN (c.prtype = 'SELECT'::text) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS with_hierarchy + FROM ( SELECT pg_class.oid, + pg_class.relname, + pg_class.relnamespace, + pg_class.relkind, + pg_class.relowner, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).is_grantable AS is_grantable + FROM pg_class) c(oid, relname, relnamespace, relkind, relowner, grantor, grantee, prtype, grantable), + pg_namespace nc, + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((c.relnamespace = nc.oid) AND (c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND (c.grantee = grantee.oid) AND (c.grantor = u_grantor.oid) AND (c.prtype = ANY (ARRAY['INSERT'::text, 'SELECT'::text, 'UPDATE'::text, 'DELETE'::text, 'TRUNCATE'::text, 'REFERENCES'::text, 'TRIGGER'::text])) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))); + """), where); + } + + /** + * Create an aliased information_schema.table_privileges table + * reference + */ + public TablePrivileges(String alias) { + this(DSL.name(alias), TABLE_PRIVILEGES); + } + + /** + * Create an aliased information_schema.table_privileges table + * reference + */ + public TablePrivileges(Name alias) { + this(alias, TABLE_PRIVILEGES); + } + + /** + * Create a information_schema.table_privileges table reference + */ + public TablePrivileges() { + this(DSL.name("table_privileges"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public TablePrivileges as(String alias) { + return new TablePrivileges(DSL.name(alias), this); + } + + @Override + public TablePrivileges as(Name alias) { + return new TablePrivileges(alias, this); + } + + @Override + public TablePrivileges as(Table alias) { + return new TablePrivileges(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public TablePrivileges rename(String name) { + return new TablePrivileges(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public TablePrivileges rename(Name name) { + return new TablePrivileges(name, null); + } + + /** + * Rename this table + */ + @Override + public TablePrivileges rename(Table name) { + return new TablePrivileges(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TablePrivileges where(Condition condition) { + return new TablePrivileges(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TablePrivileges where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TablePrivileges where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TablePrivileges where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TablePrivileges where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TablePrivileges where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TablePrivileges where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TablePrivileges where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TablePrivileges whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TablePrivileges whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Tables.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Tables.java new file mode 100644 index 0000000..8ae36d2 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Tables.java @@ -0,0 +1,306 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.TablesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Tables extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.tables + */ + public static final Tables TABLES = new Tables(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return TablesRecord.class; + } + + /** + * The column information_schema.tables.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.tables.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.tables.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.tables.table_type. + */ + public final TableField TABLE_TYPE = createField(DSL.name("table_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.tables.self_referencing_column_name. + */ + public final TableField SELF_REFERENCING_COLUMN_NAME = createField(DSL.name("self_referencing_column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.tables.reference_generation. + */ + public final TableField REFERENCE_GENERATION = createField(DSL.name("reference_generation"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.tables.user_defined_type_catalog. + */ + public final TableField USER_DEFINED_TYPE_CATALOG = createField(DSL.name("user_defined_type_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.tables.user_defined_type_schema. + */ + public final TableField USER_DEFINED_TYPE_SCHEMA = createField(DSL.name("user_defined_type_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.tables.user_defined_type_name. + */ + public final TableField USER_DEFINED_TYPE_NAME = createField(DSL.name("user_defined_type_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.tables.is_insertable_into. + */ + public final TableField IS_INSERTABLE_INTO = createField(DSL.name("is_insertable_into"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.tables.is_typed. + */ + public final TableField IS_TYPED = createField(DSL.name("is_typed"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.tables.commit_action. + */ + public final TableField COMMIT_ACTION = createField(DSL.name("commit_action"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private Tables(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Tables(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "tables" as SELECT (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + ( + CASE + WHEN (nc.oid = pg_my_temp_schema()) THEN 'LOCAL TEMPORARY'::text + WHEN (c.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) THEN 'BASE TABLE'::text + WHEN (c.relkind = 'v'::"char") THEN 'VIEW'::text + WHEN (c.relkind = 'f'::"char") THEN 'FOREIGN'::text + ELSE NULL::text + END)::information_schema.character_data AS table_type, + (NULL::name)::information_schema.sql_identifier AS self_referencing_column_name, + (NULL::character varying)::information_schema.character_data AS reference_generation, + ( + CASE + WHEN (t.typname IS NOT NULL) THEN current_database() + ELSE NULL::name + END)::information_schema.sql_identifier AS user_defined_type_catalog, + (nt.nspname)::information_schema.sql_identifier AS user_defined_type_schema, + (t.typname)::information_schema.sql_identifier AS user_defined_type_name, + ( + CASE + WHEN ((c.relkind = ANY (ARRAY['r'::"char", 'p'::"char"])) OR ((c.relkind = ANY (ARRAY['v'::"char", 'f'::"char"])) AND ((pg_relation_is_updatable((c.oid)::regclass, false) & 8) = 8))) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_insertable_into, + ( + CASE + WHEN (t.typname IS NOT NULL) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_typed, + (NULL::character varying)::information_schema.character_data AS commit_action + FROM ((pg_namespace nc + JOIN pg_class c ON ((nc.oid = c.relnamespace))) + LEFT JOIN (pg_type t + JOIN pg_namespace nt ON ((t.typnamespace = nt.oid))) ON ((c.reloftype = t.oid))) + WHERE ((c.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND (NOT pg_is_other_temp_schema(nc.oid)) AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_table_privilege(c.oid, 'SELECT, INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(c.oid, 'SELECT, INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased information_schema.tables table reference + */ + public Tables(String alias) { + this(DSL.name(alias), TABLES); + } + + /** + * Create an aliased information_schema.tables table reference + */ + public Tables(Name alias) { + this(alias, TABLES); + } + + /** + * Create a information_schema.tables table reference + */ + public Tables() { + this(DSL.name("tables"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Tables as(String alias) { + return new Tables(DSL.name(alias), this); + } + + @Override + public Tables as(Name alias) { + return new Tables(alias, this); + } + + @Override + public Tables as(Table alias) { + return new Tables(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Tables rename(String name) { + return new Tables(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Tables rename(Name name) { + return new Tables(name, null); + } + + /** + * Rename this table + */ + @Override + public Tables rename(Table name) { + return new Tables(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Tables where(Condition condition) { + return new Tables(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Tables where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Tables where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Tables where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Tables where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Tables where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Tables where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Tables where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Tables whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Tables whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TriggeredUpdateColumns.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TriggeredUpdateColumns.java new file mode 100644 index 0000000..95967ae --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/TriggeredUpdateColumns.java @@ -0,0 +1,271 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.TriggeredUpdateColumnsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TriggeredUpdateColumns extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.triggered_update_columns + */ + public static final TriggeredUpdateColumns TRIGGERED_UPDATE_COLUMNS = new TriggeredUpdateColumns(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return TriggeredUpdateColumnsRecord.class; + } + + /** + * The column + * information_schema.triggered_update_columns.trigger_catalog. + */ + public final TableField TRIGGER_CATALOG = createField(DSL.name("trigger_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggered_update_columns.trigger_schema. + */ + public final TableField TRIGGER_SCHEMA = createField(DSL.name("trigger_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggered_update_columns.trigger_name. + */ + public final TableField TRIGGER_NAME = createField(DSL.name("trigger_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggered_update_columns.event_object_catalog. + */ + public final TableField EVENT_OBJECT_CATALOG = createField(DSL.name("event_object_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggered_update_columns.event_object_schema. + */ + public final TableField EVENT_OBJECT_SCHEMA = createField(DSL.name("event_object_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggered_update_columns.event_object_table. + */ + public final TableField EVENT_OBJECT_TABLE = createField(DSL.name("event_object_table"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggered_update_columns.event_object_column. + */ + public final TableField EVENT_OBJECT_COLUMN = createField(DSL.name("event_object_column"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private TriggeredUpdateColumns(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private TriggeredUpdateColumns(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "triggered_update_columns" as SELECT (current_database())::information_schema.sql_identifier AS trigger_catalog, + (n.nspname)::information_schema.sql_identifier AS trigger_schema, + (t.tgname)::information_schema.sql_identifier AS trigger_name, + (current_database())::information_schema.sql_identifier AS event_object_catalog, + (n.nspname)::information_schema.sql_identifier AS event_object_schema, + (c.relname)::information_schema.sql_identifier AS event_object_table, + (a.attname)::information_schema.sql_identifier AS event_object_column + FROM pg_namespace n, + pg_class c, + pg_trigger t, + ( SELECT ta0.tgoid, + (ta0.tgat).x AS tgattnum, + (ta0.tgat).n AS tgattpos + FROM ( SELECT pg_trigger.oid AS tgoid, + information_schema._pg_expandarray(pg_trigger.tgattr) AS tgat + FROM pg_trigger) ta0) ta, + pg_attribute a + WHERE ((n.oid = c.relnamespace) AND (c.oid = t.tgrelid) AND (t.oid = ta.tgoid) AND ((a.attrelid = t.tgrelid) AND (a.attnum = ta.tgattnum)) AND (NOT t.tgisinternal) AND (NOT pg_is_other_temp_schema(n.oid)) AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_column_privilege(c.oid, a.attnum, 'INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased + * information_schema.triggered_update_columns table reference + */ + public TriggeredUpdateColumns(String alias) { + this(DSL.name(alias), TRIGGERED_UPDATE_COLUMNS); + } + + /** + * Create an aliased + * information_schema.triggered_update_columns table reference + */ + public TriggeredUpdateColumns(Name alias) { + this(alias, TRIGGERED_UPDATE_COLUMNS); + } + + /** + * Create a information_schema.triggered_update_columns table + * reference + */ + public TriggeredUpdateColumns() { + this(DSL.name("triggered_update_columns"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public TriggeredUpdateColumns as(String alias) { + return new TriggeredUpdateColumns(DSL.name(alias), this); + } + + @Override + public TriggeredUpdateColumns as(Name alias) { + return new TriggeredUpdateColumns(alias, this); + } + + @Override + public TriggeredUpdateColumns as(Table alias) { + return new TriggeredUpdateColumns(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public TriggeredUpdateColumns rename(String name) { + return new TriggeredUpdateColumns(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public TriggeredUpdateColumns rename(Name name) { + return new TriggeredUpdateColumns(name, null); + } + + /** + * Rename this table + */ + @Override + public TriggeredUpdateColumns rename(Table name) { + return new TriggeredUpdateColumns(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TriggeredUpdateColumns where(Condition condition) { + return new TriggeredUpdateColumns(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TriggeredUpdateColumns where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TriggeredUpdateColumns where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TriggeredUpdateColumns where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TriggeredUpdateColumns where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TriggeredUpdateColumns where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TriggeredUpdateColumns where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public TriggeredUpdateColumns where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TriggeredUpdateColumns whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public TriggeredUpdateColumns whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Triggers.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Triggers.java new file mode 100644 index 0000000..8437ca8 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Triggers.java @@ -0,0 +1,335 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.TriggersRecord; + +import java.sql.Timestamp; +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Triggers extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.triggers + */ + public static final Triggers TRIGGERS = new Triggers(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return TriggersRecord.class; + } + + /** + * The column information_schema.triggers.trigger_catalog. + */ + public final TableField TRIGGER_CATALOG = createField(DSL.name("trigger_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.trigger_schema. + */ + public final TableField TRIGGER_SCHEMA = createField(DSL.name("trigger_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.trigger_name. + */ + public final TableField TRIGGER_NAME = createField(DSL.name("trigger_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.event_manipulation. + */ + public final TableField EVENT_MANIPULATION = createField(DSL.name("event_manipulation"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.triggers.event_object_catalog. + */ + public final TableField EVENT_OBJECT_CATALOG = createField(DSL.name("event_object_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.event_object_schema. + */ + public final TableField EVENT_OBJECT_SCHEMA = createField(DSL.name("event_object_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.event_object_table. + */ + public final TableField EVENT_OBJECT_TABLE = createField(DSL.name("event_object_table"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.action_order. + */ + public final TableField ACTION_ORDER = createField(DSL.name("action_order"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.action_condition. + */ + public final TableField ACTION_CONDITION = createField(DSL.name("action_condition"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.triggers.action_statement. + */ + public final TableField ACTION_STATEMENT = createField(DSL.name("action_statement"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.triggers.action_orientation. + */ + public final TableField ACTION_ORIENTATION = createField(DSL.name("action_orientation"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.triggers.action_timing. + */ + public final TableField ACTION_TIMING = createField(DSL.name("action_timing"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.triggers.action_reference_old_table. + */ + public final TableField ACTION_REFERENCE_OLD_TABLE = createField(DSL.name("action_reference_old_table"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggers.action_reference_new_table. + */ + public final TableField ACTION_REFERENCE_NEW_TABLE = createField(DSL.name("action_reference_new_table"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggers.action_reference_old_row. + */ + public final TableField ACTION_REFERENCE_OLD_ROW = createField(DSL.name("action_reference_old_row"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.triggers.action_reference_new_row. + */ + public final TableField ACTION_REFERENCE_NEW_ROW = createField(DSL.name("action_reference_new_row"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.triggers.created. + */ + public final TableField CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0), this, ""); + + private Triggers(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Triggers(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "triggers" as SELECT (current_database())::information_schema.sql_identifier AS trigger_catalog, + (n.nspname)::information_schema.sql_identifier AS trigger_schema, + (t.tgname)::information_schema.sql_identifier AS trigger_name, + (em.text)::information_schema.character_data AS event_manipulation, + (current_database())::information_schema.sql_identifier AS event_object_catalog, + (n.nspname)::information_schema.sql_identifier AS event_object_schema, + (c.relname)::information_schema.sql_identifier AS event_object_table, + (rank() OVER (PARTITION BY (n.nspname)::information_schema.sql_identifier, (c.relname)::information_schema.sql_identifier, em.num, ((t.tgtype)::integer & 1), ((t.tgtype)::integer & 66) ORDER BY t.tgname))::information_schema.cardinal_number AS action_order, + ( + CASE + WHEN pg_has_role(c.relowner, 'USAGE'::text) THEN (regexp_match(pg_get_triggerdef(t.oid), '.{35,} WHEN \\((.+)\\) EXECUTE FUNCTION'::text))[1] + ELSE NULL::text + END)::information_schema.character_data AS action_condition, + (SUBSTRING(pg_get_triggerdef(t.oid) FROM (POSITION(('EXECUTE FUNCTION'::text) IN (SUBSTRING(pg_get_triggerdef(t.oid) FROM 48))) + 47)))::information_schema.character_data AS action_statement, + ( + CASE ((t.tgtype)::integer & 1) + WHEN 1 THEN 'ROW'::text + ELSE 'STATEMENT'::text + END)::information_schema.character_data AS action_orientation, + ( + CASE ((t.tgtype)::integer & 66) + WHEN 2 THEN 'BEFORE'::text + WHEN 64 THEN 'INSTEAD OF'::text + ELSE 'AFTER'::text + END)::information_schema.character_data AS action_timing, + (t.tgoldtable)::information_schema.sql_identifier AS action_reference_old_table, + (t.tgnewtable)::information_schema.sql_identifier AS action_reference_new_table, + (NULL::name)::information_schema.sql_identifier AS action_reference_old_row, + (NULL::name)::information_schema.sql_identifier AS action_reference_new_row, + (NULL::timestamp with time zone)::information_schema.time_stamp AS created + FROM pg_namespace n, + pg_class c, + pg_trigger t, + ( VALUES (4,'INSERT'::text), (8,'DELETE'::text), (16,'UPDATE'::text)) em(num, text) + WHERE ((n.oid = c.relnamespace) AND (c.oid = t.tgrelid) AND (((t.tgtype)::integer & em.num) <> 0) AND (NOT t.tgisinternal) AND (NOT pg_is_other_temp_schema(n.oid)) AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_table_privilege(c.oid, 'INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(c.oid, 'INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased information_schema.triggers table + * reference + */ + public Triggers(String alias) { + this(DSL.name(alias), TRIGGERS); + } + + /** + * Create an aliased information_schema.triggers table + * reference + */ + public Triggers(Name alias) { + this(alias, TRIGGERS); + } + + /** + * Create a information_schema.triggers table reference + */ + public Triggers() { + this(DSL.name("triggers"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Triggers as(String alias) { + return new Triggers(DSL.name(alias), this); + } + + @Override + public Triggers as(Name alias) { + return new Triggers(alias, this); + } + + @Override + public Triggers as(Table alias) { + return new Triggers(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Triggers rename(String name) { + return new Triggers(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Triggers rename(Name name) { + return new Triggers(name, null); + } + + /** + * Rename this table + */ + @Override + public Triggers rename(Table name) { + return new Triggers(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Triggers where(Condition condition) { + return new Triggers(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Triggers where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Triggers where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Triggers where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Triggers where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Triggers where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Triggers where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Triggers where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Triggers whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Triggers whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UdtPrivileges.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UdtPrivileges.java new file mode 100644 index 0000000..9bf966e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UdtPrivileges.java @@ -0,0 +1,274 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.UdtPrivilegesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UdtPrivileges extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.udt_privileges + */ + public static final UdtPrivileges UDT_PRIVILEGES = new UdtPrivileges(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return UdtPrivilegesRecord.class; + } + + /** + * The column information_schema.udt_privileges.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.udt_privileges.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.udt_privileges.udt_catalog. + */ + public final TableField UDT_CATALOG = createField(DSL.name("udt_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.udt_privileges.udt_schema. + */ + public final TableField UDT_SCHEMA = createField(DSL.name("udt_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.udt_privileges.udt_name. + */ + public final TableField UDT_NAME = createField(DSL.name("udt_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.udt_privileges.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.udt_privileges.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private UdtPrivileges(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private UdtPrivileges(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "udt_privileges" as SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS udt_catalog, + (n.nspname)::information_schema.sql_identifier AS udt_schema, + (t.typname)::information_schema.sql_identifier AS udt_name, + ('TYPE USAGE'::character varying)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, t.typowner, 'USAGE'::text) OR t.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pg_type.oid, + pg_type.typname, + pg_type.typnamespace, + pg_type.typtype, + pg_type.typowner, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).is_grantable AS is_grantable + FROM pg_type) t(oid, typname, typnamespace, typtype, typowner, grantor, grantee, prtype, grantable), + pg_namespace n, + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((t.typnamespace = n.oid) AND (t.typtype = 'c'::"char") AND (t.grantee = grantee.oid) AND (t.grantor = u_grantor.oid) AND (t.prtype = 'USAGE'::text) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))); + """), where); + } + + /** + * Create an aliased information_schema.udt_privileges table + * reference + */ + public UdtPrivileges(String alias) { + this(DSL.name(alias), UDT_PRIVILEGES); + } + + /** + * Create an aliased information_schema.udt_privileges table + * reference + */ + public UdtPrivileges(Name alias) { + this(alias, UDT_PRIVILEGES); + } + + /** + * Create a information_schema.udt_privileges table reference + */ + public UdtPrivileges() { + this(DSL.name("udt_privileges"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public UdtPrivileges as(String alias) { + return new UdtPrivileges(DSL.name(alias), this); + } + + @Override + public UdtPrivileges as(Name alias) { + return new UdtPrivileges(alias, this); + } + + @Override + public UdtPrivileges as(Table alias) { + return new UdtPrivileges(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public UdtPrivileges rename(String name) { + return new UdtPrivileges(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public UdtPrivileges rename(Name name) { + return new UdtPrivileges(name, null); + } + + /** + * Rename this table + */ + @Override + public UdtPrivileges rename(Table name) { + return new UdtPrivileges(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UdtPrivileges where(Condition condition) { + return new UdtPrivileges(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UdtPrivileges where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UdtPrivileges where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UdtPrivileges where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UdtPrivileges where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UdtPrivileges where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UdtPrivileges where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UdtPrivileges where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UdtPrivileges whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UdtPrivileges whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UsagePrivileges.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UsagePrivileges.java new file mode 100644 index 0000000..6cb348d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UsagePrivileges.java @@ -0,0 +1,387 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.UsagePrivilegesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UsagePrivileges extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.usage_privileges + */ + public static final UsagePrivileges USAGE_PRIVILEGES = new UsagePrivileges(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return UsagePrivilegesRecord.class; + } + + /** + * The column information_schema.usage_privileges.grantor. + */ + public final TableField GRANTOR = createField(DSL.name("grantor"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.usage_privileges.grantee. + */ + public final TableField GRANTEE = createField(DSL.name("grantee"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.usage_privileges.object_catalog. + */ + public final TableField OBJECT_CATALOG = createField(DSL.name("object_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.usage_privileges.object_schema. + */ + public final TableField OBJECT_SCHEMA = createField(DSL.name("object_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.usage_privileges.object_name. + */ + public final TableField OBJECT_NAME = createField(DSL.name("object_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.usage_privileges.object_type. + */ + public final TableField OBJECT_TYPE = createField(DSL.name("object_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.usage_privileges.privilege_type. + */ + public final TableField PRIVILEGE_TYPE = createField(DSL.name("privilege_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.usage_privileges.is_grantable. + */ + public final TableField IS_GRANTABLE = createField(DSL.name("is_grantable"), Domains.YES_OR_NO.getDataType(), this, ""); + + private UsagePrivileges(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private UsagePrivileges(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "usage_privileges" as SELECT (u.rolname)::information_schema.sql_identifier AS grantor, + ('PUBLIC'::name)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS object_catalog, + (n.nspname)::information_schema.sql_identifier AS object_schema, + (c.collname)::information_schema.sql_identifier AS object_name, + ('COLLATION'::character varying)::information_schema.character_data AS object_type, + ('USAGE'::character varying)::information_schema.character_data AS privilege_type, + ('NO'::character varying)::information_schema.yes_or_no AS is_grantable + FROM pg_authid u, + pg_namespace n, + pg_collation c + WHERE ((u.oid = c.collowner) AND (c.collnamespace = n.oid) AND (c.collencoding = ANY (ARRAY['-1'::integer, ( SELECT pg_database.encoding + FROM pg_database + WHERE (pg_database.datname = current_database()))]))) + UNION ALL + SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS object_catalog, + (n.nspname)::information_schema.sql_identifier AS object_schema, + (t.typname)::information_schema.sql_identifier AS object_name, + ('DOMAIN'::character varying)::information_schema.character_data AS object_type, + ('USAGE'::character varying)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, t.typowner, 'USAGE'::text) OR t.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pg_type.oid, + pg_type.typname, + pg_type.typnamespace, + pg_type.typtype, + pg_type.typowner, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_type.typacl, acldefault('T'::"char", pg_type.typowner)))).is_grantable AS is_grantable + FROM pg_type) t(oid, typname, typnamespace, typtype, typowner, grantor, grantee, prtype, grantable), + pg_namespace n, + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((t.typnamespace = n.oid) AND (t.typtype = 'd'::"char") AND (t.grantee = grantee.oid) AND (t.grantor = u_grantor.oid) AND (t.prtype = 'USAGE'::text) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))) + UNION ALL + SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS object_catalog, + (''::name)::information_schema.sql_identifier AS object_schema, + (fdw.fdwname)::information_schema.sql_identifier AS object_name, + ('FOREIGN DATA WRAPPER'::character varying)::information_schema.character_data AS object_type, + ('USAGE'::character varying)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, fdw.fdwowner, 'USAGE'::text) OR fdw.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pg_foreign_data_wrapper.fdwname, + pg_foreign_data_wrapper.fdwowner, + (aclexplode(COALESCE(pg_foreign_data_wrapper.fdwacl, acldefault('F'::"char", pg_foreign_data_wrapper.fdwowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_foreign_data_wrapper.fdwacl, acldefault('F'::"char", pg_foreign_data_wrapper.fdwowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_foreign_data_wrapper.fdwacl, acldefault('F'::"char", pg_foreign_data_wrapper.fdwowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_foreign_data_wrapper.fdwacl, acldefault('F'::"char", pg_foreign_data_wrapper.fdwowner)))).is_grantable AS is_grantable + FROM pg_foreign_data_wrapper) fdw(fdwname, fdwowner, grantor, grantee, prtype, grantable), + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((u_grantor.oid = fdw.grantor) AND (grantee.oid = fdw.grantee) AND (fdw.prtype = 'USAGE'::text) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))) + UNION ALL + SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS object_catalog, + (''::name)::information_schema.sql_identifier AS object_schema, + (srv.srvname)::information_schema.sql_identifier AS object_name, + ('FOREIGN SERVER'::character varying)::information_schema.character_data AS object_type, + ('USAGE'::character varying)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, srv.srvowner, 'USAGE'::text) OR srv.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pg_foreign_server.srvname, + pg_foreign_server.srvowner, + (aclexplode(COALESCE(pg_foreign_server.srvacl, acldefault('S'::"char", pg_foreign_server.srvowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_foreign_server.srvacl, acldefault('S'::"char", pg_foreign_server.srvowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_foreign_server.srvacl, acldefault('S'::"char", pg_foreign_server.srvowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_foreign_server.srvacl, acldefault('S'::"char", pg_foreign_server.srvowner)))).is_grantable AS is_grantable + FROM pg_foreign_server) srv(srvname, srvowner, grantor, grantee, prtype, grantable), + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((u_grantor.oid = srv.grantor) AND (grantee.oid = srv.grantee) AND (srv.prtype = 'USAGE'::text) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))) + UNION ALL + SELECT (u_grantor.rolname)::information_schema.sql_identifier AS grantor, + (grantee.rolname)::information_schema.sql_identifier AS grantee, + (current_database())::information_schema.sql_identifier AS object_catalog, + (n.nspname)::information_schema.sql_identifier AS object_schema, + (c.relname)::information_schema.sql_identifier AS object_name, + ('SEQUENCE'::character varying)::information_schema.character_data AS object_type, + ('USAGE'::character varying)::information_schema.character_data AS privilege_type, + ( + CASE + WHEN (pg_has_role(grantee.oid, c.relowner, 'USAGE'::text) OR c.grantable) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_grantable + FROM ( SELECT pg_class.oid, + pg_class.relname, + pg_class.relnamespace, + pg_class.relkind, + pg_class.relowner, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).grantor AS grantor, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).grantee AS grantee, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).privilege_type AS privilege_type, + (aclexplode(COALESCE(pg_class.relacl, acldefault('r'::"char", pg_class.relowner)))).is_grantable AS is_grantable + FROM pg_class) c(oid, relname, relnamespace, relkind, relowner, grantor, grantee, prtype, grantable), + pg_namespace n, + pg_authid u_grantor, + ( SELECT pg_authid.oid, + pg_authid.rolname + FROM pg_authid + UNION ALL + SELECT (0)::oid AS oid, + 'PUBLIC'::name) grantee(oid, rolname) + WHERE ((c.relnamespace = n.oid) AND (c.relkind = 'S'::"char") AND (c.grantee = grantee.oid) AND (c.grantor = u_grantor.oid) AND (c.prtype = 'USAGE'::text) AND (pg_has_role(u_grantor.oid, 'USAGE'::text) OR pg_has_role(grantee.oid, 'USAGE'::text) OR (grantee.rolname = 'PUBLIC'::name))); + """), where); + } + + /** + * Create an aliased information_schema.usage_privileges table + * reference + */ + public UsagePrivileges(String alias) { + this(DSL.name(alias), USAGE_PRIVILEGES); + } + + /** + * Create an aliased information_schema.usage_privileges table + * reference + */ + public UsagePrivileges(Name alias) { + this(alias, USAGE_PRIVILEGES); + } + + /** + * Create a information_schema.usage_privileges table reference + */ + public UsagePrivileges() { + this(DSL.name("usage_privileges"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public UsagePrivileges as(String alias) { + return new UsagePrivileges(DSL.name(alias), this); + } + + @Override + public UsagePrivileges as(Name alias) { + return new UsagePrivileges(alias, this); + } + + @Override + public UsagePrivileges as(Table alias) { + return new UsagePrivileges(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public UsagePrivileges rename(String name) { + return new UsagePrivileges(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public UsagePrivileges rename(Name name) { + return new UsagePrivileges(name, null); + } + + /** + * Rename this table + */ + @Override + public UsagePrivileges rename(Table name) { + return new UsagePrivileges(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UsagePrivileges where(Condition condition) { + return new UsagePrivileges(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UsagePrivileges where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UsagePrivileges where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UsagePrivileges where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UsagePrivileges where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UsagePrivileges where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UsagePrivileges where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UsagePrivileges where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UsagePrivileges whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UsagePrivileges whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserDefinedTypes.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserDefinedTypes.java new file mode 100644 index 0000000..f7b995e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserDefinedTypes.java @@ -0,0 +1,416 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.UserDefinedTypesRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UserDefinedTypes extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.user_defined_types + */ + public static final UserDefinedTypes USER_DEFINED_TYPES = new UserDefinedTypes(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return UserDefinedTypesRecord.class; + } + + /** + * The column + * information_schema.user_defined_types.user_defined_type_catalog. + */ + public final TableField USER_DEFINED_TYPE_CATALOG = createField(DSL.name("user_defined_type_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.user_defined_type_schema. + */ + public final TableField USER_DEFINED_TYPE_SCHEMA = createField(DSL.name("user_defined_type_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.user_defined_type_name. + */ + public final TableField USER_DEFINED_TYPE_NAME = createField(DSL.name("user_defined_type_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.user_defined_type_category. + */ + public final TableField USER_DEFINED_TYPE_CATEGORY = createField(DSL.name("user_defined_type_category"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.is_instantiable. + */ + public final TableField IS_INSTANTIABLE = createField(DSL.name("is_instantiable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.user_defined_types.is_final. + */ + public final TableField IS_FINAL = createField(DSL.name("is_final"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.ordering_form. + */ + public final TableField ORDERING_FORM = createField(DSL.name("ordering_form"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.ordering_category. + */ + public final TableField ORDERING_CATEGORY = createField(DSL.name("ordering_category"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.ordering_routine_catalog. + */ + public final TableField ORDERING_ROUTINE_CATALOG = createField(DSL.name("ordering_routine_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.ordering_routine_schema. + */ + public final TableField ORDERING_ROUTINE_SCHEMA = createField(DSL.name("ordering_routine_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.ordering_routine_name. + */ + public final TableField ORDERING_ROUTINE_NAME = createField(DSL.name("ordering_routine_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.reference_type. + */ + public final TableField REFERENCE_TYPE = createField(DSL.name("reference_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.user_defined_types.data_type. + */ + public final TableField DATA_TYPE = createField(DSL.name("data_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.character_maximum_length. + */ + public final TableField CHARACTER_MAXIMUM_LENGTH = createField(DSL.name("character_maximum_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.character_octet_length. + */ + public final TableField CHARACTER_OCTET_LENGTH = createField(DSL.name("character_octet_length"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.character_set_catalog. + */ + public final TableField CHARACTER_SET_CATALOG = createField(DSL.name("character_set_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.character_set_schema. + */ + public final TableField CHARACTER_SET_SCHEMA = createField(DSL.name("character_set_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.character_set_name. + */ + public final TableField CHARACTER_SET_NAME = createField(DSL.name("character_set_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.collation_catalog. + */ + public final TableField COLLATION_CATALOG = createField(DSL.name("collation_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.collation_schema. + */ + public final TableField COLLATION_SCHEMA = createField(DSL.name("collation_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.collation_name. + */ + public final TableField COLLATION_NAME = createField(DSL.name("collation_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.numeric_precision. + */ + public final TableField NUMERIC_PRECISION = createField(DSL.name("numeric_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.numeric_precision_radix. + */ + public final TableField NUMERIC_PRECISION_RADIX = createField(DSL.name("numeric_precision_radix"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.numeric_scale. + */ + public final TableField NUMERIC_SCALE = createField(DSL.name("numeric_scale"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.datetime_precision. + */ + public final TableField DATETIME_PRECISION = createField(DSL.name("datetime_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.interval_type. + */ + public final TableField INTERVAL_TYPE = createField(DSL.name("interval_type"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.interval_precision. + */ + public final TableField INTERVAL_PRECISION = createField(DSL.name("interval_precision"), Domains.CARDINAL_NUMBER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.source_dtd_identifier. + */ + public final TableField SOURCE_DTD_IDENTIFIER = createField(DSL.name("source_dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_defined_types.ref_dtd_identifier. + */ + public final TableField REF_DTD_IDENTIFIER = createField(DSL.name("ref_dtd_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private UserDefinedTypes(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private UserDefinedTypes(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "user_defined_types" as SELECT (current_database())::information_schema.sql_identifier AS user_defined_type_catalog, + (n.nspname)::information_schema.sql_identifier AS user_defined_type_schema, + (c.relname)::information_schema.sql_identifier AS user_defined_type_name, + ('STRUCTURED'::character varying)::information_schema.character_data AS user_defined_type_category, + ('YES'::character varying)::information_schema.yes_or_no AS is_instantiable, + (NULL::character varying)::information_schema.yes_or_no AS is_final, + (NULL::character varying)::information_schema.character_data AS ordering_form, + (NULL::character varying)::information_schema.character_data AS ordering_category, + (NULL::name)::information_schema.sql_identifier AS ordering_routine_catalog, + (NULL::name)::information_schema.sql_identifier AS ordering_routine_schema, + (NULL::name)::information_schema.sql_identifier AS ordering_routine_name, + (NULL::character varying)::information_schema.character_data AS reference_type, + (NULL::character varying)::information_schema.character_data AS data_type, + (NULL::integer)::information_schema.cardinal_number AS character_maximum_length, + (NULL::integer)::information_schema.cardinal_number AS character_octet_length, + (NULL::name)::information_schema.sql_identifier AS character_set_catalog, + (NULL::name)::information_schema.sql_identifier AS character_set_schema, + (NULL::name)::information_schema.sql_identifier AS character_set_name, + (NULL::name)::information_schema.sql_identifier AS collation_catalog, + (NULL::name)::information_schema.sql_identifier AS collation_schema, + (NULL::name)::information_schema.sql_identifier AS collation_name, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision, + (NULL::integer)::information_schema.cardinal_number AS numeric_precision_radix, + (NULL::integer)::information_schema.cardinal_number AS numeric_scale, + (NULL::integer)::information_schema.cardinal_number AS datetime_precision, + (NULL::character varying)::information_schema.character_data AS interval_type, + (NULL::integer)::information_schema.cardinal_number AS interval_precision, + (NULL::name)::information_schema.sql_identifier AS source_dtd_identifier, + (NULL::name)::information_schema.sql_identifier AS ref_dtd_identifier + FROM pg_namespace n, + pg_class c, + pg_type t + WHERE ((n.oid = c.relnamespace) AND (t.typrelid = c.oid) AND (c.relkind = 'c'::"char") AND (pg_has_role(t.typowner, 'USAGE'::text) OR has_type_privilege(t.oid, 'USAGE'::text))); + """), where); + } + + /** + * Create an aliased information_schema.user_defined_types + * table reference + */ + public UserDefinedTypes(String alias) { + this(DSL.name(alias), USER_DEFINED_TYPES); + } + + /** + * Create an aliased information_schema.user_defined_types + * table reference + */ + public UserDefinedTypes(Name alias) { + this(alias, USER_DEFINED_TYPES); + } + + /** + * Create a information_schema.user_defined_types table + * reference + */ + public UserDefinedTypes() { + this(DSL.name("user_defined_types"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public UserDefinedTypes as(String alias) { + return new UserDefinedTypes(DSL.name(alias), this); + } + + @Override + public UserDefinedTypes as(Name alias) { + return new UserDefinedTypes(alias, this); + } + + @Override + public UserDefinedTypes as(Table alias) { + return new UserDefinedTypes(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public UserDefinedTypes rename(String name) { + return new UserDefinedTypes(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public UserDefinedTypes rename(Name name) { + return new UserDefinedTypes(name, null); + } + + /** + * Rename this table + */ + @Override + public UserDefinedTypes rename(Table name) { + return new UserDefinedTypes(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserDefinedTypes where(Condition condition) { + return new UserDefinedTypes(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserDefinedTypes where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserDefinedTypes where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserDefinedTypes where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserDefinedTypes where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserDefinedTypes where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserDefinedTypes where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserDefinedTypes where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserDefinedTypes whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserDefinedTypes whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappingOptions.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappingOptions.java new file mode 100644 index 0000000..309cdcb --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappingOptions.java @@ -0,0 +1,254 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.UserMappingOptionsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UserMappingOptions extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.user_mapping_options + */ + public static final UserMappingOptions USER_MAPPING_OPTIONS = new UserMappingOptions(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return UserMappingOptionsRecord.class; + } + + /** + * The column + * information_schema.user_mapping_options.authorization_identifier. + */ + public final TableField AUTHORIZATION_IDENTIFIER = createField(DSL.name("authorization_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_mapping_options.foreign_server_catalog. + */ + public final TableField FOREIGN_SERVER_CATALOG = createField(DSL.name("foreign_server_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_mapping_options.foreign_server_name. + */ + public final TableField FOREIGN_SERVER_NAME = createField(DSL.name("foreign_server_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_mapping_options.option_name. + */ + public final TableField OPTION_NAME = createField(DSL.name("option_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_mapping_options.option_value. + */ + public final TableField OPTION_VALUE = createField(DSL.name("option_value"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + private UserMappingOptions(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private UserMappingOptions(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "user_mapping_options" as SELECT um.authorization_identifier, + um.foreign_server_catalog, + um.foreign_server_name, + (opts.option_name)::information_schema.sql_identifier AS option_name, + ( + CASE + WHEN (((um.umuser <> (0)::oid) AND ((um.authorization_identifier)::name = CURRENT_USER)) OR ((um.umuser = (0)::oid) AND pg_has_role((um.srvowner)::name, 'USAGE'::text)) OR ( SELECT pg_authid.rolsuper + FROM pg_authid + WHERE (pg_authid.rolname = CURRENT_USER))) THEN opts.option_value + ELSE NULL::text + END)::information_schema.character_data AS option_value + FROM information_schema._pg_user_mappings um, + LATERAL pg_options_to_table(um.umoptions) opts(option_name, option_value); + """), where); + } + + /** + * Create an aliased information_schema.user_mapping_options + * table reference + */ + public UserMappingOptions(String alias) { + this(DSL.name(alias), USER_MAPPING_OPTIONS); + } + + /** + * Create an aliased information_schema.user_mapping_options + * table reference + */ + public UserMappingOptions(Name alias) { + this(alias, USER_MAPPING_OPTIONS); + } + + /** + * Create a information_schema.user_mapping_options table + * reference + */ + public UserMappingOptions() { + this(DSL.name("user_mapping_options"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public UserMappingOptions as(String alias) { + return new UserMappingOptions(DSL.name(alias), this); + } + + @Override + public UserMappingOptions as(Name alias) { + return new UserMappingOptions(alias, this); + } + + @Override + public UserMappingOptions as(Table alias) { + return new UserMappingOptions(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public UserMappingOptions rename(String name) { + return new UserMappingOptions(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public UserMappingOptions rename(Name name) { + return new UserMappingOptions(name, null); + } + + /** + * Rename this table + */ + @Override + public UserMappingOptions rename(Table name) { + return new UserMappingOptions(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappingOptions where(Condition condition) { + return new UserMappingOptions(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappingOptions where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappingOptions where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappingOptions where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappingOptions where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappingOptions where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappingOptions where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappingOptions where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappingOptions whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappingOptions whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappings.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappings.java new file mode 100644 index 0000000..58bbe95 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/UserMappings.java @@ -0,0 +1,231 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.UserMappingsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UserMappings extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.user_mappings + */ + public static final UserMappings USER_MAPPINGS = new UserMappings(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return UserMappingsRecord.class; + } + + /** + * The column + * information_schema.user_mappings.authorization_identifier. + */ + public final TableField AUTHORIZATION_IDENTIFIER = createField(DSL.name("authorization_identifier"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_mappings.foreign_server_catalog. + */ + public final TableField FOREIGN_SERVER_CATALOG = createField(DSL.name("foreign_server_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.user_mappings.foreign_server_name. + */ + public final TableField FOREIGN_SERVER_NAME = createField(DSL.name("foreign_server_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private UserMappings(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private UserMappings(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "user_mappings" as SELECT _pg_user_mappings.authorization_identifier, + _pg_user_mappings.foreign_server_catalog, + _pg_user_mappings.foreign_server_name + FROM information_schema._pg_user_mappings; + """), where); + } + + /** + * Create an aliased information_schema.user_mappings table + * reference + */ + public UserMappings(String alias) { + this(DSL.name(alias), USER_MAPPINGS); + } + + /** + * Create an aliased information_schema.user_mappings table + * reference + */ + public UserMappings(Name alias) { + this(alias, USER_MAPPINGS); + } + + /** + * Create a information_schema.user_mappings table reference + */ + public UserMappings() { + this(DSL.name("user_mappings"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public UserMappings as(String alias) { + return new UserMappings(DSL.name(alias), this); + } + + @Override + public UserMappings as(Name alias) { + return new UserMappings(alias, this); + } + + @Override + public UserMappings as(Table alias) { + return new UserMappings(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public UserMappings rename(String name) { + return new UserMappings(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public UserMappings rename(Name name) { + return new UserMappings(name, null); + } + + /** + * Rename this table + */ + @Override + public UserMappings rename(Table name) { + return new UserMappings(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappings where(Condition condition) { + return new UserMappings(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappings where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappings where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappings where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappings where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappings where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappings where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public UserMappings where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappings whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public UserMappings whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewColumnUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewColumnUsage.java new file mode 100644 index 0000000..faa52fe --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewColumnUsage.java @@ -0,0 +1,264 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ViewColumnUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewColumnUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.view_column_usage + */ + public static final ViewColumnUsage VIEW_COLUMN_USAGE = new ViewColumnUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ViewColumnUsageRecord.class; + } + + /** + * The column + * information_schema.view_column_usage.view_catalog. + */ + public final TableField VIEW_CATALOG = createField(DSL.name("view_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_column_usage.view_schema. + */ + public final TableField VIEW_SCHEMA = createField(DSL.name("view_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_column_usage.view_name. + */ + public final TableField VIEW_NAME = createField(DSL.name("view_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_column_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_column_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_column_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_column_usage.column_name. + */ + public final TableField COLUMN_NAME = createField(DSL.name("column_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ViewColumnUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ViewColumnUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "view_column_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS view_catalog, + (nv.nspname)::information_schema.sql_identifier AS view_schema, + (v.relname)::information_schema.sql_identifier AS view_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nt.nspname)::information_schema.sql_identifier AS table_schema, + (t.relname)::information_schema.sql_identifier AS table_name, + (a.attname)::information_schema.sql_identifier AS column_name + FROM pg_namespace nv, + pg_class v, + pg_depend dv, + pg_depend dt, + pg_class t, + pg_namespace nt, + pg_attribute a + WHERE ((nv.oid = v.relnamespace) AND (v.relkind = 'v'::"char") AND (v.oid = dv.refobjid) AND (dv.refclassid = ('pg_class'::regclass)::oid) AND (dv.classid = ('pg_rewrite'::regclass)::oid) AND (dv.deptype = 'i'::"char") AND (dv.objid = dt.objid) AND (dv.refobjid <> dt.refobjid) AND (dt.classid = ('pg_rewrite'::regclass)::oid) AND (dt.refclassid = ('pg_class'::regclass)::oid) AND (dt.refobjid = t.oid) AND (t.relnamespace = nt.oid) AND (t.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND (t.oid = a.attrelid) AND (dt.refobjsubid = a.attnum) AND pg_has_role(t.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.view_column_usage table + * reference + */ + public ViewColumnUsage(String alias) { + this(DSL.name(alias), VIEW_COLUMN_USAGE); + } + + /** + * Create an aliased information_schema.view_column_usage table + * reference + */ + public ViewColumnUsage(Name alias) { + this(alias, VIEW_COLUMN_USAGE); + } + + /** + * Create a information_schema.view_column_usage table + * reference + */ + public ViewColumnUsage() { + this(DSL.name("view_column_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ViewColumnUsage as(String alias) { + return new ViewColumnUsage(DSL.name(alias), this); + } + + @Override + public ViewColumnUsage as(Name alias) { + return new ViewColumnUsage(alias, this); + } + + @Override + public ViewColumnUsage as(Table alias) { + return new ViewColumnUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ViewColumnUsage rename(String name) { + return new ViewColumnUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ViewColumnUsage rename(Name name) { + return new ViewColumnUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ViewColumnUsage rename(Table name) { + return new ViewColumnUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewColumnUsage where(Condition condition) { + return new ViewColumnUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewColumnUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewColumnUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewColumnUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewColumnUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewColumnUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewColumnUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewColumnUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewColumnUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewColumnUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewRoutineUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewRoutineUsage.java new file mode 100644 index 0000000..eae44c6 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewRoutineUsage.java @@ -0,0 +1,259 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ViewRoutineUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewRoutineUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.view_routine_usage + */ + public static final ViewRoutineUsage VIEW_ROUTINE_USAGE = new ViewRoutineUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ViewRoutineUsageRecord.class; + } + + /** + * The column + * information_schema.view_routine_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_routine_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_routine_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_routine_usage.specific_catalog. + */ + public final TableField SPECIFIC_CATALOG = createField(DSL.name("specific_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_routine_usage.specific_schema. + */ + public final TableField SPECIFIC_SCHEMA = createField(DSL.name("specific_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_routine_usage.specific_name. + */ + public final TableField SPECIFIC_NAME = createField(DSL.name("specific_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ViewRoutineUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ViewRoutineUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "view_routine_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS table_catalog, + (nv.nspname)::information_schema.sql_identifier AS table_schema, + (v.relname)::information_schema.sql_identifier AS table_name, + (current_database())::information_schema.sql_identifier AS specific_catalog, + (np.nspname)::information_schema.sql_identifier AS specific_schema, + (nameconcatoid(p.proname, p.oid))::information_schema.sql_identifier AS specific_name + FROM pg_namespace nv, + pg_class v, + pg_depend dv, + pg_depend dp, + pg_proc p, + pg_namespace np + WHERE ((nv.oid = v.relnamespace) AND (v.relkind = 'v'::"char") AND (v.oid = dv.refobjid) AND (dv.refclassid = ('pg_class'::regclass)::oid) AND (dv.classid = ('pg_rewrite'::regclass)::oid) AND (dv.deptype = 'i'::"char") AND (dv.objid = dp.objid) AND (dp.classid = ('pg_rewrite'::regclass)::oid) AND (dp.refclassid = ('pg_proc'::regclass)::oid) AND (dp.refobjid = p.oid) AND (p.pronamespace = np.oid) AND pg_has_role(p.proowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.view_routine_usage + * table reference + */ + public ViewRoutineUsage(String alias) { + this(DSL.name(alias), VIEW_ROUTINE_USAGE); + } + + /** + * Create an aliased information_schema.view_routine_usage + * table reference + */ + public ViewRoutineUsage(Name alias) { + this(alias, VIEW_ROUTINE_USAGE); + } + + /** + * Create a information_schema.view_routine_usage table + * reference + */ + public ViewRoutineUsage() { + this(DSL.name("view_routine_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ViewRoutineUsage as(String alias) { + return new ViewRoutineUsage(DSL.name(alias), this); + } + + @Override + public ViewRoutineUsage as(Name alias) { + return new ViewRoutineUsage(alias, this); + } + + @Override + public ViewRoutineUsage as(Table alias) { + return new ViewRoutineUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ViewRoutineUsage rename(String name) { + return new ViewRoutineUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ViewRoutineUsage rename(Name name) { + return new ViewRoutineUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ViewRoutineUsage rename(Table name) { + return new ViewRoutineUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewRoutineUsage where(Condition condition) { + return new ViewRoutineUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewRoutineUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewRoutineUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewRoutineUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewRoutineUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewRoutineUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewRoutineUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewRoutineUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewRoutineUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewRoutineUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewTableUsage.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewTableUsage.java new file mode 100644 index 0000000..6276b57 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/ViewTableUsage.java @@ -0,0 +1,254 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ViewTableUsageRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewTableUsage extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * information_schema.view_table_usage + */ + public static final ViewTableUsage VIEW_TABLE_USAGE = new ViewTableUsage(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ViewTableUsageRecord.class; + } + + /** + * The column information_schema.view_table_usage.view_catalog. + */ + public final TableField VIEW_CATALOG = createField(DSL.name("view_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_table_usage.view_schema. + */ + public final TableField VIEW_SCHEMA = createField(DSL.name("view_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_table_usage.view_name. + */ + public final TableField VIEW_NAME = createField(DSL.name("view_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column + * information_schema.view_table_usage.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_table_usage.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.view_table_usage.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + private ViewTableUsage(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ViewTableUsage(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "view_table_usage" as SELECT DISTINCT (current_database())::information_schema.sql_identifier AS view_catalog, + (nv.nspname)::information_schema.sql_identifier AS view_schema, + (v.relname)::information_schema.sql_identifier AS view_name, + (current_database())::information_schema.sql_identifier AS table_catalog, + (nt.nspname)::information_schema.sql_identifier AS table_schema, + (t.relname)::information_schema.sql_identifier AS table_name + FROM pg_namespace nv, + pg_class v, + pg_depend dv, + pg_depend dt, + pg_class t, + pg_namespace nt + WHERE ((nv.oid = v.relnamespace) AND (v.relkind = 'v'::"char") AND (v.oid = dv.refobjid) AND (dv.refclassid = ('pg_class'::regclass)::oid) AND (dv.classid = ('pg_rewrite'::regclass)::oid) AND (dv.deptype = 'i'::"char") AND (dv.objid = dt.objid) AND (dv.refobjid <> dt.refobjid) AND (dt.classid = ('pg_rewrite'::regclass)::oid) AND (dt.refclassid = ('pg_class'::regclass)::oid) AND (dt.refobjid = t.oid) AND (t.relnamespace = nt.oid) AND (t.relkind = ANY (ARRAY['r'::"char", 'v'::"char", 'f'::"char", 'p'::"char"])) AND pg_has_role(t.relowner, 'USAGE'::text)); + """), where); + } + + /** + * Create an aliased information_schema.view_table_usage table + * reference + */ + public ViewTableUsage(String alias) { + this(DSL.name(alias), VIEW_TABLE_USAGE); + } + + /** + * Create an aliased information_schema.view_table_usage table + * reference + */ + public ViewTableUsage(Name alias) { + this(alias, VIEW_TABLE_USAGE); + } + + /** + * Create a information_schema.view_table_usage table reference + */ + public ViewTableUsage() { + this(DSL.name("view_table_usage"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public ViewTableUsage as(String alias) { + return new ViewTableUsage(DSL.name(alias), this); + } + + @Override + public ViewTableUsage as(Name alias) { + return new ViewTableUsage(alias, this); + } + + @Override + public ViewTableUsage as(Table alias) { + return new ViewTableUsage(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ViewTableUsage rename(String name) { + return new ViewTableUsage(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ViewTableUsage rename(Name name) { + return new ViewTableUsage(name, null); + } + + /** + * Rename this table + */ + @Override + public ViewTableUsage rename(Table name) { + return new ViewTableUsage(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewTableUsage where(Condition condition) { + return new ViewTableUsage(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewTableUsage where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewTableUsage where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewTableUsage where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewTableUsage where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewTableUsage where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewTableUsage where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ViewTableUsage where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewTableUsage whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ViewTableUsage whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Views.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Views.java new file mode 100644 index 0000000..0b9964a --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/Views.java @@ -0,0 +1,306 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.Domains; +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records.ViewsRecord; + +import java.util.Collection; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Views extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema.views + */ + public static final Views VIEWS = new Views(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ViewsRecord.class; + } + + /** + * The column information_schema.views.table_catalog. + */ + public final TableField TABLE_CATALOG = createField(DSL.name("table_catalog"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.views.table_schema. + */ + public final TableField TABLE_SCHEMA = createField(DSL.name("table_schema"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.views.table_name. + */ + public final TableField TABLE_NAME = createField(DSL.name("table_name"), Domains.SQL_IDENTIFIER.getDataType(), this, ""); + + /** + * The column information_schema.views.view_definition. + */ + public final TableField VIEW_DEFINITION = createField(DSL.name("view_definition"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.views.check_option. + */ + public final TableField CHECK_OPTION = createField(DSL.name("check_option"), Domains.CHARACTER_DATA.getDataType(), this, ""); + + /** + * The column information_schema.views.is_updatable. + */ + public final TableField IS_UPDATABLE = createField(DSL.name("is_updatable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.views.is_insertable_into. + */ + public final TableField IS_INSERTABLE_INTO = createField(DSL.name("is_insertable_into"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.views.is_trigger_updatable. + */ + public final TableField IS_TRIGGER_UPDATABLE = createField(DSL.name("is_trigger_updatable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column information_schema.views.is_trigger_deletable. + */ + public final TableField IS_TRIGGER_DELETABLE = createField(DSL.name("is_trigger_deletable"), Domains.YES_OR_NO.getDataType(), this, ""); + + /** + * The column + * information_schema.views.is_trigger_insertable_into. + */ + public final TableField IS_TRIGGER_INSERTABLE_INTO = createField(DSL.name("is_trigger_insertable_into"), Domains.YES_OR_NO.getDataType(), this, ""); + + private Views(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private Views(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" + create view "views" as SELECT (current_database())::information_schema.sql_identifier AS table_catalog, + (nc.nspname)::information_schema.sql_identifier AS table_schema, + (c.relname)::information_schema.sql_identifier AS table_name, + ( + CASE + WHEN pg_has_role(c.relowner, 'USAGE'::text) THEN pg_get_viewdef(c.oid) + ELSE NULL::text + END)::information_schema.character_data AS view_definition, + ( + CASE + WHEN ('check_option=cascaded'::text = ANY (c.reloptions)) THEN 'CASCADED'::text + WHEN ('check_option=local'::text = ANY (c.reloptions)) THEN 'LOCAL'::text + ELSE 'NONE'::text + END)::information_schema.character_data AS check_option, + ( + CASE + WHEN ((pg_relation_is_updatable((c.oid)::regclass, false) & 20) = 20) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_updatable, + ( + CASE + WHEN ((pg_relation_is_updatable((c.oid)::regclass, false) & 8) = 8) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_insertable_into, + ( + CASE + WHEN (EXISTS ( SELECT 1 + FROM pg_trigger + WHERE ((pg_trigger.tgrelid = c.oid) AND (((pg_trigger.tgtype)::integer & 81) = 81)))) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_trigger_updatable, + ( + CASE + WHEN (EXISTS ( SELECT 1 + FROM pg_trigger + WHERE ((pg_trigger.tgrelid = c.oid) AND (((pg_trigger.tgtype)::integer & 73) = 73)))) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_trigger_deletable, + ( + CASE + WHEN (EXISTS ( SELECT 1 + FROM pg_trigger + WHERE ((pg_trigger.tgrelid = c.oid) AND (((pg_trigger.tgtype)::integer & 69) = 69)))) THEN 'YES'::text + ELSE 'NO'::text + END)::information_schema.yes_or_no AS is_trigger_insertable_into + FROM pg_namespace nc, + pg_class c + WHERE ((c.relnamespace = nc.oid) AND (c.relkind = 'v'::"char") AND (NOT pg_is_other_temp_schema(nc.oid)) AND (pg_has_role(c.relowner, 'USAGE'::text) OR has_table_privilege(c.oid, 'SELECT, INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(c.oid, 'SELECT, INSERT, UPDATE, REFERENCES'::text))); + """), where); + } + + /** + * Create an aliased information_schema.views table reference + */ + public Views(String alias) { + this(DSL.name(alias), VIEWS); + } + + /** + * Create an aliased information_schema.views table reference + */ + public Views(Name alias) { + this(alias, VIEWS); + } + + /** + * Create a information_schema.views table reference + */ + public Views() { + this(DSL.name("views"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public Views as(String alias) { + return new Views(DSL.name(alias), this); + } + + @Override + public Views as(Name alias) { + return new Views(alias, this); + } + + @Override + public Views as(Table alias) { + return new Views(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public Views rename(String name) { + return new Views(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public Views rename(Name name) { + return new Views(name, null); + } + + /** + * Rename this table + */ + @Override + public Views rename(Table name) { + return new Views(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Views where(Condition condition) { + return new Views(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Views where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Views where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Views where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Views where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Views where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Views where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public Views where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Views whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public Views whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/_PgExpandarray.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/_PgExpandarray.java new file mode 100644 index 0000000..ad52f1d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/_PgExpandarray.java @@ -0,0 +1,166 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables; + + +import ervu_secret.ervu_secret.db_beans.information_schema.InformationSchema; +import ervu_secret.ervu_secret.db_beans.information_schema.tables.records._PgExpandarrayRecord; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.Name; +import org.jooq.Schema; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.impl.DSL; +import org.jooq.impl.DefaultDataType; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgExpandarray extends TableImpl<_PgExpandarrayRecord> { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of information_schema._pg_expandarray + */ + public static final _PgExpandarray _PG_EXPANDARRAY = new _PgExpandarray(); + + /** + * The class holding records for this type + */ + @Override + public Class<_PgExpandarrayRecord> getRecordType() { + return _PgExpandarrayRecord.class; + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public final TableField<_PgExpandarrayRecord, Object> X = createField(DSL.name("x"), DefaultDataType.getDefaultDataType("\"pg_catalog\".\"anyelement\""), this, ""); + + /** + * The column information_schema._pg_expandarray.n. + */ + public final TableField<_PgExpandarrayRecord, Integer> N = createField(DSL.name("n"), SQLDataType.INTEGER, this, ""); + + private _PgExpandarray(Name alias, Table<_PgExpandarrayRecord> aliased) { + this(alias, aliased, new Field[] { + DSL.val(null, SQLDataType.OTHER.array()) + }); + } + + private _PgExpandarray(Name alias, Table<_PgExpandarrayRecord> aliased, Field[] parameters) { + this(alias, aliased, parameters, null); + } + + private _PgExpandarray(Name alias, Table<_PgExpandarrayRecord> aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.function(), where); + } + + /** + * Create an aliased information_schema._pg_expandarray table + * reference + */ + public _PgExpandarray(String alias) { + this(DSL.name(alias), _PG_EXPANDARRAY); + } + + /** + * Create an aliased information_schema._pg_expandarray table + * reference + */ + public _PgExpandarray(Name alias) { + this(alias, _PG_EXPANDARRAY); + } + + /** + * Create a information_schema._pg_expandarray table reference + */ + public _PgExpandarray() { + this(DSL.name("_pg_expandarray"), null); + } + + @Override + public Schema getSchema() { + return aliased() ? null : InformationSchema.INFORMATION_SCHEMA; + } + + @Override + public _PgExpandarray as(String alias) { + return new _PgExpandarray(DSL.name(alias), this, parameters); + } + + @Override + public _PgExpandarray as(Name alias) { + return new _PgExpandarray(alias, this, parameters); + } + + @Override + public _PgExpandarray as(Table alias) { + return new _PgExpandarray(alias.getQualifiedName(), this, parameters); + } + + /** + * Rename this table + */ + @Override + public _PgExpandarray rename(String name) { + return new _PgExpandarray(DSL.name(name), null, parameters); + } + + /** + * Rename this table + */ + @Override + public _PgExpandarray rename(Name name) { + return new _PgExpandarray(name, null, parameters); + } + + /** + * Rename this table + */ + @Override + public _PgExpandarray rename(Table name) { + return new _PgExpandarray(name.getQualifiedName(), null, parameters); + } + + /** + * Call this table-valued function + */ + public _PgExpandarray call( + Object[] __1 + ) { + _PgExpandarray result = new _PgExpandarray(DSL.name("_pg_expandarray"), null, new Field[] { + DSL.val(__1, SQLDataType.OTHER.array()) + }); + + return aliased() ? result.as(getUnqualifiedName()) : result; + } + + /** + * Call this table-valued function + */ + public _PgExpandarray call( + Field __1 + ) { + _PgExpandarray result = new _PgExpandarray(DSL.name("_pg_expandarray"), null, new Field[] { + __1 + }); + + return aliased() ? result.as(getUnqualifiedName()) : result; + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AdministrableRoleAuthorizationsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AdministrableRoleAuthorizationsRecord.java new file mode 100644 index 0000000..36dad58 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AdministrableRoleAuthorizationsRecord.java @@ -0,0 +1,90 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.AdministrableRoleAuthorizations; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class AdministrableRoleAuthorizationsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.administrable_role_authorizations.grantee. + */ + public void setGrantee(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.administrable_role_authorizations.grantee. + */ + public String getGrantee() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.administrable_role_authorizations.role_name. + */ + public void setRoleName(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.administrable_role_authorizations.role_name. + */ + public String getRoleName() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.administrable_role_authorizations.is_grantable. + */ + public void setIsGrantable(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.administrable_role_authorizations.is_grantable. + */ + public String getIsGrantable() { + return (String) get(2); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached AdministrableRoleAuthorizationsRecord + */ + public AdministrableRoleAuthorizationsRecord() { + super(AdministrableRoleAuthorizations.ADMINISTRABLE_ROLE_AUTHORIZATIONS); + } + + /** + * Create a detached, initialised AdministrableRoleAuthorizationsRecord + */ + public AdministrableRoleAuthorizationsRecord(String grantee, String roleName, String isGrantable) { + super(AdministrableRoleAuthorizations.ADMINISTRABLE_ROLE_AUTHORIZATIONS); + + setGrantee(grantee); + setRoleName(roleName); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ApplicableRolesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ApplicableRolesRecord.java new file mode 100644 index 0000000..2dd961f --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ApplicableRolesRecord.java @@ -0,0 +1,84 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ApplicableRoles; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ApplicableRolesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.applicable_roles.grantee. + */ + public void setGrantee(String value) { + set(0, value); + } + + /** + * Getter for information_schema.applicable_roles.grantee. + */ + public String getGrantee() { + return (String) get(0); + } + + /** + * Setter for information_schema.applicable_roles.role_name. + */ + public void setRoleName(String value) { + set(1, value); + } + + /** + * Getter for information_schema.applicable_roles.role_name. + */ + public String getRoleName() { + return (String) get(1); + } + + /** + * Setter for information_schema.applicable_roles.is_grantable. + */ + public void setIsGrantable(String value) { + set(2, value); + } + + /** + * Getter for information_schema.applicable_roles.is_grantable. + */ + public String getIsGrantable() { + return (String) get(2); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ApplicableRolesRecord + */ + public ApplicableRolesRecord() { + super(ApplicableRoles.APPLICABLE_ROLES); + } + + /** + * Create a detached, initialised ApplicableRolesRecord + */ + public ApplicableRolesRecord(String grantee, String roleName, String isGrantable) { + super(ApplicableRoles.APPLICABLE_ROLES); + + setGrantee(grantee); + setRoleName(roleName); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AttributesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AttributesRecord.java new file mode 100644 index 0000000..2b54b8e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/AttributesRecord.java @@ -0,0 +1,522 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Attributes; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class AttributesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.attributes.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.attributes.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.attributes.udt_schema. + */ + public void setUdtSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.attributes.udt_schema. + */ + public String getUdtSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.attributes.udt_name. + */ + public void setUdtName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.attributes.udt_name. + */ + public String getUdtName() { + return (String) get(2); + } + + /** + * Setter for information_schema.attributes.attribute_name. + */ + public void setAttributeName(String value) { + set(3, value); + } + + /** + * Getter for information_schema.attributes.attribute_name. + */ + public String getAttributeName() { + return (String) get(3); + } + + /** + * Setter for information_schema.attributes.ordinal_position. + */ + public void setOrdinalPosition(Integer value) { + set(4, value); + } + + /** + * Getter for information_schema.attributes.ordinal_position. + */ + public Integer getOrdinalPosition() { + return (Integer) get(4); + } + + /** + * Setter for information_schema.attributes.attribute_default. + */ + public void setAttributeDefault(String value) { + set(5, value); + } + + /** + * Getter for information_schema.attributes.attribute_default. + */ + public String getAttributeDefault() { + return (String) get(5); + } + + /** + * Setter for information_schema.attributes.is_nullable. + */ + public void setIsNullable(String value) { + set(6, value); + } + + /** + * Getter for information_schema.attributes.is_nullable. + */ + public String getIsNullable() { + return (String) get(6); + } + + /** + * Setter for information_schema.attributes.data_type. + */ + public void setDataType(String value) { + set(7, value); + } + + /** + * Getter for information_schema.attributes.data_type. + */ + public String getDataType() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.attributes.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(8, value); + } + + /** + * Getter for + * information_schema.attributes.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(8); + } + + /** + * Setter for + * information_schema.attributes.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(9, value); + } + + /** + * Getter for + * information_schema.attributes.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(9); + } + + /** + * Setter for + * information_schema.attributes.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(10, value); + } + + /** + * Getter for + * information_schema.attributes.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(10); + } + + /** + * Setter for + * information_schema.attributes.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(11, value); + } + + /** + * Getter for + * information_schema.attributes.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(11); + } + + /** + * Setter for information_schema.attributes.character_set_name. + */ + public void setCharacterSetName(String value) { + set(12, value); + } + + /** + * Getter for information_schema.attributes.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(12); + } + + /** + * Setter for information_schema.attributes.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(13, value); + } + + /** + * Getter for information_schema.attributes.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(13); + } + + /** + * Setter for information_schema.attributes.collation_schema. + */ + public void setCollationSchema(String value) { + set(14, value); + } + + /** + * Getter for information_schema.attributes.collation_schema. + */ + public String getCollationSchema() { + return (String) get(14); + } + + /** + * Setter for information_schema.attributes.collation_name. + */ + public void setCollationName(String value) { + set(15, value); + } + + /** + * Getter for information_schema.attributes.collation_name. + */ + public String getCollationName() { + return (String) get(15); + } + + /** + * Setter for information_schema.attributes.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(16, value); + } + + /** + * Getter for information_schema.attributes.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(16); + } + + /** + * Setter for + * information_schema.attributes.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(17, value); + } + + /** + * Getter for + * information_schema.attributes.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(17); + } + + /** + * Setter for information_schema.attributes.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(18, value); + } + + /** + * Getter for information_schema.attributes.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(18); + } + + /** + * Setter for information_schema.attributes.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(19, value); + } + + /** + * Getter for information_schema.attributes.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(19); + } + + /** + * Setter for information_schema.attributes.interval_type. + */ + public void setIntervalType(String value) { + set(20, value); + } + + /** + * Getter for information_schema.attributes.interval_type. + */ + public String getIntervalType() { + return (String) get(20); + } + + /** + * Setter for information_schema.attributes.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(21, value); + } + + /** + * Getter for information_schema.attributes.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(21); + } + + /** + * Setter for + * information_schema.attributes.attribute_udt_catalog. + */ + public void setAttributeUdtCatalog(String value) { + set(22, value); + } + + /** + * Getter for + * information_schema.attributes.attribute_udt_catalog. + */ + public String getAttributeUdtCatalog() { + return (String) get(22); + } + + /** + * Setter for + * information_schema.attributes.attribute_udt_schema. + */ + public void setAttributeUdtSchema(String value) { + set(23, value); + } + + /** + * Getter for + * information_schema.attributes.attribute_udt_schema. + */ + public String getAttributeUdtSchema() { + return (String) get(23); + } + + /** + * Setter for information_schema.attributes.attribute_udt_name. + */ + public void setAttributeUdtName(String value) { + set(24, value); + } + + /** + * Getter for information_schema.attributes.attribute_udt_name. + */ + public String getAttributeUdtName() { + return (String) get(24); + } + + /** + * Setter for information_schema.attributes.scope_catalog. + */ + public void setScopeCatalog(String value) { + set(25, value); + } + + /** + * Getter for information_schema.attributes.scope_catalog. + */ + public String getScopeCatalog() { + return (String) get(25); + } + + /** + * Setter for information_schema.attributes.scope_schema. + */ + public void setScopeSchema(String value) { + set(26, value); + } + + /** + * Getter for information_schema.attributes.scope_schema. + */ + public String getScopeSchema() { + return (String) get(26); + } + + /** + * Setter for information_schema.attributes.scope_name. + */ + public void setScopeName(String value) { + set(27, value); + } + + /** + * Getter for information_schema.attributes.scope_name. + */ + public String getScopeName() { + return (String) get(27); + } + + /** + * Setter for + * information_schema.attributes.maximum_cardinality. + */ + public void setMaximumCardinality(Integer value) { + set(28, value); + } + + /** + * Getter for + * information_schema.attributes.maximum_cardinality. + */ + public Integer getMaximumCardinality() { + return (Integer) get(28); + } + + /** + * Setter for information_schema.attributes.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(29, value); + } + + /** + * Getter for information_schema.attributes.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(29); + } + + /** + * Setter for + * information_schema.attributes.is_derived_reference_attribute. + */ + public void setIsDerivedReferenceAttribute(String value) { + set(30, value); + } + + /** + * Getter for + * information_schema.attributes.is_derived_reference_attribute. + */ + public String getIsDerivedReferenceAttribute() { + return (String) get(30); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached AttributesRecord + */ + public AttributesRecord() { + super(Attributes.ATTRIBUTES); + } + + /** + * Create a detached, initialised AttributesRecord + */ + public AttributesRecord(String udtCatalog, String udtSchema, String udtName, String attributeName, Integer ordinalPosition, String attributeDefault, String isNullable, String dataType, Integer characterMaximumLength, Integer characterOctetLength, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String attributeUdtCatalog, String attributeUdtSchema, String attributeUdtName, String scopeCatalog, String scopeSchema, String scopeName, Integer maximumCardinality, String dtdIdentifier, String isDerivedReferenceAttribute) { + super(Attributes.ATTRIBUTES); + + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setAttributeName(attributeName); + setOrdinalPosition(ordinalPosition); + setAttributeDefault(attributeDefault); + setIsNullable(isNullable); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setAttributeUdtCatalog(attributeUdtCatalog); + setAttributeUdtSchema(attributeUdtSchema); + setAttributeUdtName(attributeUdtName); + setScopeCatalog(scopeCatalog); + setScopeSchema(scopeSchema); + setScopeName(scopeName); + setMaximumCardinality(maximumCardinality); + setDtdIdentifier(dtdIdentifier); + setIsDerivedReferenceAttribute(isDerivedReferenceAttribute); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CharacterSetsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CharacterSetsRecord.java new file mode 100644 index 0000000..43fec75 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CharacterSetsRecord.java @@ -0,0 +1,173 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CharacterSets; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CharacterSetsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.character_sets.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.character_sets.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.character_sets.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.character_sets.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.character_sets.character_set_name. + */ + public void setCharacterSetName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.character_sets.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.character_sets.character_repertoire. + */ + public void setCharacterRepertoire(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.character_sets.character_repertoire. + */ + public String getCharacterRepertoire() { + return (String) get(3); + } + + /** + * Setter for information_schema.character_sets.form_of_use. + */ + public void setFormOfUse(String value) { + set(4, value); + } + + /** + * Getter for information_schema.character_sets.form_of_use. + */ + public String getFormOfUse() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.character_sets.default_collate_catalog. + */ + public void setDefaultCollateCatalog(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.character_sets.default_collate_catalog. + */ + public String getDefaultCollateCatalog() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.character_sets.default_collate_schema. + */ + public void setDefaultCollateSchema(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.character_sets.default_collate_schema. + */ + public String getDefaultCollateSchema() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.character_sets.default_collate_name. + */ + public void setDefaultCollateName(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.character_sets.default_collate_name. + */ + public String getDefaultCollateName() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached CharacterSetsRecord + */ + public CharacterSetsRecord() { + super(CharacterSets.CHARACTER_SETS); + } + + /** + * Create a detached, initialised CharacterSetsRecord + */ + public CharacterSetsRecord(String characterSetCatalog, String characterSetSchema, String characterSetName, String characterRepertoire, String formOfUse, String defaultCollateCatalog, String defaultCollateSchema, String defaultCollateName) { + super(CharacterSets.CHARACTER_SETS); + + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCharacterRepertoire(characterRepertoire); + setFormOfUse(formOfUse); + setDefaultCollateCatalog(defaultCollateCatalog); + setDefaultCollateSchema(defaultCollateSchema); + setDefaultCollateName(defaultCollateName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintRoutineUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintRoutineUsageRecord.java new file mode 100644 index 0000000..a4ce72d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintRoutineUsageRecord.java @@ -0,0 +1,141 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CheckConstraintRoutineUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CheckConstraintRoutineUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.check_constraint_routine_usage.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.check_constraint_routine_usage.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.check_constraint_routine_usage.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.check_constraint_routine_usage.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.check_constraint_routine_usage.constraint_name. + */ + public void setConstraintName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.check_constraint_routine_usage.constraint_name. + */ + public String getConstraintName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.check_constraint_routine_usage.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.check_constraint_routine_usage.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.check_constraint_routine_usage.specific_schema. + */ + public void setSpecificSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.check_constraint_routine_usage.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.check_constraint_routine_usage.specific_name. + */ + public void setSpecificName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.check_constraint_routine_usage.specific_name. + */ + public String getSpecificName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached CheckConstraintRoutineUsageRecord + */ + public CheckConstraintRoutineUsageRecord() { + super(CheckConstraintRoutineUsage.CHECK_CONSTRAINT_ROUTINE_USAGE); + } + + /** + * Create a detached, initialised CheckConstraintRoutineUsageRecord + */ + public CheckConstraintRoutineUsageRecord(String constraintCatalog, String constraintSchema, String constraintName, String specificCatalog, String specificSchema, String specificName) { + super(CheckConstraintRoutineUsage.CHECK_CONSTRAINT_ROUTINE_USAGE); + + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintsRecord.java new file mode 100644 index 0000000..4382c70 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CheckConstraintsRecord.java @@ -0,0 +1,107 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CheckConstraints; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CheckConstraintsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.check_constraints.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.check_constraints.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.check_constraints.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.check_constraints.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.check_constraints.constraint_name. + */ + public void setConstraintName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.check_constraints.constraint_name. + */ + public String getConstraintName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.check_constraints.check_clause. + */ + public void setCheckClause(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.check_constraints.check_clause. + */ + public String getCheckClause() { + return (String) get(3); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached CheckConstraintsRecord + */ + public CheckConstraintsRecord() { + super(CheckConstraints.CHECK_CONSTRAINTS); + } + + /** + * Create a detached, initialised CheckConstraintsRecord + */ + public CheckConstraintsRecord(String constraintCatalog, String constraintSchema, String constraintName, String checkClause) { + super(CheckConstraints.CHECK_CONSTRAINTS); + + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + setCheckClause(checkClause); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationCharacterSetApplicabilityRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationCharacterSetApplicabilityRecord.java new file mode 100644 index 0000000..fb74ebc --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationCharacterSetApplicabilityRecord.java @@ -0,0 +1,141 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.CollationCharacterSetApplicability; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CollationCharacterSetApplicabilityRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.collation_character_set_applicability.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.collation_character_set_applicability.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.collation_character_set_applicability.collation_schema. + */ + public void setCollationSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.collation_character_set_applicability.collation_schema. + */ + public String getCollationSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.collation_character_set_applicability.collation_name. + */ + public void setCollationName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.collation_character_set_applicability.collation_name. + */ + public String getCollationName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.collation_character_set_applicability.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.collation_character_set_applicability.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.collation_character_set_applicability.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.collation_character_set_applicability.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.collation_character_set_applicability.character_set_name. + */ + public void setCharacterSetName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.collation_character_set_applicability.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached CollationCharacterSetApplicabilityRecord + */ + public CollationCharacterSetApplicabilityRecord() { + super(CollationCharacterSetApplicability.COLLATION_CHARACTER_SET_APPLICABILITY); + } + + /** + * Create a detached, initialised CollationCharacterSetApplicabilityRecord + */ + public CollationCharacterSetApplicabilityRecord(String collationCatalog, String collationSchema, String collationName, String characterSetCatalog, String characterSetSchema, String characterSetName) { + super(CollationCharacterSetApplicability.COLLATION_CHARACTER_SET_APPLICABILITY); + + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationsRecord.java new file mode 100644 index 0000000..8b0b059 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/CollationsRecord.java @@ -0,0 +1,99 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Collations; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CollationsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.collations.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.collations.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.collations.collation_schema. + */ + public void setCollationSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.collations.collation_schema. + */ + public String getCollationSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.collations.collation_name. + */ + public void setCollationName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.collations.collation_name. + */ + public String getCollationName() { + return (String) get(2); + } + + /** + * Setter for information_schema.collations.pad_attribute. + */ + public void setPadAttribute(String value) { + set(3, value); + } + + /** + * Getter for information_schema.collations.pad_attribute. + */ + public String getPadAttribute() { + return (String) get(3); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached CollationsRecord + */ + public CollationsRecord() { + super(Collations.COLLATIONS); + } + + /** + * Create a detached, initialised CollationsRecord + */ + public CollationsRecord(String collationCatalog, String collationSchema, String collationName, String padAttribute) { + super(Collations.COLLATIONS); + + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setPadAttribute(padAttribute); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnColumnUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnColumnUsageRecord.java new file mode 100644 index 0000000..5523d63 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnColumnUsageRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnColumnUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnColumnUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.column_column_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.column_column_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.column_column_usage.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.column_column_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.column_column_usage.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.column_column_usage.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.column_column_usage.column_name. + */ + public void setColumnName(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.column_column_usage.column_name. + */ + public String getColumnName() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.column_column_usage.dependent_column. + */ + public void setDependentColumn(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.column_column_usage.dependent_column. + */ + public String getDependentColumn() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ColumnColumnUsageRecord + */ + public ColumnColumnUsageRecord() { + super(ColumnColumnUsage.COLUMN_COLUMN_USAGE); + } + + /** + * Create a detached, initialised ColumnColumnUsageRecord + */ + public ColumnColumnUsageRecord(String tableCatalog, String tableSchema, String tableName, String columnName, String dependentColumn) { + super(ColumnColumnUsage.COLUMN_COLUMN_USAGE); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setDependentColumn(dependentColumn); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnDomainUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnDomainUsageRecord.java new file mode 100644 index 0000000..b59914b --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnDomainUsageRecord.java @@ -0,0 +1,158 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnDomainUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnDomainUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.column_domain_usage.domain_catalog. + */ + public void setDomainCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.domain_catalog. + */ + public String getDomainCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.column_domain_usage.domain_schema. + */ + public void setDomainSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.domain_schema. + */ + public String getDomainSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.column_domain_usage.domain_name. + */ + public void setDomainName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.domain_name. + */ + public String getDomainName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.column_domain_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.column_domain_usage.table_schema. + */ + public void setTableSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.column_domain_usage.table_name. + */ + public void setTableName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.table_name. + */ + public String getTableName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.column_domain_usage.column_name. + */ + public void setColumnName(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.column_domain_usage.column_name. + */ + public String getColumnName() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ColumnDomainUsageRecord + */ + public ColumnDomainUsageRecord() { + super(ColumnDomainUsage.COLUMN_DOMAIN_USAGE); + } + + /** + * Create a detached, initialised ColumnDomainUsageRecord + */ + public ColumnDomainUsageRecord(String domainCatalog, String domainSchema, String domainName, String tableCatalog, String tableSchema, String tableName, String columnName) { + super(ColumnDomainUsage.COLUMN_DOMAIN_USAGE); + + setDomainCatalog(domainCatalog); + setDomainSchema(domainSchema); + setDomainName(domainName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnOptionsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnOptionsRecord.java new file mode 100644 index 0000000..31f3fa6 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnOptionsRecord.java @@ -0,0 +1,129 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnOptions; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnOptionsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.column_options.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.column_options.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.column_options.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.column_options.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.column_options.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.column_options.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for information_schema.column_options.column_name. + */ + public void setColumnName(String value) { + set(3, value); + } + + /** + * Getter for information_schema.column_options.column_name. + */ + public String getColumnName() { + return (String) get(3); + } + + /** + * Setter for information_schema.column_options.option_name. + */ + public void setOptionName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.column_options.option_name. + */ + public String getOptionName() { + return (String) get(4); + } + + /** + * Setter for information_schema.column_options.option_value. + */ + public void setOptionValue(String value) { + set(5, value); + } + + /** + * Getter for information_schema.column_options.option_value. + */ + public String getOptionValue() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ColumnOptionsRecord + */ + public ColumnOptionsRecord() { + super(ColumnOptions.COLUMN_OPTIONS); + } + + /** + * Create a detached, initialised ColumnOptionsRecord + */ + public ColumnOptionsRecord(String tableCatalog, String tableSchema, String tableName, String columnName, String optionName, String optionValue) { + super(ColumnOptions.COLUMN_OPTIONS); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setOptionName(optionName); + setOptionValue(optionValue); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnPrivilegesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnPrivilegesRecord.java new file mode 100644 index 0000000..cd5ec66 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnPrivilegesRecord.java @@ -0,0 +1,167 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnPrivileges; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnPrivilegesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.column_privileges.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.column_privileges.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.column_privileges.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.column_privileges.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.column_privileges.table_catalog. + */ + public void setTableCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.column_privileges.table_catalog. + */ + public String getTableCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.column_privileges.table_schema. + */ + public void setTableSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.column_privileges.table_schema. + */ + public String getTableSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.column_privileges.table_name. + */ + public void setTableName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.column_privileges.table_name. + */ + public String getTableName() { + return (String) get(4); + } + + /** + * Setter for information_schema.column_privileges.column_name. + */ + public void setColumnName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.column_privileges.column_name. + */ + public String getColumnName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.column_privileges.privilege_type. + */ + public void setPrivilegeType(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.column_privileges.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.column_privileges.is_grantable. + */ + public void setIsGrantable(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.column_privileges.is_grantable. + */ + public String getIsGrantable() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ColumnPrivilegesRecord + */ + public ColumnPrivilegesRecord() { + super(ColumnPrivileges.COLUMN_PRIVILEGES); + } + + /** + * Create a detached, initialised ColumnPrivilegesRecord + */ + public ColumnPrivilegesRecord(String grantor, String grantee, String tableCatalog, String tableSchema, String tableName, String columnName, String privilegeType, String isGrantable) { + super(ColumnPrivileges.COLUMN_PRIVILEGES); + + setGrantor(grantor); + setGrantee(grantee); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnUdtUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnUdtUsageRecord.java new file mode 100644 index 0000000..8b72ab9 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnUdtUsageRecord.java @@ -0,0 +1,146 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ColumnUdtUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnUdtUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.column_udt_usage.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.column_udt_usage.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.column_udt_usage.udt_schema. + */ + public void setUdtSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.column_udt_usage.udt_schema. + */ + public String getUdtSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.column_udt_usage.udt_name. + */ + public void setUdtName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.column_udt_usage.udt_name. + */ + public String getUdtName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.column_udt_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.column_udt_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(3); + } + + /** + * Setter for information_schema.column_udt_usage.table_schema. + */ + public void setTableSchema(String value) { + set(4, value); + } + + /** + * Getter for information_schema.column_udt_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.column_udt_usage.table_name. + */ + public void setTableName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.column_udt_usage.table_name. + */ + public String getTableName() { + return (String) get(5); + } + + /** + * Setter for information_schema.column_udt_usage.column_name. + */ + public void setColumnName(String value) { + set(6, value); + } + + /** + * Getter for information_schema.column_udt_usage.column_name. + */ + public String getColumnName() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ColumnUdtUsageRecord + */ + public ColumnUdtUsageRecord() { + super(ColumnUdtUsage.COLUMN_UDT_USAGE); + } + + /** + * Create a detached, initialised ColumnUdtUsageRecord + */ + public ColumnUdtUsageRecord(String udtCatalog, String udtSchema, String udtName, String tableCatalog, String tableSchema, String tableName, String columnName) { + super(ColumnUdtUsage.COLUMN_UDT_USAGE); + + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnsRecord.java new file mode 100644 index 0000000..5faa3ca --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ColumnsRecord.java @@ -0,0 +1,705 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Columns; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ColumnsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.columns.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.columns.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.columns.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.columns.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.columns.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.columns.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for information_schema.columns.column_name. + */ + public void setColumnName(String value) { + set(3, value); + } + + /** + * Getter for information_schema.columns.column_name. + */ + public String getColumnName() { + return (String) get(3); + } + + /** + * Setter for information_schema.columns.ordinal_position. + */ + public void setOrdinalPosition(Integer value) { + set(4, value); + } + + /** + * Getter for information_schema.columns.ordinal_position. + */ + public Integer getOrdinalPosition() { + return (Integer) get(4); + } + + /** + * Setter for information_schema.columns.column_default. + */ + public void setColumnDefault(String value) { + set(5, value); + } + + /** + * Getter for information_schema.columns.column_default. + */ + public String getColumnDefault() { + return (String) get(5); + } + + /** + * Setter for information_schema.columns.is_nullable. + */ + public void setIsNullable(String value) { + set(6, value); + } + + /** + * Getter for information_schema.columns.is_nullable. + */ + public String getIsNullable() { + return (String) get(6); + } + + /** + * Setter for information_schema.columns.data_type. + */ + public void setDataType(String value) { + set(7, value); + } + + /** + * Getter for information_schema.columns.data_type. + */ + public String getDataType() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.columns.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(8, value); + } + + /** + * Getter for + * information_schema.columns.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(8); + } + + /** + * Setter for + * information_schema.columns.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(9, value); + } + + /** + * Getter for + * information_schema.columns.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(9); + } + + /** + * Setter for information_schema.columns.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(10, value); + } + + /** + * Getter for information_schema.columns.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(10); + } + + /** + * Setter for + * information_schema.columns.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(11, value); + } + + /** + * Getter for + * information_schema.columns.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(11); + } + + /** + * Setter for information_schema.columns.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(12, value); + } + + /** + * Getter for information_schema.columns.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(12); + } + + /** + * Setter for information_schema.columns.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(13, value); + } + + /** + * Getter for information_schema.columns.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(13); + } + + /** + * Setter for information_schema.columns.interval_type. + */ + public void setIntervalType(String value) { + set(14, value); + } + + /** + * Getter for information_schema.columns.interval_type. + */ + public String getIntervalType() { + return (String) get(14); + } + + /** + * Setter for information_schema.columns.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(15, value); + } + + /** + * Getter for information_schema.columns.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(15); + } + + /** + * Setter for information_schema.columns.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(16, value); + } + + /** + * Getter for information_schema.columns.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(16); + } + + /** + * Setter for information_schema.columns.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(17, value); + } + + /** + * Getter for information_schema.columns.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(17); + } + + /** + * Setter for information_schema.columns.character_set_name. + */ + public void setCharacterSetName(String value) { + set(18, value); + } + + /** + * Getter for information_schema.columns.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(18); + } + + /** + * Setter for information_schema.columns.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(19, value); + } + + /** + * Getter for information_schema.columns.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(19); + } + + /** + * Setter for information_schema.columns.collation_schema. + */ + public void setCollationSchema(String value) { + set(20, value); + } + + /** + * Getter for information_schema.columns.collation_schema. + */ + public String getCollationSchema() { + return (String) get(20); + } + + /** + * Setter for information_schema.columns.collation_name. + */ + public void setCollationName(String value) { + set(21, value); + } + + /** + * Getter for information_schema.columns.collation_name. + */ + public String getCollationName() { + return (String) get(21); + } + + /** + * Setter for information_schema.columns.domain_catalog. + */ + public void setDomainCatalog(String value) { + set(22, value); + } + + /** + * Getter for information_schema.columns.domain_catalog. + */ + public String getDomainCatalog() { + return (String) get(22); + } + + /** + * Setter for information_schema.columns.domain_schema. + */ + public void setDomainSchema(String value) { + set(23, value); + } + + /** + * Getter for information_schema.columns.domain_schema. + */ + public String getDomainSchema() { + return (String) get(23); + } + + /** + * Setter for information_schema.columns.domain_name. + */ + public void setDomainName(String value) { + set(24, value); + } + + /** + * Getter for information_schema.columns.domain_name. + */ + public String getDomainName() { + return (String) get(24); + } + + /** + * Setter for information_schema.columns.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(25, value); + } + + /** + * Getter for information_schema.columns.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(25); + } + + /** + * Setter for information_schema.columns.udt_schema. + */ + public void setUdtSchema(String value) { + set(26, value); + } + + /** + * Getter for information_schema.columns.udt_schema. + */ + public String getUdtSchema() { + return (String) get(26); + } + + /** + * Setter for information_schema.columns.udt_name. + */ + public void setUdtName(String value) { + set(27, value); + } + + /** + * Getter for information_schema.columns.udt_name. + */ + public String getUdtName() { + return (String) get(27); + } + + /** + * Setter for information_schema.columns.scope_catalog. + */ + public void setScopeCatalog(String value) { + set(28, value); + } + + /** + * Getter for information_schema.columns.scope_catalog. + */ + public String getScopeCatalog() { + return (String) get(28); + } + + /** + * Setter for information_schema.columns.scope_schema. + */ + public void setScopeSchema(String value) { + set(29, value); + } + + /** + * Getter for information_schema.columns.scope_schema. + */ + public String getScopeSchema() { + return (String) get(29); + } + + /** + * Setter for information_schema.columns.scope_name. + */ + public void setScopeName(String value) { + set(30, value); + } + + /** + * Getter for information_schema.columns.scope_name. + */ + public String getScopeName() { + return (String) get(30); + } + + /** + * Setter for information_schema.columns.maximum_cardinality. + */ + public void setMaximumCardinality(Integer value) { + set(31, value); + } + + /** + * Getter for information_schema.columns.maximum_cardinality. + */ + public Integer getMaximumCardinality() { + return (Integer) get(31); + } + + /** + * Setter for information_schema.columns.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(32, value); + } + + /** + * Getter for information_schema.columns.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(32); + } + + /** + * Setter for information_schema.columns.is_self_referencing. + */ + public void setIsSelfReferencing(String value) { + set(33, value); + } + + /** + * Getter for information_schema.columns.is_self_referencing. + */ + public String getIsSelfReferencing() { + return (String) get(33); + } + + /** + * Setter for information_schema.columns.is_identity. + */ + public void setIsIdentity(String value) { + set(34, value); + } + + /** + * Getter for information_schema.columns.is_identity. + */ + public String getIsIdentity() { + return (String) get(34); + } + + /** + * Setter for information_schema.columns.identity_generation. + */ + public void setIdentityGeneration(String value) { + set(35, value); + } + + /** + * Getter for information_schema.columns.identity_generation. + */ + public String getIdentityGeneration() { + return (String) get(35); + } + + /** + * Setter for information_schema.columns.identity_start. + */ + public void setIdentityStart(String value) { + set(36, value); + } + + /** + * Getter for information_schema.columns.identity_start. + */ + public String getIdentityStart() { + return (String) get(36); + } + + /** + * Setter for information_schema.columns.identity_increment. + */ + public void setIdentityIncrement(String value) { + set(37, value); + } + + /** + * Getter for information_schema.columns.identity_increment. + */ + public String getIdentityIncrement() { + return (String) get(37); + } + + /** + * Setter for information_schema.columns.identity_maximum. + */ + public void setIdentityMaximum(String value) { + set(38, value); + } + + /** + * Getter for information_schema.columns.identity_maximum. + */ + public String getIdentityMaximum() { + return (String) get(38); + } + + /** + * Setter for information_schema.columns.identity_minimum. + */ + public void setIdentityMinimum(String value) { + set(39, value); + } + + /** + * Getter for information_schema.columns.identity_minimum. + */ + public String getIdentityMinimum() { + return (String) get(39); + } + + /** + * Setter for information_schema.columns.identity_cycle. + */ + public void setIdentityCycle(String value) { + set(40, value); + } + + /** + * Getter for information_schema.columns.identity_cycle. + */ + public String getIdentityCycle() { + return (String) get(40); + } + + /** + * Setter for information_schema.columns.is_generated. + */ + public void setIsGenerated(String value) { + set(41, value); + } + + /** + * Getter for information_schema.columns.is_generated. + */ + public String getIsGenerated() { + return (String) get(41); + } + + /** + * Setter for information_schema.columns.generation_expression. + */ + public void setGenerationExpression(String value) { + set(42, value); + } + + /** + * Getter for information_schema.columns.generation_expression. + */ + public String getGenerationExpression() { + return (String) get(42); + } + + /** + * Setter for information_schema.columns.is_updatable. + */ + public void setIsUpdatable(String value) { + set(43, value); + } + + /** + * Getter for information_schema.columns.is_updatable. + */ + public String getIsUpdatable() { + return (String) get(43); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ColumnsRecord + */ + public ColumnsRecord() { + super(Columns.COLUMNS); + } + + /** + * Create a detached, initialised ColumnsRecord + */ + public ColumnsRecord(String tableCatalog, String tableSchema, String tableName, String columnName, Integer ordinalPosition, String columnDefault, String isNullable, String dataType, Integer characterMaximumLength, Integer characterOctetLength, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, String domainCatalog, String domainSchema, String domainName, String udtCatalog, String udtSchema, String udtName, String scopeCatalog, String scopeSchema, String scopeName, Integer maximumCardinality, String dtdIdentifier, String isSelfReferencing, String isIdentity, String identityGeneration, String identityStart, String identityIncrement, String identityMaximum, String identityMinimum, String identityCycle, String isGenerated, String generationExpression, String isUpdatable) { + super(Columns.COLUMNS); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setOrdinalPosition(ordinalPosition); + setColumnDefault(columnDefault); + setIsNullable(isNullable); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setDomainCatalog(domainCatalog); + setDomainSchema(domainSchema); + setDomainName(domainName); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setScopeCatalog(scopeCatalog); + setScopeSchema(scopeSchema); + setScopeName(scopeName); + setMaximumCardinality(maximumCardinality); + setDtdIdentifier(dtdIdentifier); + setIsSelfReferencing(isSelfReferencing); + setIsIdentity(isIdentity); + setIdentityGeneration(identityGeneration); + setIdentityStart(identityStart); + setIdentityIncrement(identityIncrement); + setIdentityMaximum(identityMaximum); + setIdentityMinimum(identityMinimum); + setIdentityCycle(identityCycle); + setIsGenerated(isGenerated); + setGenerationExpression(generationExpression); + setIsUpdatable(isUpdatable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintColumnUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintColumnUsageRecord.java new file mode 100644 index 0000000..a42195c --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintColumnUsageRecord.java @@ -0,0 +1,158 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ConstraintColumnUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ConstraintColumnUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.constraint_column_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.constraint_column_usage.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.constraint_column_usage.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.constraint_column_usage.column_name. + */ + public void setColumnName(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.column_name. + */ + public String getColumnName() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.constraint_column_usage.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.constraint_column_usage.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.constraint_column_usage.constraint_name. + */ + public void setConstraintName(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.constraint_column_usage.constraint_name. + */ + public String getConstraintName() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ConstraintColumnUsageRecord + */ + public ConstraintColumnUsageRecord() { + super(ConstraintColumnUsage.CONSTRAINT_COLUMN_USAGE); + } + + /** + * Create a detached, initialised ConstraintColumnUsageRecord + */ + public ConstraintColumnUsageRecord(String tableCatalog, String tableSchema, String tableName, String columnName, String constraintCatalog, String constraintSchema, String constraintName) { + super(ConstraintColumnUsage.CONSTRAINT_COLUMN_USAGE); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintTableUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintTableUsageRecord.java new file mode 100644 index 0000000..e623824 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ConstraintTableUsageRecord.java @@ -0,0 +1,141 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ConstraintTableUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ConstraintTableUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.constraint_table_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.constraint_table_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.constraint_table_usage.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.constraint_table_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.constraint_table_usage.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.constraint_table_usage.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.constraint_table_usage.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.constraint_table_usage.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.constraint_table_usage.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.constraint_table_usage.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.constraint_table_usage.constraint_name. + */ + public void setConstraintName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.constraint_table_usage.constraint_name. + */ + public String getConstraintName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ConstraintTableUsageRecord + */ + public ConstraintTableUsageRecord() { + super(ConstraintTableUsage.CONSTRAINT_TABLE_USAGE); + } + + /** + * Create a detached, initialised ConstraintTableUsageRecord + */ + public ConstraintTableUsageRecord(String tableCatalog, String tableSchema, String tableName, String constraintCatalog, String constraintSchema, String constraintName) { + super(ConstraintTableUsage.CONSTRAINT_TABLE_USAGE); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DataTypePrivilegesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DataTypePrivilegesRecord.java new file mode 100644 index 0000000..22b5b38 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DataTypePrivilegesRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DataTypePrivileges; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DataTypePrivilegesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.data_type_privileges.object_catalog. + */ + public void setObjectCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.data_type_privileges.object_catalog. + */ + public String getObjectCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.data_type_privileges.object_schema. + */ + public void setObjectSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.data_type_privileges.object_schema. + */ + public String getObjectSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.data_type_privileges.object_name. + */ + public void setObjectName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.data_type_privileges.object_name. + */ + public String getObjectName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.data_type_privileges.object_type. + */ + public void setObjectType(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.data_type_privileges.object_type. + */ + public String getObjectType() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.data_type_privileges.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.data_type_privileges.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached DataTypePrivilegesRecord + */ + public DataTypePrivilegesRecord() { + super(DataTypePrivileges.DATA_TYPE_PRIVILEGES); + } + + /** + * Create a detached, initialised DataTypePrivilegesRecord + */ + public DataTypePrivilegesRecord(String objectCatalog, String objectSchema, String objectName, String objectType, String dtdIdentifier) { + super(DataTypePrivileges.DATA_TYPE_PRIVILEGES); + + setObjectCatalog(objectCatalog); + setObjectSchema(objectSchema); + setObjectName(objectName); + setObjectType(objectType); + setDtdIdentifier(dtdIdentifier); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainConstraintsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainConstraintsRecord.java new file mode 100644 index 0000000..6c37455 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainConstraintsRecord.java @@ -0,0 +1,175 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DomainConstraints; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DomainConstraintsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.domain_constraints.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.domain_constraints.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.domain_constraints.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.domain_constraints.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.domain_constraints.constraint_name. + */ + public void setConstraintName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.domain_constraints.constraint_name. + */ + public String getConstraintName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.domain_constraints.domain_catalog. + */ + public void setDomainCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.domain_constraints.domain_catalog. + */ + public String getDomainCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.domain_constraints.domain_schema. + */ + public void setDomainSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.domain_constraints.domain_schema. + */ + public String getDomainSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.domain_constraints.domain_name. + */ + public void setDomainName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.domain_constraints.domain_name. + */ + public String getDomainName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.domain_constraints.is_deferrable. + */ + public void setIsDeferrable(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.domain_constraints.is_deferrable. + */ + public String getIsDeferrable() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.domain_constraints.initially_deferred. + */ + public void setInitiallyDeferred(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.domain_constraints.initially_deferred. + */ + public String getInitiallyDeferred() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached DomainConstraintsRecord + */ + public DomainConstraintsRecord() { + super(DomainConstraints.DOMAIN_CONSTRAINTS); + } + + /** + * Create a detached, initialised DomainConstraintsRecord + */ + public DomainConstraintsRecord(String constraintCatalog, String constraintSchema, String constraintName, String domainCatalog, String domainSchema, String domainName, String isDeferrable, String initiallyDeferred) { + super(DomainConstraints.DOMAIN_CONSTRAINTS); + + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + setDomainCatalog(domainCatalog); + setDomainSchema(domainSchema); + setDomainName(domainName); + setIsDeferrable(isDeferrable); + setInitiallyDeferred(initiallyDeferred); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainUdtUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainUdtUsageRecord.java new file mode 100644 index 0000000..1c91a9d --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainUdtUsageRecord.java @@ -0,0 +1,133 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.DomainUdtUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DomainUdtUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.domain_udt_usage.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.domain_udt_usage.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.domain_udt_usage.udt_schema. + */ + public void setUdtSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.domain_udt_usage.udt_schema. + */ + public String getUdtSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.domain_udt_usage.udt_name. + */ + public void setUdtName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.domain_udt_usage.udt_name. + */ + public String getUdtName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.domain_udt_usage.domain_catalog. + */ + public void setDomainCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.domain_udt_usage.domain_catalog. + */ + public String getDomainCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.domain_udt_usage.domain_schema. + */ + public void setDomainSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.domain_udt_usage.domain_schema. + */ + public String getDomainSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.domain_udt_usage.domain_name. + */ + public void setDomainName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.domain_udt_usage.domain_name. + */ + public String getDomainName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached DomainUdtUsageRecord + */ + public DomainUdtUsageRecord() { + super(DomainUdtUsage.DOMAIN_UDT_USAGE); + } + + /** + * Create a detached, initialised DomainUdtUsageRecord + */ + public DomainUdtUsageRecord(String udtCatalog, String udtSchema, String udtName, String domainCatalog, String domainSchema, String domainName) { + super(DomainUdtUsage.DOMAIN_UDT_USAGE); + + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setDomainCatalog(domainCatalog); + setDomainSchema(domainSchema); + setDomainName(domainName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainsRecord.java new file mode 100644 index 0000000..c25f57e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/DomainsRecord.java @@ -0,0 +1,450 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Domains; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DomainsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.domains.domain_catalog. + */ + public void setDomainCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.domains.domain_catalog. + */ + public String getDomainCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.domains.domain_schema. + */ + public void setDomainSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.domains.domain_schema. + */ + public String getDomainSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.domains.domain_name. + */ + public void setDomainName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.domains.domain_name. + */ + public String getDomainName() { + return (String) get(2); + } + + /** + * Setter for information_schema.domains.data_type. + */ + public void setDataType(String value) { + set(3, value); + } + + /** + * Getter for information_schema.domains.data_type. + */ + public String getDataType() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.domains.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(4, value); + } + + /** + * Getter for + * information_schema.domains.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(4); + } + + /** + * Setter for + * information_schema.domains.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(5, value); + } + + /** + * Getter for + * information_schema.domains.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(5); + } + + /** + * Setter for information_schema.domains.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(6, value); + } + + /** + * Getter for information_schema.domains.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(6); + } + + /** + * Setter for information_schema.domains.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(7, value); + } + + /** + * Getter for information_schema.domains.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(7); + } + + /** + * Setter for information_schema.domains.character_set_name. + */ + public void setCharacterSetName(String value) { + set(8, value); + } + + /** + * Getter for information_schema.domains.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(8); + } + + /** + * Setter for information_schema.domains.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(9, value); + } + + /** + * Getter for information_schema.domains.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(9); + } + + /** + * Setter for information_schema.domains.collation_schema. + */ + public void setCollationSchema(String value) { + set(10, value); + } + + /** + * Getter for information_schema.domains.collation_schema. + */ + public String getCollationSchema() { + return (String) get(10); + } + + /** + * Setter for information_schema.domains.collation_name. + */ + public void setCollationName(String value) { + set(11, value); + } + + /** + * Getter for information_schema.domains.collation_name. + */ + public String getCollationName() { + return (String) get(11); + } + + /** + * Setter for information_schema.domains.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(12, value); + } + + /** + * Getter for information_schema.domains.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(12); + } + + /** + * Setter for + * information_schema.domains.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(13, value); + } + + /** + * Getter for + * information_schema.domains.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(13); + } + + /** + * Setter for information_schema.domains.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(14, value); + } + + /** + * Getter for information_schema.domains.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(14); + } + + /** + * Setter for information_schema.domains.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(15, value); + } + + /** + * Getter for information_schema.domains.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(15); + } + + /** + * Setter for information_schema.domains.interval_type. + */ + public void setIntervalType(String value) { + set(16, value); + } + + /** + * Getter for information_schema.domains.interval_type. + */ + public String getIntervalType() { + return (String) get(16); + } + + /** + * Setter for information_schema.domains.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(17, value); + } + + /** + * Getter for information_schema.domains.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(17); + } + + /** + * Setter for information_schema.domains.domain_default. + */ + public void setDomainDefault(String value) { + set(18, value); + } + + /** + * Getter for information_schema.domains.domain_default. + */ + public String getDomainDefault() { + return (String) get(18); + } + + /** + * Setter for information_schema.domains.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(19, value); + } + + /** + * Getter for information_schema.domains.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(19); + } + + /** + * Setter for information_schema.domains.udt_schema. + */ + public void setUdtSchema(String value) { + set(20, value); + } + + /** + * Getter for information_schema.domains.udt_schema. + */ + public String getUdtSchema() { + return (String) get(20); + } + + /** + * Setter for information_schema.domains.udt_name. + */ + public void setUdtName(String value) { + set(21, value); + } + + /** + * Getter for information_schema.domains.udt_name. + */ + public String getUdtName() { + return (String) get(21); + } + + /** + * Setter for information_schema.domains.scope_catalog. + */ + public void setScopeCatalog(String value) { + set(22, value); + } + + /** + * Getter for information_schema.domains.scope_catalog. + */ + public String getScopeCatalog() { + return (String) get(22); + } + + /** + * Setter for information_schema.domains.scope_schema. + */ + public void setScopeSchema(String value) { + set(23, value); + } + + /** + * Getter for information_schema.domains.scope_schema. + */ + public String getScopeSchema() { + return (String) get(23); + } + + /** + * Setter for information_schema.domains.scope_name. + */ + public void setScopeName(String value) { + set(24, value); + } + + /** + * Getter for information_schema.domains.scope_name. + */ + public String getScopeName() { + return (String) get(24); + } + + /** + * Setter for information_schema.domains.maximum_cardinality. + */ + public void setMaximumCardinality(Integer value) { + set(25, value); + } + + /** + * Getter for information_schema.domains.maximum_cardinality. + */ + public Integer getMaximumCardinality() { + return (Integer) get(25); + } + + /** + * Setter for information_schema.domains.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(26, value); + } + + /** + * Getter for information_schema.domains.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(26); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached DomainsRecord + */ + public DomainsRecord() { + super(Domains.DOMAINS); + } + + /** + * Create a detached, initialised DomainsRecord + */ + public DomainsRecord(String domainCatalog, String domainSchema, String domainName, String dataType, Integer characterMaximumLength, Integer characterOctetLength, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String domainDefault, String udtCatalog, String udtSchema, String udtName, String scopeCatalog, String scopeSchema, String scopeName, Integer maximumCardinality, String dtdIdentifier) { + super(Domains.DOMAINS); + + setDomainCatalog(domainCatalog); + setDomainSchema(domainSchema); + setDomainName(domainName); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setDomainDefault(domainDefault); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setScopeCatalog(scopeCatalog); + setScopeSchema(scopeSchema); + setScopeName(scopeName); + setMaximumCardinality(maximumCardinality); + setDtdIdentifier(dtdIdentifier); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ElementTypesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ElementTypesRecord.java new file mode 100644 index 0000000..5e6fa35 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ElementTypesRecord.java @@ -0,0 +1,500 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ElementTypes; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ElementTypesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.element_types.object_catalog. + */ + public void setObjectCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.element_types.object_catalog. + */ + public String getObjectCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.element_types.object_schema. + */ + public void setObjectSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.element_types.object_schema. + */ + public String getObjectSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.element_types.object_name. + */ + public void setObjectName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.element_types.object_name. + */ + public String getObjectName() { + return (String) get(2); + } + + /** + * Setter for information_schema.element_types.object_type. + */ + public void setObjectType(String value) { + set(3, value); + } + + /** + * Getter for information_schema.element_types.object_type. + */ + public String getObjectType() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.element_types.collection_type_identifier. + */ + public void setCollectionTypeIdentifier(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.element_types.collection_type_identifier. + */ + public String getCollectionTypeIdentifier() { + return (String) get(4); + } + + /** + * Setter for information_schema.element_types.data_type. + */ + public void setDataType(String value) { + set(5, value); + } + + /** + * Getter for information_schema.element_types.data_type. + */ + public String getDataType() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.element_types.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(6, value); + } + + /** + * Getter for + * information_schema.element_types.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(6); + } + + /** + * Setter for + * information_schema.element_types.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(7, value); + } + + /** + * Getter for + * information_schema.element_types.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(7); + } + + /** + * Setter for + * information_schema.element_types.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.element_types.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.element_types.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(9, value); + } + + /** + * Getter for + * information_schema.element_types.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(9); + } + + /** + * Setter for + * information_schema.element_types.character_set_name. + */ + public void setCharacterSetName(String value) { + set(10, value); + } + + /** + * Getter for + * information_schema.element_types.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(10); + } + + /** + * Setter for + * information_schema.element_types.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(11, value); + } + + /** + * Getter for + * information_schema.element_types.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(11); + } + + /** + * Setter for + * information_schema.element_types.collation_schema. + */ + public void setCollationSchema(String value) { + set(12, value); + } + + /** + * Getter for + * information_schema.element_types.collation_schema. + */ + public String getCollationSchema() { + return (String) get(12); + } + + /** + * Setter for information_schema.element_types.collation_name. + */ + public void setCollationName(String value) { + set(13, value); + } + + /** + * Getter for information_schema.element_types.collation_name. + */ + public String getCollationName() { + return (String) get(13); + } + + /** + * Setter for + * information_schema.element_types.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(14, value); + } + + /** + * Getter for + * information_schema.element_types.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(14); + } + + /** + * Setter for + * information_schema.element_types.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(15, value); + } + + /** + * Getter for + * information_schema.element_types.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(15); + } + + /** + * Setter for information_schema.element_types.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(16, value); + } + + /** + * Getter for information_schema.element_types.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(16); + } + + /** + * Setter for + * information_schema.element_types.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(17, value); + } + + /** + * Getter for + * information_schema.element_types.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(17); + } + + /** + * Setter for information_schema.element_types.interval_type. + */ + public void setIntervalType(String value) { + set(18, value); + } + + /** + * Getter for information_schema.element_types.interval_type. + */ + public String getIntervalType() { + return (String) get(18); + } + + /** + * Setter for + * information_schema.element_types.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(19, value); + } + + /** + * Getter for + * information_schema.element_types.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(19); + } + + /** + * Setter for information_schema.element_types.domain_default. + */ + public void setDomainDefault(String value) { + set(20, value); + } + + /** + * Getter for information_schema.element_types.domain_default. + */ + public String getDomainDefault() { + return (String) get(20); + } + + /** + * Setter for information_schema.element_types.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(21, value); + } + + /** + * Getter for information_schema.element_types.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(21); + } + + /** + * Setter for information_schema.element_types.udt_schema. + */ + public void setUdtSchema(String value) { + set(22, value); + } + + /** + * Getter for information_schema.element_types.udt_schema. + */ + public String getUdtSchema() { + return (String) get(22); + } + + /** + * Setter for information_schema.element_types.udt_name. + */ + public void setUdtName(String value) { + set(23, value); + } + + /** + * Getter for information_schema.element_types.udt_name. + */ + public String getUdtName() { + return (String) get(23); + } + + /** + * Setter for information_schema.element_types.scope_catalog. + */ + public void setScopeCatalog(String value) { + set(24, value); + } + + /** + * Getter for information_schema.element_types.scope_catalog. + */ + public String getScopeCatalog() { + return (String) get(24); + } + + /** + * Setter for information_schema.element_types.scope_schema. + */ + public void setScopeSchema(String value) { + set(25, value); + } + + /** + * Getter for information_schema.element_types.scope_schema. + */ + public String getScopeSchema() { + return (String) get(25); + } + + /** + * Setter for information_schema.element_types.scope_name. + */ + public void setScopeName(String value) { + set(26, value); + } + + /** + * Getter for information_schema.element_types.scope_name. + */ + public String getScopeName() { + return (String) get(26); + } + + /** + * Setter for + * information_schema.element_types.maximum_cardinality. + */ + public void setMaximumCardinality(Integer value) { + set(27, value); + } + + /** + * Getter for + * information_schema.element_types.maximum_cardinality. + */ + public Integer getMaximumCardinality() { + return (Integer) get(27); + } + + /** + * Setter for information_schema.element_types.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(28, value); + } + + /** + * Getter for information_schema.element_types.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(28); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ElementTypesRecord + */ + public ElementTypesRecord() { + super(ElementTypes.ELEMENT_TYPES); + } + + /** + * Create a detached, initialised ElementTypesRecord + */ + public ElementTypesRecord(String objectCatalog, String objectSchema, String objectName, String objectType, String collectionTypeIdentifier, String dataType, Integer characterMaximumLength, Integer characterOctetLength, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String domainDefault, String udtCatalog, String udtSchema, String udtName, String scopeCatalog, String scopeSchema, String scopeName, Integer maximumCardinality, String dtdIdentifier) { + super(ElementTypes.ELEMENT_TYPES); + + setObjectCatalog(objectCatalog); + setObjectSchema(objectSchema); + setObjectName(objectName); + setObjectType(objectType); + setCollectionTypeIdentifier(collectionTypeIdentifier); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setDomainDefault(domainDefault); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setScopeCatalog(scopeCatalog); + setScopeSchema(scopeSchema); + setScopeName(scopeName); + setMaximumCardinality(maximumCardinality); + setDtdIdentifier(dtdIdentifier); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/EnabledRolesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/EnabledRolesRecord.java new file mode 100644 index 0000000..9ab0a1b --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/EnabledRolesRecord.java @@ -0,0 +1,54 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.EnabledRoles; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class EnabledRolesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.enabled_roles.role_name. + */ + public void setRoleName(String value) { + set(0, value); + } + + /** + * Getter for information_schema.enabled_roles.role_name. + */ + public String getRoleName() { + return (String) get(0); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached EnabledRolesRecord + */ + public EnabledRolesRecord() { + super(EnabledRoles.ENABLED_ROLES); + } + + /** + * Create a detached, initialised EnabledRolesRecord + */ + public EnabledRolesRecord(String roleName) { + super(EnabledRoles.ENABLED_ROLES); + + setRoleName(roleName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrapperOptionsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrapperOptionsRecord.java new file mode 100644 index 0000000..e2fc132 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrapperOptionsRecord.java @@ -0,0 +1,107 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignDataWrapperOptions; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignDataWrapperOptionsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.foreign_data_wrapper_options.foreign_data_wrapper_catalog. + */ + public void setForeignDataWrapperCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrapper_options.foreign_data_wrapper_catalog. + */ + public String getForeignDataWrapperCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.foreign_data_wrapper_options.foreign_data_wrapper_name. + */ + public void setForeignDataWrapperName(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrapper_options.foreign_data_wrapper_name. + */ + public String getForeignDataWrapperName() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.foreign_data_wrapper_options.option_name. + */ + public void setOptionName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrapper_options.option_name. + */ + public String getOptionName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.foreign_data_wrapper_options.option_value. + */ + public void setOptionValue(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrapper_options.option_value. + */ + public String getOptionValue() { + return (String) get(3); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ForeignDataWrapperOptionsRecord + */ + public ForeignDataWrapperOptionsRecord() { + super(ForeignDataWrapperOptions.FOREIGN_DATA_WRAPPER_OPTIONS); + } + + /** + * Create a detached, initialised ForeignDataWrapperOptionsRecord + */ + public ForeignDataWrapperOptionsRecord(String foreignDataWrapperCatalog, String foreignDataWrapperName, String optionName, String optionValue) { + super(ForeignDataWrapperOptions.FOREIGN_DATA_WRAPPER_OPTIONS); + + setForeignDataWrapperCatalog(foreignDataWrapperCatalog); + setForeignDataWrapperName(foreignDataWrapperName); + setOptionName(optionName); + setOptionValue(optionValue); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrappersRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrappersRecord.java new file mode 100644 index 0000000..5bb85c9 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignDataWrappersRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignDataWrappers; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignDataWrappersRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.foreign_data_wrappers.foreign_data_wrapper_catalog. + */ + public void setForeignDataWrapperCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrappers.foreign_data_wrapper_catalog. + */ + public String getForeignDataWrapperCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.foreign_data_wrappers.foreign_data_wrapper_name. + */ + public void setForeignDataWrapperName(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrappers.foreign_data_wrapper_name. + */ + public String getForeignDataWrapperName() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.foreign_data_wrappers.authorization_identifier. + */ + public void setAuthorizationIdentifier(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrappers.authorization_identifier. + */ + public String getAuthorizationIdentifier() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.foreign_data_wrappers.library_name. + */ + public void setLibraryName(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrappers.library_name. + */ + public String getLibraryName() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.foreign_data_wrappers.foreign_data_wrapper_language. + */ + public void setForeignDataWrapperLanguage(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.foreign_data_wrappers.foreign_data_wrapper_language. + */ + public String getForeignDataWrapperLanguage() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ForeignDataWrappersRecord + */ + public ForeignDataWrappersRecord() { + super(ForeignDataWrappers.FOREIGN_DATA_WRAPPERS); + } + + /** + * Create a detached, initialised ForeignDataWrappersRecord + */ + public ForeignDataWrappersRecord(String foreignDataWrapperCatalog, String foreignDataWrapperName, String authorizationIdentifier, String libraryName, String foreignDataWrapperLanguage) { + super(ForeignDataWrappers.FOREIGN_DATA_WRAPPERS); + + setForeignDataWrapperCatalog(foreignDataWrapperCatalog); + setForeignDataWrapperName(foreignDataWrapperName); + setAuthorizationIdentifier(authorizationIdentifier); + setLibraryName(libraryName); + setForeignDataWrapperLanguage(foreignDataWrapperLanguage); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServerOptionsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServerOptionsRecord.java new file mode 100644 index 0000000..d658e4a --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServerOptionsRecord.java @@ -0,0 +1,107 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignServerOptions; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignServerOptionsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.foreign_server_options.foreign_server_catalog. + */ + public void setForeignServerCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.foreign_server_options.foreign_server_catalog. + */ + public String getForeignServerCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.foreign_server_options.foreign_server_name. + */ + public void setForeignServerName(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.foreign_server_options.foreign_server_name. + */ + public String getForeignServerName() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.foreign_server_options.option_name. + */ + public void setOptionName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.foreign_server_options.option_name. + */ + public String getOptionName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.foreign_server_options.option_value. + */ + public void setOptionValue(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.foreign_server_options.option_value. + */ + public String getOptionValue() { + return (String) get(3); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ForeignServerOptionsRecord + */ + public ForeignServerOptionsRecord() { + super(ForeignServerOptions.FOREIGN_SERVER_OPTIONS); + } + + /** + * Create a detached, initialised ForeignServerOptionsRecord + */ + public ForeignServerOptionsRecord(String foreignServerCatalog, String foreignServerName, String optionName, String optionValue) { + super(ForeignServerOptions.FOREIGN_SERVER_OPTIONS); + + setForeignServerCatalog(foreignServerCatalog); + setForeignServerName(foreignServerName); + setOptionName(optionName); + setOptionValue(optionValue); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServersRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServersRecord.java new file mode 100644 index 0000000..9286a07 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignServersRecord.java @@ -0,0 +1,158 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignServers; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignServersRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.foreign_servers.foreign_server_catalog. + */ + public void setForeignServerCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.foreign_servers.foreign_server_catalog. + */ + public String getForeignServerCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.foreign_servers.foreign_server_name. + */ + public void setForeignServerName(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.foreign_servers.foreign_server_name. + */ + public String getForeignServerName() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.foreign_servers.foreign_data_wrapper_catalog. + */ + public void setForeignDataWrapperCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.foreign_servers.foreign_data_wrapper_catalog. + */ + public String getForeignDataWrapperCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.foreign_servers.foreign_data_wrapper_name. + */ + public void setForeignDataWrapperName(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.foreign_servers.foreign_data_wrapper_name. + */ + public String getForeignDataWrapperName() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.foreign_servers.foreign_server_type. + */ + public void setForeignServerType(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.foreign_servers.foreign_server_type. + */ + public String getForeignServerType() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.foreign_servers.foreign_server_version. + */ + public void setForeignServerVersion(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.foreign_servers.foreign_server_version. + */ + public String getForeignServerVersion() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.foreign_servers.authorization_identifier. + */ + public void setAuthorizationIdentifier(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.foreign_servers.authorization_identifier. + */ + public String getAuthorizationIdentifier() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ForeignServersRecord + */ + public ForeignServersRecord() { + super(ForeignServers.FOREIGN_SERVERS); + } + + /** + * Create a detached, initialised ForeignServersRecord + */ + public ForeignServersRecord(String foreignServerCatalog, String foreignServerName, String foreignDataWrapperCatalog, String foreignDataWrapperName, String foreignServerType, String foreignServerVersion, String authorizationIdentifier) { + super(ForeignServers.FOREIGN_SERVERS); + + setForeignServerCatalog(foreignServerCatalog); + setForeignServerName(foreignServerName); + setForeignDataWrapperCatalog(foreignDataWrapperCatalog); + setForeignDataWrapperName(foreignDataWrapperName); + setForeignServerType(foreignServerType); + setForeignServerVersion(foreignServerVersion); + setAuthorizationIdentifier(authorizationIdentifier); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTableOptionsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTableOptionsRecord.java new file mode 100644 index 0000000..138cea7 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTableOptionsRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignTableOptions; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignTableOptionsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.foreign_table_options.foreign_table_catalog. + */ + public void setForeignTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.foreign_table_options.foreign_table_catalog. + */ + public String getForeignTableCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.foreign_table_options.foreign_table_schema. + */ + public void setForeignTableSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.foreign_table_options.foreign_table_schema. + */ + public String getForeignTableSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.foreign_table_options.foreign_table_name. + */ + public void setForeignTableName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.foreign_table_options.foreign_table_name. + */ + public String getForeignTableName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.foreign_table_options.option_name. + */ + public void setOptionName(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.foreign_table_options.option_name. + */ + public String getOptionName() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.foreign_table_options.option_value. + */ + public void setOptionValue(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.foreign_table_options.option_value. + */ + public String getOptionValue() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ForeignTableOptionsRecord + */ + public ForeignTableOptionsRecord() { + super(ForeignTableOptions.FOREIGN_TABLE_OPTIONS); + } + + /** + * Create a detached, initialised ForeignTableOptionsRecord + */ + public ForeignTableOptionsRecord(String foreignTableCatalog, String foreignTableSchema, String foreignTableName, String optionName, String optionValue) { + super(ForeignTableOptions.FOREIGN_TABLE_OPTIONS); + + setForeignTableCatalog(foreignTableCatalog); + setForeignTableSchema(foreignTableSchema); + setForeignTableName(foreignTableName); + setOptionName(optionName); + setOptionValue(optionValue); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTablesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTablesRecord.java new file mode 100644 index 0000000..896311f --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ForeignTablesRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ForeignTables; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ForeignTablesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.foreign_tables.foreign_table_catalog. + */ + public void setForeignTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.foreign_tables.foreign_table_catalog. + */ + public String getForeignTableCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.foreign_tables.foreign_table_schema. + */ + public void setForeignTableSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.foreign_tables.foreign_table_schema. + */ + public String getForeignTableSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.foreign_tables.foreign_table_name. + */ + public void setForeignTableName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.foreign_tables.foreign_table_name. + */ + public String getForeignTableName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.foreign_tables.foreign_server_catalog. + */ + public void setForeignServerCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.foreign_tables.foreign_server_catalog. + */ + public String getForeignServerCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.foreign_tables.foreign_server_name. + */ + public void setForeignServerName(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.foreign_tables.foreign_server_name. + */ + public String getForeignServerName() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ForeignTablesRecord + */ + public ForeignTablesRecord() { + super(ForeignTables.FOREIGN_TABLES); + } + + /** + * Create a detached, initialised ForeignTablesRecord + */ + public ForeignTablesRecord(String foreignTableCatalog, String foreignTableSchema, String foreignTableName, String foreignServerCatalog, String foreignServerName) { + super(ForeignTables.FOREIGN_TABLES); + + setForeignTableCatalog(foreignTableCatalog); + setForeignTableSchema(foreignTableSchema); + setForeignTableName(foreignTableName); + setForeignServerCatalog(foreignServerCatalog); + setForeignServerName(foreignServerName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/InformationSchemaCatalogNameRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/InformationSchemaCatalogNameRecord.java new file mode 100644 index 0000000..31cb53e --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/InformationSchemaCatalogNameRecord.java @@ -0,0 +1,56 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.InformationSchemaCatalogName; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InformationSchemaCatalogNameRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.information_schema_catalog_name.catalog_name. + */ + public void setCatalogName(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.information_schema_catalog_name.catalog_name. + */ + public String getCatalogName() { + return (String) get(0); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached InformationSchemaCatalogNameRecord + */ + public InformationSchemaCatalogNameRecord() { + super(InformationSchemaCatalogName.INFORMATION_SCHEMA_CATALOG_NAME); + } + + /** + * Create a detached, initialised InformationSchemaCatalogNameRecord + */ + public InformationSchemaCatalogNameRecord(String catalogName) { + super(InformationSchemaCatalogName.INFORMATION_SCHEMA_CATALOG_NAME); + + setCatalogName(catalogName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/KeyColumnUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/KeyColumnUsageRecord.java new file mode 100644 index 0000000..5723676 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/KeyColumnUsageRecord.java @@ -0,0 +1,186 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.KeyColumnUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class KeyColumnUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.key_column_usage.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.key_column_usage.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.key_column_usage.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.key_column_usage.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.key_column_usage.constraint_name. + */ + public void setConstraintName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.key_column_usage.constraint_name. + */ + public String getConstraintName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.key_column_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.key_column_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(3); + } + + /** + * Setter for information_schema.key_column_usage.table_schema. + */ + public void setTableSchema(String value) { + set(4, value); + } + + /** + * Getter for information_schema.key_column_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.key_column_usage.table_name. + */ + public void setTableName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.key_column_usage.table_name. + */ + public String getTableName() { + return (String) get(5); + } + + /** + * Setter for information_schema.key_column_usage.column_name. + */ + public void setColumnName(String value) { + set(6, value); + } + + /** + * Getter for information_schema.key_column_usage.column_name. + */ + public String getColumnName() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.key_column_usage.ordinal_position. + */ + public void setOrdinalPosition(Integer value) { + set(7, value); + } + + /** + * Getter for + * information_schema.key_column_usage.ordinal_position. + */ + public Integer getOrdinalPosition() { + return (Integer) get(7); + } + + /** + * Setter for + * information_schema.key_column_usage.position_in_unique_constraint. + */ + public void setPositionInUniqueConstraint(Integer value) { + set(8, value); + } + + /** + * Getter for + * information_schema.key_column_usage.position_in_unique_constraint. + */ + public Integer getPositionInUniqueConstraint() { + return (Integer) get(8); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached KeyColumnUsageRecord + */ + public KeyColumnUsageRecord() { + super(KeyColumnUsage.KEY_COLUMN_USAGE); + } + + /** + * Create a detached, initialised KeyColumnUsageRecord + */ + public KeyColumnUsageRecord(String constraintCatalog, String constraintSchema, String constraintName, String tableCatalog, String tableSchema, String tableName, String columnName, Integer ordinalPosition, Integer positionInUniqueConstraint) { + super(KeyColumnUsage.KEY_COLUMN_USAGE); + + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setOrdinalPosition(ordinalPosition); + setPositionInUniqueConstraint(positionInUniqueConstraint); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ParametersRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ParametersRecord.java new file mode 100644 index 0000000..e2ede9c --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ParametersRecord.java @@ -0,0 +1,531 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Parameters; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ParametersRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.parameters.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.parameters.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.parameters.specific_schema. + */ + public void setSpecificSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.parameters.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.parameters.specific_name. + */ + public void setSpecificName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.parameters.specific_name. + */ + public String getSpecificName() { + return (String) get(2); + } + + /** + * Setter for information_schema.parameters.ordinal_position. + */ + public void setOrdinalPosition(Integer value) { + set(3, value); + } + + /** + * Getter for information_schema.parameters.ordinal_position. + */ + public Integer getOrdinalPosition() { + return (Integer) get(3); + } + + /** + * Setter for information_schema.parameters.parameter_mode. + */ + public void setParameterMode(String value) { + set(4, value); + } + + /** + * Getter for information_schema.parameters.parameter_mode. + */ + public String getParameterMode() { + return (String) get(4); + } + + /** + * Setter for information_schema.parameters.is_result. + */ + public void setIsResult(String value) { + set(5, value); + } + + /** + * Getter for information_schema.parameters.is_result. + */ + public String getIsResult() { + return (String) get(5); + } + + /** + * Setter for information_schema.parameters.as_locator. + */ + public void setAsLocator(String value) { + set(6, value); + } + + /** + * Getter for information_schema.parameters.as_locator. + */ + public String getAsLocator() { + return (String) get(6); + } + + /** + * Setter for information_schema.parameters.parameter_name. + */ + public void setParameterName(String value) { + set(7, value); + } + + /** + * Getter for information_schema.parameters.parameter_name. + */ + public String getParameterName() { + return (String) get(7); + } + + /** + * Setter for information_schema.parameters.data_type. + */ + public void setDataType(String value) { + set(8, value); + } + + /** + * Getter for information_schema.parameters.data_type. + */ + public String getDataType() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.parameters.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(9, value); + } + + /** + * Getter for + * information_schema.parameters.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(9); + } + + /** + * Setter for + * information_schema.parameters.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(10, value); + } + + /** + * Getter for + * information_schema.parameters.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(10); + } + + /** + * Setter for + * information_schema.parameters.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(11, value); + } + + /** + * Getter for + * information_schema.parameters.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(11); + } + + /** + * Setter for + * information_schema.parameters.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(12, value); + } + + /** + * Getter for + * information_schema.parameters.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(12); + } + + /** + * Setter for information_schema.parameters.character_set_name. + */ + public void setCharacterSetName(String value) { + set(13, value); + } + + /** + * Getter for information_schema.parameters.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(13); + } + + /** + * Setter for information_schema.parameters.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(14, value); + } + + /** + * Getter for information_schema.parameters.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(14); + } + + /** + * Setter for information_schema.parameters.collation_schema. + */ + public void setCollationSchema(String value) { + set(15, value); + } + + /** + * Getter for information_schema.parameters.collation_schema. + */ + public String getCollationSchema() { + return (String) get(15); + } + + /** + * Setter for information_schema.parameters.collation_name. + */ + public void setCollationName(String value) { + set(16, value); + } + + /** + * Getter for information_schema.parameters.collation_name. + */ + public String getCollationName() { + return (String) get(16); + } + + /** + * Setter for information_schema.parameters.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(17, value); + } + + /** + * Getter for information_schema.parameters.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(17); + } + + /** + * Setter for + * information_schema.parameters.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(18, value); + } + + /** + * Getter for + * information_schema.parameters.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(18); + } + + /** + * Setter for information_schema.parameters.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(19, value); + } + + /** + * Getter for information_schema.parameters.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(19); + } + + /** + * Setter for information_schema.parameters.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(20, value); + } + + /** + * Getter for information_schema.parameters.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(20); + } + + /** + * Setter for information_schema.parameters.interval_type. + */ + public void setIntervalType(String value) { + set(21, value); + } + + /** + * Getter for information_schema.parameters.interval_type. + */ + public String getIntervalType() { + return (String) get(21); + } + + /** + * Setter for information_schema.parameters.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(22, value); + } + + /** + * Getter for information_schema.parameters.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(22); + } + + /** + * Setter for information_schema.parameters.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(23, value); + } + + /** + * Getter for information_schema.parameters.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(23); + } + + /** + * Setter for information_schema.parameters.udt_schema. + */ + public void setUdtSchema(String value) { + set(24, value); + } + + /** + * Getter for information_schema.parameters.udt_schema. + */ + public String getUdtSchema() { + return (String) get(24); + } + + /** + * Setter for information_schema.parameters.udt_name. + */ + public void setUdtName(String value) { + set(25, value); + } + + /** + * Getter for information_schema.parameters.udt_name. + */ + public String getUdtName() { + return (String) get(25); + } + + /** + * Setter for information_schema.parameters.scope_catalog. + */ + public void setScopeCatalog(String value) { + set(26, value); + } + + /** + * Getter for information_schema.parameters.scope_catalog. + */ + public String getScopeCatalog() { + return (String) get(26); + } + + /** + * Setter for information_schema.parameters.scope_schema. + */ + public void setScopeSchema(String value) { + set(27, value); + } + + /** + * Getter for information_schema.parameters.scope_schema. + */ + public String getScopeSchema() { + return (String) get(27); + } + + /** + * Setter for information_schema.parameters.scope_name. + */ + public void setScopeName(String value) { + set(28, value); + } + + /** + * Getter for information_schema.parameters.scope_name. + */ + public String getScopeName() { + return (String) get(28); + } + + /** + * Setter for + * information_schema.parameters.maximum_cardinality. + */ + public void setMaximumCardinality(Integer value) { + set(29, value); + } + + /** + * Getter for + * information_schema.parameters.maximum_cardinality. + */ + public Integer getMaximumCardinality() { + return (Integer) get(29); + } + + /** + * Setter for information_schema.parameters.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(30, value); + } + + /** + * Getter for information_schema.parameters.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(30); + } + + /** + * Setter for information_schema.parameters.parameter_default. + */ + public void setParameterDefault(String value) { + set(31, value); + } + + /** + * Getter for information_schema.parameters.parameter_default. + */ + public String getParameterDefault() { + return (String) get(31); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ParametersRecord + */ + public ParametersRecord() { + super(Parameters.PARAMETERS); + } + + /** + * Create a detached, initialised ParametersRecord + */ + public ParametersRecord(String specificCatalog, String specificSchema, String specificName, Integer ordinalPosition, String parameterMode, String isResult, String asLocator, String parameterName, String dataType, Integer characterMaximumLength, Integer characterOctetLength, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String udtCatalog, String udtSchema, String udtName, String scopeCatalog, String scopeSchema, String scopeName, Integer maximumCardinality, String dtdIdentifier, String parameterDefault) { + super(Parameters.PARAMETERS); + + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setOrdinalPosition(ordinalPosition); + setParameterMode(parameterMode); + setIsResult(isResult); + setAsLocator(asLocator); + setParameterName(parameterName); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setScopeCatalog(scopeCatalog); + setScopeSchema(scopeSchema); + setScopeName(scopeName); + setMaximumCardinality(maximumCardinality); + setDtdIdentifier(dtdIdentifier); + setParameterDefault(parameterDefault); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ReferentialConstraintsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ReferentialConstraintsRecord.java new file mode 100644 index 0000000..f94a318 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ReferentialConstraintsRecord.java @@ -0,0 +1,192 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ReferentialConstraints; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ReferentialConstraintsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.referential_constraints.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.referential_constraints.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.referential_constraints.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.referential_constraints.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.referential_constraints.constraint_name. + */ + public void setConstraintName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.referential_constraints.constraint_name. + */ + public String getConstraintName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.referential_constraints.unique_constraint_catalog. + */ + public void setUniqueConstraintCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.referential_constraints.unique_constraint_catalog. + */ + public String getUniqueConstraintCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.referential_constraints.unique_constraint_schema. + */ + public void setUniqueConstraintSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.referential_constraints.unique_constraint_schema. + */ + public String getUniqueConstraintSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.referential_constraints.unique_constraint_name. + */ + public void setUniqueConstraintName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.referential_constraints.unique_constraint_name. + */ + public String getUniqueConstraintName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.referential_constraints.match_option. + */ + public void setMatchOption(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.referential_constraints.match_option. + */ + public String getMatchOption() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.referential_constraints.update_rule. + */ + public void setUpdateRule(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.referential_constraints.update_rule. + */ + public String getUpdateRule() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.referential_constraints.delete_rule. + */ + public void setDeleteRule(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.referential_constraints.delete_rule. + */ + public String getDeleteRule() { + return (String) get(8); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ReferentialConstraintsRecord + */ + public ReferentialConstraintsRecord() { + super(ReferentialConstraints.REFERENTIAL_CONSTRAINTS); + } + + /** + * Create a detached, initialised ReferentialConstraintsRecord + */ + public ReferentialConstraintsRecord(String constraintCatalog, String constraintSchema, String constraintName, String uniqueConstraintCatalog, String uniqueConstraintSchema, String uniqueConstraintName, String matchOption, String updateRule, String deleteRule) { + super(ReferentialConstraints.REFERENTIAL_CONSTRAINTS); + + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + setUniqueConstraintCatalog(uniqueConstraintCatalog); + setUniqueConstraintSchema(uniqueConstraintSchema); + setUniqueConstraintName(uniqueConstraintName); + setMatchOption(matchOption); + setUpdateRule(updateRule); + setDeleteRule(deleteRule); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleColumnGrantsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleColumnGrantsRecord.java new file mode 100644 index 0000000..cc28d53 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleColumnGrantsRecord.java @@ -0,0 +1,169 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleColumnGrants; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleColumnGrantsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.role_column_grants.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.role_column_grants.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.role_column_grants.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.role_column_grants.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.role_column_grants.table_catalog. + */ + public void setTableCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.role_column_grants.table_catalog. + */ + public String getTableCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.role_column_grants.table_schema. + */ + public void setTableSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.role_column_grants.table_schema. + */ + public String getTableSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.role_column_grants.table_name. + */ + public void setTableName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.role_column_grants.table_name. + */ + public String getTableName() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.role_column_grants.column_name. + */ + public void setColumnName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.role_column_grants.column_name. + */ + public String getColumnName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.role_column_grants.privilege_type. + */ + public void setPrivilegeType(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.role_column_grants.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.role_column_grants.is_grantable. + */ + public void setIsGrantable(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.role_column_grants.is_grantable. + */ + public String getIsGrantable() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoleColumnGrantsRecord + */ + public RoleColumnGrantsRecord() { + super(RoleColumnGrants.ROLE_COLUMN_GRANTS); + } + + /** + * Create a detached, initialised RoleColumnGrantsRecord + */ + public RoleColumnGrantsRecord(String grantor, String grantee, String tableCatalog, String tableSchema, String tableName, String columnName, String privilegeType, String isGrantable) { + super(RoleColumnGrants.ROLE_COLUMN_GRANTS); + + setGrantor(grantor); + setGrantee(grantee); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleRoutineGrantsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleRoutineGrantsRecord.java new file mode 100644 index 0000000..bae718c --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleRoutineGrantsRecord.java @@ -0,0 +1,205 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleRoutineGrants; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleRoutineGrantsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.role_routine_grants.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.role_routine_grants.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.role_routine_grants.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.role_routine_grants.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.role_routine_grants.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.role_routine_grants.specific_schema. + */ + public void setSpecificSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.role_routine_grants.specific_name. + */ + public void setSpecificName(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.specific_name. + */ + public String getSpecificName() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.role_routine_grants.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.role_routine_grants.routine_schema. + */ + public void setRoutineSchema(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.role_routine_grants.routine_name. + */ + public void setRoutineName(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.routine_name. + */ + public String getRoutineName() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.role_routine_grants.privilege_type. + */ + public void setPrivilegeType(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.role_routine_grants.is_grantable. + */ + public void setIsGrantable(String value) { + set(9, value); + } + + /** + * Getter for + * information_schema.role_routine_grants.is_grantable. + */ + public String getIsGrantable() { + return (String) get(9); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoleRoutineGrantsRecord + */ + public RoleRoutineGrantsRecord() { + super(RoleRoutineGrants.ROLE_ROUTINE_GRANTS); + } + + /** + * Create a detached, initialised RoleRoutineGrantsRecord + */ + public RoleRoutineGrantsRecord(String grantor, String grantee, String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName, String privilegeType, String isGrantable) { + super(RoleRoutineGrants.ROLE_ROUTINE_GRANTS); + + setGrantor(grantor); + setGrantee(grantee); + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleTableGrantsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleTableGrantsRecord.java new file mode 100644 index 0000000..72f6409 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleTableGrantsRecord.java @@ -0,0 +1,169 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleTableGrants; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleTableGrantsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.role_table_grants.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.role_table_grants.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.role_table_grants.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.role_table_grants.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.role_table_grants.table_catalog. + */ + public void setTableCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.role_table_grants.table_catalog. + */ + public String getTableCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.role_table_grants.table_schema. + */ + public void setTableSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.role_table_grants.table_schema. + */ + public String getTableSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.role_table_grants.table_name. + */ + public void setTableName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.role_table_grants.table_name. + */ + public String getTableName() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.role_table_grants.privilege_type. + */ + public void setPrivilegeType(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.role_table_grants.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.role_table_grants.is_grantable. + */ + public void setIsGrantable(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.role_table_grants.is_grantable. + */ + public String getIsGrantable() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.role_table_grants.with_hierarchy. + */ + public void setWithHierarchy(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.role_table_grants.with_hierarchy. + */ + public String getWithHierarchy() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoleTableGrantsRecord + */ + public RoleTableGrantsRecord() { + super(RoleTableGrants.ROLE_TABLE_GRANTS); + } + + /** + * Create a detached, initialised RoleTableGrantsRecord + */ + public RoleTableGrantsRecord(String grantor, String grantee, String tableCatalog, String tableSchema, String tableName, String privilegeType, String isGrantable, String withHierarchy) { + super(RoleTableGrants.ROLE_TABLE_GRANTS); + + setGrantor(grantor); + setGrantee(grantee); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + setWithHierarchy(withHierarchy); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUdtGrantsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUdtGrantsRecord.java new file mode 100644 index 0000000..d2a3727 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUdtGrantsRecord.java @@ -0,0 +1,146 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleUdtGrants; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleUdtGrantsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.role_udt_grants.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.role_udt_grants.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.role_udt_grants.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.role_udt_grants.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for information_schema.role_udt_grants.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(2, value); + } + + /** + * Getter for information_schema.role_udt_grants.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(2); + } + + /** + * Setter for information_schema.role_udt_grants.udt_schema. + */ + public void setUdtSchema(String value) { + set(3, value); + } + + /** + * Getter for information_schema.role_udt_grants.udt_schema. + */ + public String getUdtSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.role_udt_grants.udt_name. + */ + public void setUdtName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.role_udt_grants.udt_name. + */ + public String getUdtName() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.role_udt_grants.privilege_type. + */ + public void setPrivilegeType(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.role_udt_grants.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(5); + } + + /** + * Setter for information_schema.role_udt_grants.is_grantable. + */ + public void setIsGrantable(String value) { + set(6, value); + } + + /** + * Getter for information_schema.role_udt_grants.is_grantable. + */ + public String getIsGrantable() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoleUdtGrantsRecord + */ + public RoleUdtGrantsRecord() { + super(RoleUdtGrants.ROLE_UDT_GRANTS); + } + + /** + * Create a detached, initialised RoleUdtGrantsRecord + */ + public RoleUdtGrantsRecord(String grantor, String grantee, String udtCatalog, String udtSchema, String udtName, String privilegeType, String isGrantable) { + super(RoleUdtGrants.ROLE_UDT_GRANTS); + + setGrantor(grantor); + setGrantee(grantee); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUsageGrantsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUsageGrantsRecord.java new file mode 100644 index 0000000..48079e6 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoleUsageGrantsRecord.java @@ -0,0 +1,167 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoleUsageGrants; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoleUsageGrantsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.role_usage_grants.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.role_usage_grants.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.role_usage_grants.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.role_usage_grants.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.role_usage_grants.object_catalog. + */ + public void setObjectCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.role_usage_grants.object_catalog. + */ + public String getObjectCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.role_usage_grants.object_schema. + */ + public void setObjectSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.role_usage_grants.object_schema. + */ + public String getObjectSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.role_usage_grants.object_name. + */ + public void setObjectName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.role_usage_grants.object_name. + */ + public String getObjectName() { + return (String) get(4); + } + + /** + * Setter for information_schema.role_usage_grants.object_type. + */ + public void setObjectType(String value) { + set(5, value); + } + + /** + * Getter for information_schema.role_usage_grants.object_type. + */ + public String getObjectType() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.role_usage_grants.privilege_type. + */ + public void setPrivilegeType(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.role_usage_grants.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.role_usage_grants.is_grantable. + */ + public void setIsGrantable(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.role_usage_grants.is_grantable. + */ + public String getIsGrantable() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoleUsageGrantsRecord + */ + public RoleUsageGrantsRecord() { + super(RoleUsageGrants.ROLE_USAGE_GRANTS); + } + + /** + * Create a detached, initialised RoleUsageGrantsRecord + */ + public RoleUsageGrantsRecord(String grantor, String grantee, String objectCatalog, String objectSchema, String objectName, String objectType, String privilegeType, String isGrantable) { + super(RoleUsageGrants.ROLE_USAGE_GRANTS); + + setGrantor(grantor); + setGrantee(grantee); + setObjectCatalog(objectCatalog); + setObjectSchema(objectSchema); + setObjectName(objectName); + setObjectType(objectType); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineColumnUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineColumnUsageRecord.java new file mode 100644 index 0000000..ab1fcad --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineColumnUsageRecord.java @@ -0,0 +1,209 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineColumnUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineColumnUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.routine_column_usage.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.routine_column_usage.specific_schema. + */ + public void setSpecificSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.routine_column_usage.specific_name. + */ + public void setSpecificName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.specific_name. + */ + public String getSpecificName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.routine_column_usage.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.routine_column_usage.routine_schema. + */ + public void setRoutineSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.routine_column_usage.routine_name. + */ + public void setRoutineName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.routine_name. + */ + public String getRoutineName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.routine_column_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.routine_column_usage.table_schema. + */ + public void setTableSchema(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.routine_column_usage.table_name. + */ + public void setTableName(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.table_name. + */ + public String getTableName() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.routine_column_usage.column_name. + */ + public void setColumnName(String value) { + set(9, value); + } + + /** + * Getter for + * information_schema.routine_column_usage.column_name. + */ + public String getColumnName() { + return (String) get(9); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoutineColumnUsageRecord + */ + public RoutineColumnUsageRecord() { + super(RoutineColumnUsage.ROUTINE_COLUMN_USAGE); + } + + /** + * Create a detached, initialised RoutineColumnUsageRecord + */ + public RoutineColumnUsageRecord(String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName, String tableCatalog, String tableSchema, String tableName, String columnName) { + super(RoutineColumnUsage.ROUTINE_COLUMN_USAGE); + + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinePrivilegesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinePrivilegesRecord.java new file mode 100644 index 0000000..332c3bb --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinePrivilegesRecord.java @@ -0,0 +1,205 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutinePrivileges; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutinePrivilegesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.routine_privileges.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.routine_privileges.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.routine_privileges.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.routine_privileges.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.routine_privileges.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.routine_privileges.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.routine_privileges.specific_schema. + */ + public void setSpecificSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.routine_privileges.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.routine_privileges.specific_name. + */ + public void setSpecificName(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.routine_privileges.specific_name. + */ + public String getSpecificName() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.routine_privileges.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.routine_privileges.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.routine_privileges.routine_schema. + */ + public void setRoutineSchema(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.routine_privileges.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.routine_privileges.routine_name. + */ + public void setRoutineName(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.routine_privileges.routine_name. + */ + public String getRoutineName() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.routine_privileges.privilege_type. + */ + public void setPrivilegeType(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.routine_privileges.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.routine_privileges.is_grantable. + */ + public void setIsGrantable(String value) { + set(9, value); + } + + /** + * Getter for + * information_schema.routine_privileges.is_grantable. + */ + public String getIsGrantable() { + return (String) get(9); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoutinePrivilegesRecord + */ + public RoutinePrivilegesRecord() { + super(RoutinePrivileges.ROUTINE_PRIVILEGES); + } + + /** + * Create a detached, initialised RoutinePrivilegesRecord + */ + public RoutinePrivilegesRecord(String grantor, String grantee, String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName, String privilegeType, String isGrantable) { + super(RoutinePrivileges.ROUTINE_PRIVILEGES); + + setGrantor(grantor); + setGrantee(grantee); + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineRoutineUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineRoutineUsageRecord.java new file mode 100644 index 0000000..a6ee560 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineRoutineUsageRecord.java @@ -0,0 +1,141 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineRoutineUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineRoutineUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.routine_routine_usage.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.routine_routine_usage.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.routine_routine_usage.specific_schema. + */ + public void setSpecificSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.routine_routine_usage.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.routine_routine_usage.specific_name. + */ + public void setSpecificName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.routine_routine_usage.specific_name. + */ + public String getSpecificName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.routine_routine_usage.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.routine_routine_usage.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.routine_routine_usage.routine_schema. + */ + public void setRoutineSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.routine_routine_usage.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.routine_routine_usage.routine_name. + */ + public void setRoutineName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.routine_routine_usage.routine_name. + */ + public String getRoutineName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoutineRoutineUsageRecord + */ + public RoutineRoutineUsageRecord() { + super(RoutineRoutineUsage.ROUTINE_ROUTINE_USAGE); + } + + /** + * Create a detached, initialised RoutineRoutineUsageRecord + */ + public RoutineRoutineUsageRecord(String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName) { + super(RoutineRoutineUsage.ROUTINE_ROUTINE_USAGE); + + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineSequenceUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineSequenceUsageRecord.java new file mode 100644 index 0000000..446b624 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineSequenceUsageRecord.java @@ -0,0 +1,192 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineSequenceUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineSequenceUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.routine_sequence_usage.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.specific_schema. + */ + public void setSpecificSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.specific_name. + */ + public void setSpecificName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.specific_name. + */ + public String getSpecificName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.routine_schema. + */ + public void setRoutineSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.routine_name. + */ + public void setRoutineName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.routine_name. + */ + public String getRoutineName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.sequence_catalog. + */ + public void setSequenceCatalog(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.sequence_catalog. + */ + public String getSequenceCatalog() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.sequence_schema. + */ + public void setSequenceSchema(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.sequence_schema. + */ + public String getSequenceSchema() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.routine_sequence_usage.sequence_name. + */ + public void setSequenceName(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.routine_sequence_usage.sequence_name. + */ + public String getSequenceName() { + return (String) get(8); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoutineSequenceUsageRecord + */ + public RoutineSequenceUsageRecord() { + super(RoutineSequenceUsage.ROUTINE_SEQUENCE_USAGE); + } + + /** + * Create a detached, initialised RoutineSequenceUsageRecord + */ + public RoutineSequenceUsageRecord(String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName, String sequenceCatalog, String sequenceSchema, String sequenceName) { + super(RoutineSequenceUsage.ROUTINE_SEQUENCE_USAGE); + + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + setSequenceCatalog(sequenceCatalog); + setSequenceSchema(sequenceSchema); + setSequenceName(sequenceName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineTableUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineTableUsageRecord.java new file mode 100644 index 0000000..ecd491f --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutineTableUsageRecord.java @@ -0,0 +1,192 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.RoutineTableUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutineTableUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.routine_table_usage.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.routine_table_usage.specific_schema. + */ + public void setSpecificSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.routine_table_usage.specific_name. + */ + public void setSpecificName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.specific_name. + */ + public String getSpecificName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.routine_table_usage.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.routine_table_usage.routine_schema. + */ + public void setRoutineSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.routine_table_usage.routine_name. + */ + public void setRoutineName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.routine_name. + */ + public String getRoutineName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.routine_table_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.routine_table_usage.table_schema. + */ + public void setTableSchema(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.routine_table_usage.table_name. + */ + public void setTableName(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.routine_table_usage.table_name. + */ + public String getTableName() { + return (String) get(8); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoutineTableUsageRecord + */ + public RoutineTableUsageRecord() { + super(RoutineTableUsage.ROUTINE_TABLE_USAGE); + } + + /** + * Create a detached, initialised RoutineTableUsageRecord + */ + public RoutineTableUsageRecord(String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName, String tableCatalog, String tableSchema, String tableName) { + super(RoutineTableUsage.ROUTINE_TABLE_USAGE); + + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinesRecord.java new file mode 100644 index 0000000..49f86b2 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/RoutinesRecord.java @@ -0,0 +1,1335 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Routines; + +import java.sql.Timestamp; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RoutinesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.routines.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.routines.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.routines.specific_schema. + */ + public void setSpecificSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.routines.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.routines.specific_name. + */ + public void setSpecificName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.routines.specific_name. + */ + public String getSpecificName() { + return (String) get(2); + } + + /** + * Setter for information_schema.routines.routine_catalog. + */ + public void setRoutineCatalog(String value) { + set(3, value); + } + + /** + * Getter for information_schema.routines.routine_catalog. + */ + public String getRoutineCatalog() { + return (String) get(3); + } + + /** + * Setter for information_schema.routines.routine_schema. + */ + public void setRoutineSchema(String value) { + set(4, value); + } + + /** + * Getter for information_schema.routines.routine_schema. + */ + public String getRoutineSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.routines.routine_name. + */ + public void setRoutineName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.routines.routine_name. + */ + public String getRoutineName() { + return (String) get(5); + } + + /** + * Setter for information_schema.routines.routine_type. + */ + public void setRoutineType(String value) { + set(6, value); + } + + /** + * Getter for information_schema.routines.routine_type. + */ + public String getRoutineType() { + return (String) get(6); + } + + /** + * Setter for information_schema.routines.module_catalog. + */ + public void setModuleCatalog(String value) { + set(7, value); + } + + /** + * Getter for information_schema.routines.module_catalog. + */ + public String getModuleCatalog() { + return (String) get(7); + } + + /** + * Setter for information_schema.routines.module_schema. + */ + public void setModuleSchema(String value) { + set(8, value); + } + + /** + * Getter for information_schema.routines.module_schema. + */ + public String getModuleSchema() { + return (String) get(8); + } + + /** + * Setter for information_schema.routines.module_name. + */ + public void setModuleName(String value) { + set(9, value); + } + + /** + * Getter for information_schema.routines.module_name. + */ + public String getModuleName() { + return (String) get(9); + } + + /** + * Setter for information_schema.routines.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(10, value); + } + + /** + * Getter for information_schema.routines.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(10); + } + + /** + * Setter for information_schema.routines.udt_schema. + */ + public void setUdtSchema(String value) { + set(11, value); + } + + /** + * Getter for information_schema.routines.udt_schema. + */ + public String getUdtSchema() { + return (String) get(11); + } + + /** + * Setter for information_schema.routines.udt_name. + */ + public void setUdtName(String value) { + set(12, value); + } + + /** + * Getter for information_schema.routines.udt_name. + */ + public String getUdtName() { + return (String) get(12); + } + + /** + * Setter for information_schema.routines.data_type. + */ + public void setDataType(String value) { + set(13, value); + } + + /** + * Getter for information_schema.routines.data_type. + */ + public String getDataType() { + return (String) get(13); + } + + /** + * Setter for + * information_schema.routines.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(14, value); + } + + /** + * Getter for + * information_schema.routines.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(14); + } + + /** + * Setter for + * information_schema.routines.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(15, value); + } + + /** + * Getter for + * information_schema.routines.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(15); + } + + /** + * Setter for + * information_schema.routines.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(16, value); + } + + /** + * Getter for + * information_schema.routines.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(16); + } + + /** + * Setter for information_schema.routines.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(17, value); + } + + /** + * Getter for information_schema.routines.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(17); + } + + /** + * Setter for information_schema.routines.character_set_name. + */ + public void setCharacterSetName(String value) { + set(18, value); + } + + /** + * Getter for information_schema.routines.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(18); + } + + /** + * Setter for information_schema.routines.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(19, value); + } + + /** + * Getter for information_schema.routines.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(19); + } + + /** + * Setter for information_schema.routines.collation_schema. + */ + public void setCollationSchema(String value) { + set(20, value); + } + + /** + * Getter for information_schema.routines.collation_schema. + */ + public String getCollationSchema() { + return (String) get(20); + } + + /** + * Setter for information_schema.routines.collation_name. + */ + public void setCollationName(String value) { + set(21, value); + } + + /** + * Getter for information_schema.routines.collation_name. + */ + public String getCollationName() { + return (String) get(21); + } + + /** + * Setter for information_schema.routines.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(22, value); + } + + /** + * Getter for information_schema.routines.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(22); + } + + /** + * Setter for + * information_schema.routines.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(23, value); + } + + /** + * Getter for + * information_schema.routines.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(23); + } + + /** + * Setter for information_schema.routines.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(24, value); + } + + /** + * Getter for information_schema.routines.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(24); + } + + /** + * Setter for information_schema.routines.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(25, value); + } + + /** + * Getter for information_schema.routines.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(25); + } + + /** + * Setter for information_schema.routines.interval_type. + */ + public void setIntervalType(String value) { + set(26, value); + } + + /** + * Getter for information_schema.routines.interval_type. + */ + public String getIntervalType() { + return (String) get(26); + } + + /** + * Setter for information_schema.routines.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(27, value); + } + + /** + * Getter for information_schema.routines.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(27); + } + + /** + * Setter for information_schema.routines.type_udt_catalog. + */ + public void setTypeUdtCatalog(String value) { + set(28, value); + } + + /** + * Getter for information_schema.routines.type_udt_catalog. + */ + public String getTypeUdtCatalog() { + return (String) get(28); + } + + /** + * Setter for information_schema.routines.type_udt_schema. + */ + public void setTypeUdtSchema(String value) { + set(29, value); + } + + /** + * Getter for information_schema.routines.type_udt_schema. + */ + public String getTypeUdtSchema() { + return (String) get(29); + } + + /** + * Setter for information_schema.routines.type_udt_name. + */ + public void setTypeUdtName(String value) { + set(30, value); + } + + /** + * Getter for information_schema.routines.type_udt_name. + */ + public String getTypeUdtName() { + return (String) get(30); + } + + /** + * Setter for information_schema.routines.scope_catalog. + */ + public void setScopeCatalog(String value) { + set(31, value); + } + + /** + * Getter for information_schema.routines.scope_catalog. + */ + public String getScopeCatalog() { + return (String) get(31); + } + + /** + * Setter for information_schema.routines.scope_schema. + */ + public void setScopeSchema(String value) { + set(32, value); + } + + /** + * Getter for information_schema.routines.scope_schema. + */ + public String getScopeSchema() { + return (String) get(32); + } + + /** + * Setter for information_schema.routines.scope_name. + */ + public void setScopeName(String value) { + set(33, value); + } + + /** + * Getter for information_schema.routines.scope_name. + */ + public String getScopeName() { + return (String) get(33); + } + + /** + * Setter for information_schema.routines.maximum_cardinality. + */ + public void setMaximumCardinality(Integer value) { + set(34, value); + } + + /** + * Getter for information_schema.routines.maximum_cardinality. + */ + public Integer getMaximumCardinality() { + return (Integer) get(34); + } + + /** + * Setter for information_schema.routines.dtd_identifier. + */ + public void setDtdIdentifier(String value) { + set(35, value); + } + + /** + * Getter for information_schema.routines.dtd_identifier. + */ + public String getDtdIdentifier() { + return (String) get(35); + } + + /** + * Setter for information_schema.routines.routine_body. + */ + public void setRoutineBody(String value) { + set(36, value); + } + + /** + * Getter for information_schema.routines.routine_body. + */ + public String getRoutineBody() { + return (String) get(36); + } + + /** + * Setter for information_schema.routines.routine_definition. + */ + public void setRoutineDefinition(String value) { + set(37, value); + } + + /** + * Getter for information_schema.routines.routine_definition. + */ + public String getRoutineDefinition() { + return (String) get(37); + } + + /** + * Setter for information_schema.routines.external_name. + */ + public void setExternalName(String value) { + set(38, value); + } + + /** + * Getter for information_schema.routines.external_name. + */ + public String getExternalName() { + return (String) get(38); + } + + /** + * Setter for information_schema.routines.external_language. + */ + public void setExternalLanguage(String value) { + set(39, value); + } + + /** + * Getter for information_schema.routines.external_language. + */ + public String getExternalLanguage() { + return (String) get(39); + } + + /** + * Setter for information_schema.routines.parameter_style. + */ + public void setParameterStyle(String value) { + set(40, value); + } + + /** + * Getter for information_schema.routines.parameter_style. + */ + public String getParameterStyle() { + return (String) get(40); + } + + /** + * Setter for information_schema.routines.is_deterministic. + */ + public void setIsDeterministic(String value) { + set(41, value); + } + + /** + * Getter for information_schema.routines.is_deterministic. + */ + public String getIsDeterministic() { + return (String) get(41); + } + + /** + * Setter for information_schema.routines.sql_data_access. + */ + public void setSqlDataAccess(String value) { + set(42, value); + } + + /** + * Getter for information_schema.routines.sql_data_access. + */ + public String getSqlDataAccess() { + return (String) get(42); + } + + /** + * Setter for information_schema.routines.is_null_call. + */ + public void setIsNullCall(String value) { + set(43, value); + } + + /** + * Getter for information_schema.routines.is_null_call. + */ + public String getIsNullCall() { + return (String) get(43); + } + + /** + * Setter for information_schema.routines.sql_path. + */ + public void setSqlPath(String value) { + set(44, value); + } + + /** + * Getter for information_schema.routines.sql_path. + */ + public String getSqlPath() { + return (String) get(44); + } + + /** + * Setter for information_schema.routines.schema_level_routine. + */ + public void setSchemaLevelRoutine(String value) { + set(45, value); + } + + /** + * Getter for information_schema.routines.schema_level_routine. + */ + public String getSchemaLevelRoutine() { + return (String) get(45); + } + + /** + * Setter for + * information_schema.routines.max_dynamic_result_sets. + */ + public void setMaxDynamicResultSets(Integer value) { + set(46, value); + } + + /** + * Getter for + * information_schema.routines.max_dynamic_result_sets. + */ + public Integer getMaxDynamicResultSets() { + return (Integer) get(46); + } + + /** + * Setter for information_schema.routines.is_user_defined_cast. + */ + public void setIsUserDefinedCast(String value) { + set(47, value); + } + + /** + * Getter for information_schema.routines.is_user_defined_cast. + */ + public String getIsUserDefinedCast() { + return (String) get(47); + } + + /** + * Setter for + * information_schema.routines.is_implicitly_invocable. + */ + public void setIsImplicitlyInvocable(String value) { + set(48, value); + } + + /** + * Getter for + * information_schema.routines.is_implicitly_invocable. + */ + public String getIsImplicitlyInvocable() { + return (String) get(48); + } + + /** + * Setter for information_schema.routines.security_type. + */ + public void setSecurityType(String value) { + set(49, value); + } + + /** + * Getter for information_schema.routines.security_type. + */ + public String getSecurityType() { + return (String) get(49); + } + + /** + * Setter for + * information_schema.routines.to_sql_specific_catalog. + */ + public void setToSqlSpecificCatalog(String value) { + set(50, value); + } + + /** + * Getter for + * information_schema.routines.to_sql_specific_catalog. + */ + public String getToSqlSpecificCatalog() { + return (String) get(50); + } + + /** + * Setter for + * information_schema.routines.to_sql_specific_schema. + */ + public void setToSqlSpecificSchema(String value) { + set(51, value); + } + + /** + * Getter for + * information_schema.routines.to_sql_specific_schema. + */ + public String getToSqlSpecificSchema() { + return (String) get(51); + } + + /** + * Setter for information_schema.routines.to_sql_specific_name. + */ + public void setToSqlSpecificName(String value) { + set(52, value); + } + + /** + * Getter for information_schema.routines.to_sql_specific_name. + */ + public String getToSqlSpecificName() { + return (String) get(52); + } + + /** + * Setter for information_schema.routines.as_locator. + */ + public void setAsLocator(String value) { + set(53, value); + } + + /** + * Getter for information_schema.routines.as_locator. + */ + public String getAsLocator() { + return (String) get(53); + } + + /** + * Setter for information_schema.routines.created. + */ + public void setCreated(Timestamp value) { + set(54, value); + } + + /** + * Getter for information_schema.routines.created. + */ + public Timestamp getCreated() { + return (Timestamp) get(54); + } + + /** + * Setter for information_schema.routines.last_altered. + */ + public void setLastAltered(Timestamp value) { + set(55, value); + } + + /** + * Getter for information_schema.routines.last_altered. + */ + public Timestamp getLastAltered() { + return (Timestamp) get(55); + } + + /** + * Setter for information_schema.routines.new_savepoint_level. + */ + public void setNewSavepointLevel(String value) { + set(56, value); + } + + /** + * Getter for information_schema.routines.new_savepoint_level. + */ + public String getNewSavepointLevel() { + return (String) get(56); + } + + /** + * Setter for information_schema.routines.is_udt_dependent. + */ + public void setIsUdtDependent(String value) { + set(57, value); + } + + /** + * Getter for information_schema.routines.is_udt_dependent. + */ + public String getIsUdtDependent() { + return (String) get(57); + } + + /** + * Setter for + * information_schema.routines.result_cast_from_data_type. + */ + public void setResultCastFromDataType(String value) { + set(58, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_from_data_type. + */ + public String getResultCastFromDataType() { + return (String) get(58); + } + + /** + * Setter for + * information_schema.routines.result_cast_as_locator. + */ + public void setResultCastAsLocator(String value) { + set(59, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_as_locator. + */ + public String getResultCastAsLocator() { + return (String) get(59); + } + + /** + * Setter for + * information_schema.routines.result_cast_char_max_length. + */ + public void setResultCastCharMaxLength(Integer value) { + set(60, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_char_max_length. + */ + public Integer getResultCastCharMaxLength() { + return (Integer) get(60); + } + + /** + * Setter for + * information_schema.routines.result_cast_char_octet_length. + */ + public void setResultCastCharOctetLength(Integer value) { + set(61, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_char_octet_length. + */ + public Integer getResultCastCharOctetLength() { + return (Integer) get(61); + } + + /** + * Setter for + * information_schema.routines.result_cast_char_set_catalog. + */ + public void setResultCastCharSetCatalog(String value) { + set(62, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_char_set_catalog. + */ + public String getResultCastCharSetCatalog() { + return (String) get(62); + } + + /** + * Setter for + * information_schema.routines.result_cast_char_set_schema. + */ + public void setResultCastCharSetSchema(String value) { + set(63, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_char_set_schema. + */ + public String getResultCastCharSetSchema() { + return (String) get(63); + } + + /** + * Setter for + * information_schema.routines.result_cast_char_set_name. + */ + public void setResultCastCharSetName(String value) { + set(64, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_char_set_name. + */ + public String getResultCastCharSetName() { + return (String) get(64); + } + + /** + * Setter for + * information_schema.routines.result_cast_collation_catalog. + */ + public void setResultCastCollationCatalog(String value) { + set(65, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_collation_catalog. + */ + public String getResultCastCollationCatalog() { + return (String) get(65); + } + + /** + * Setter for + * information_schema.routines.result_cast_collation_schema. + */ + public void setResultCastCollationSchema(String value) { + set(66, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_collation_schema. + */ + public String getResultCastCollationSchema() { + return (String) get(66); + } + + /** + * Setter for + * information_schema.routines.result_cast_collation_name. + */ + public void setResultCastCollationName(String value) { + set(67, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_collation_name. + */ + public String getResultCastCollationName() { + return (String) get(67); + } + + /** + * Setter for + * information_schema.routines.result_cast_numeric_precision. + */ + public void setResultCastNumericPrecision(Integer value) { + set(68, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_numeric_precision. + */ + public Integer getResultCastNumericPrecision() { + return (Integer) get(68); + } + + /** + * Setter for + * information_schema.routines.result_cast_numeric_precision_radix. + */ + public void setResultCastNumericPrecisionRadix(Integer value) { + set(69, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_numeric_precision_radix. + */ + public Integer getResultCastNumericPrecisionRadix() { + return (Integer) get(69); + } + + /** + * Setter for + * information_schema.routines.result_cast_numeric_scale. + */ + public void setResultCastNumericScale(Integer value) { + set(70, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_numeric_scale. + */ + public Integer getResultCastNumericScale() { + return (Integer) get(70); + } + + /** + * Setter for + * information_schema.routines.result_cast_datetime_precision. + */ + public void setResultCastDatetimePrecision(Integer value) { + set(71, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_datetime_precision. + */ + public Integer getResultCastDatetimePrecision() { + return (Integer) get(71); + } + + /** + * Setter for + * information_schema.routines.result_cast_interval_type. + */ + public void setResultCastIntervalType(String value) { + set(72, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_interval_type. + */ + public String getResultCastIntervalType() { + return (String) get(72); + } + + /** + * Setter for + * information_schema.routines.result_cast_interval_precision. + */ + public void setResultCastIntervalPrecision(Integer value) { + set(73, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_interval_precision. + */ + public Integer getResultCastIntervalPrecision() { + return (Integer) get(73); + } + + /** + * Setter for + * information_schema.routines.result_cast_type_udt_catalog. + */ + public void setResultCastTypeUdtCatalog(String value) { + set(74, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_type_udt_catalog. + */ + public String getResultCastTypeUdtCatalog() { + return (String) get(74); + } + + /** + * Setter for + * information_schema.routines.result_cast_type_udt_schema. + */ + public void setResultCastTypeUdtSchema(String value) { + set(75, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_type_udt_schema. + */ + public String getResultCastTypeUdtSchema() { + return (String) get(75); + } + + /** + * Setter for + * information_schema.routines.result_cast_type_udt_name. + */ + public void setResultCastTypeUdtName(String value) { + set(76, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_type_udt_name. + */ + public String getResultCastTypeUdtName() { + return (String) get(76); + } + + /** + * Setter for + * information_schema.routines.result_cast_scope_catalog. + */ + public void setResultCastScopeCatalog(String value) { + set(77, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_scope_catalog. + */ + public String getResultCastScopeCatalog() { + return (String) get(77); + } + + /** + * Setter for + * information_schema.routines.result_cast_scope_schema. + */ + public void setResultCastScopeSchema(String value) { + set(78, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_scope_schema. + */ + public String getResultCastScopeSchema() { + return (String) get(78); + } + + /** + * Setter for + * information_schema.routines.result_cast_scope_name. + */ + public void setResultCastScopeName(String value) { + set(79, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_scope_name. + */ + public String getResultCastScopeName() { + return (String) get(79); + } + + /** + * Setter for + * information_schema.routines.result_cast_maximum_cardinality. + */ + public void setResultCastMaximumCardinality(Integer value) { + set(80, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_maximum_cardinality. + */ + public Integer getResultCastMaximumCardinality() { + return (Integer) get(80); + } + + /** + * Setter for + * information_schema.routines.result_cast_dtd_identifier. + */ + public void setResultCastDtdIdentifier(String value) { + set(81, value); + } + + /** + * Getter for + * information_schema.routines.result_cast_dtd_identifier. + */ + public String getResultCastDtdIdentifier() { + return (String) get(81); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RoutinesRecord + */ + public RoutinesRecord() { + super(Routines.ROUTINES); + } + + /** + * Create a detached, initialised RoutinesRecord + */ + public RoutinesRecord(String specificCatalog, String specificSchema, String specificName, String routineCatalog, String routineSchema, String routineName, String routineType, String moduleCatalog, String moduleSchema, String moduleName, String udtCatalog, String udtSchema, String udtName, String dataType, Integer characterMaximumLength, Integer characterOctetLength, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String typeUdtCatalog, String typeUdtSchema, String typeUdtName, String scopeCatalog, String scopeSchema, String scopeName, Integer maximumCardinality, String dtdIdentifier, String routineBody, String routineDefinition, String externalName, String externalLanguage, String parameterStyle, String isDeterministic, String sqlDataAccess, String isNullCall, String sqlPath, String schemaLevelRoutine, Integer maxDynamicResultSets, String isUserDefinedCast, String isImplicitlyInvocable, String securityType, String toSqlSpecificCatalog, String toSqlSpecificSchema, String toSqlSpecificName, String asLocator, Timestamp created, Timestamp lastAltered, String newSavepointLevel, String isUdtDependent, String resultCastFromDataType, String resultCastAsLocator, Integer resultCastCharMaxLength, Integer resultCastCharOctetLength, String resultCastCharSetCatalog, String resultCastCharSetSchema, String resultCastCharSetName, String resultCastCollationCatalog, String resultCastCollationSchema, String resultCastCollationName, Integer resultCastNumericPrecision, Integer resultCastNumericPrecisionRadix, Integer resultCastNumericScale, Integer resultCastDatetimePrecision, String resultCastIntervalType, Integer resultCastIntervalPrecision, String resultCastTypeUdtCatalog, String resultCastTypeUdtSchema, String resultCastTypeUdtName, String resultCastScopeCatalog, String resultCastScopeSchema, String resultCastScopeName, Integer resultCastMaximumCardinality, String resultCastDtdIdentifier) { + super(Routines.ROUTINES); + + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + setRoutineCatalog(routineCatalog); + setRoutineSchema(routineSchema); + setRoutineName(routineName); + setRoutineType(routineType); + setModuleCatalog(moduleCatalog); + setModuleSchema(moduleSchema); + setModuleName(moduleName); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setTypeUdtCatalog(typeUdtCatalog); + setTypeUdtSchema(typeUdtSchema); + setTypeUdtName(typeUdtName); + setScopeCatalog(scopeCatalog); + setScopeSchema(scopeSchema); + setScopeName(scopeName); + setMaximumCardinality(maximumCardinality); + setDtdIdentifier(dtdIdentifier); + setRoutineBody(routineBody); + setRoutineDefinition(routineDefinition); + setExternalName(externalName); + setExternalLanguage(externalLanguage); + setParameterStyle(parameterStyle); + setIsDeterministic(isDeterministic); + setSqlDataAccess(sqlDataAccess); + setIsNullCall(isNullCall); + setSqlPath(sqlPath); + setSchemaLevelRoutine(schemaLevelRoutine); + setMaxDynamicResultSets(maxDynamicResultSets); + setIsUserDefinedCast(isUserDefinedCast); + setIsImplicitlyInvocable(isImplicitlyInvocable); + setSecurityType(securityType); + setToSqlSpecificCatalog(toSqlSpecificCatalog); + setToSqlSpecificSchema(toSqlSpecificSchema); + setToSqlSpecificName(toSqlSpecificName); + setAsLocator(asLocator); + setCreated(created); + setLastAltered(lastAltered); + setNewSavepointLevel(newSavepointLevel); + setIsUdtDependent(isUdtDependent); + setResultCastFromDataType(resultCastFromDataType); + setResultCastAsLocator(resultCastAsLocator); + setResultCastCharMaxLength(resultCastCharMaxLength); + setResultCastCharOctetLength(resultCastCharOctetLength); + setResultCastCharSetCatalog(resultCastCharSetCatalog); + setResultCastCharSetSchema(resultCastCharSetSchema); + setResultCastCharSetName(resultCastCharSetName); + setResultCastCollationCatalog(resultCastCollationCatalog); + setResultCastCollationSchema(resultCastCollationSchema); + setResultCastCollationName(resultCastCollationName); + setResultCastNumericPrecision(resultCastNumericPrecision); + setResultCastNumericPrecisionRadix(resultCastNumericPrecisionRadix); + setResultCastNumericScale(resultCastNumericScale); + setResultCastDatetimePrecision(resultCastDatetimePrecision); + setResultCastIntervalType(resultCastIntervalType); + setResultCastIntervalPrecision(resultCastIntervalPrecision); + setResultCastTypeUdtCatalog(resultCastTypeUdtCatalog); + setResultCastTypeUdtSchema(resultCastTypeUdtSchema); + setResultCastTypeUdtName(resultCastTypeUdtName); + setResultCastScopeCatalog(resultCastScopeCatalog); + setResultCastScopeSchema(resultCastScopeSchema); + setResultCastScopeName(resultCastScopeName); + setResultCastMaximumCardinality(resultCastMaximumCardinality); + setResultCastDtdIdentifier(resultCastDtdIdentifier); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SchemataRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SchemataRecord.java new file mode 100644 index 0000000..9d681ac --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SchemataRecord.java @@ -0,0 +1,150 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Schemata; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SchemataRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.schemata.catalog_name. + */ + public void setCatalogName(String value) { + set(0, value); + } + + /** + * Getter for information_schema.schemata.catalog_name. + */ + public String getCatalogName() { + return (String) get(0); + } + + /** + * Setter for information_schema.schemata.schema_name. + */ + public void setSchemaName(String value) { + set(1, value); + } + + /** + * Getter for information_schema.schemata.schema_name. + */ + public String getSchemaName() { + return (String) get(1); + } + + /** + * Setter for information_schema.schemata.schema_owner. + */ + public void setSchemaOwner(String value) { + set(2, value); + } + + /** + * Getter for information_schema.schemata.schema_owner. + */ + public String getSchemaOwner() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.schemata.default_character_set_catalog. + */ + public void setDefaultCharacterSetCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.schemata.default_character_set_catalog. + */ + public String getDefaultCharacterSetCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.schemata.default_character_set_schema. + */ + public void setDefaultCharacterSetSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.schemata.default_character_set_schema. + */ + public String getDefaultCharacterSetSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.schemata.default_character_set_name. + */ + public void setDefaultCharacterSetName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.schemata.default_character_set_name. + */ + public String getDefaultCharacterSetName() { + return (String) get(5); + } + + /** + * Setter for information_schema.schemata.sql_path. + */ + public void setSqlPath(String value) { + set(6, value); + } + + /** + * Getter for information_schema.schemata.sql_path. + */ + public String getSqlPath() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached SchemataRecord + */ + public SchemataRecord() { + super(Schemata.SCHEMATA); + } + + /** + * Create a detached, initialised SchemataRecord + */ + public SchemataRecord(String catalogName, String schemaName, String schemaOwner, String defaultCharacterSetCatalog, String defaultCharacterSetSchema, String defaultCharacterSetName, String sqlPath) { + super(Schemata.SCHEMATA); + + setCatalogName(catalogName); + setSchemaName(schemaName); + setSchemaOwner(schemaOwner); + setDefaultCharacterSetCatalog(defaultCharacterSetCatalog); + setDefaultCharacterSetSchema(defaultCharacterSetSchema); + setDefaultCharacterSetName(defaultCharacterSetName); + setSqlPath(sqlPath); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SequencesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SequencesRecord.java new file mode 100644 index 0000000..f42b230 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SequencesRecord.java @@ -0,0 +1,221 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Sequences; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SequencesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.sequences.sequence_catalog. + */ + public void setSequenceCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.sequences.sequence_catalog. + */ + public String getSequenceCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.sequences.sequence_schema. + */ + public void setSequenceSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.sequences.sequence_schema. + */ + public String getSequenceSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.sequences.sequence_name. + */ + public void setSequenceName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.sequences.sequence_name. + */ + public String getSequenceName() { + return (String) get(2); + } + + /** + * Setter for information_schema.sequences.data_type. + */ + public void setDataType(String value) { + set(3, value); + } + + /** + * Getter for information_schema.sequences.data_type. + */ + public String getDataType() { + return (String) get(3); + } + + /** + * Setter for information_schema.sequences.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(4, value); + } + + /** + * Getter for information_schema.sequences.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(4); + } + + /** + * Setter for + * information_schema.sequences.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(5, value); + } + + /** + * Getter for + * information_schema.sequences.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(5); + } + + /** + * Setter for information_schema.sequences.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(6, value); + } + + /** + * Getter for information_schema.sequences.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(6); + } + + /** + * Setter for information_schema.sequences.start_value. + */ + public void setStartValue(String value) { + set(7, value); + } + + /** + * Getter for information_schema.sequences.start_value. + */ + public String getStartValue() { + return (String) get(7); + } + + /** + * Setter for information_schema.sequences.minimum_value. + */ + public void setMinimumValue(String value) { + set(8, value); + } + + /** + * Getter for information_schema.sequences.minimum_value. + */ + public String getMinimumValue() { + return (String) get(8); + } + + /** + * Setter for information_schema.sequences.maximum_value. + */ + public void setMaximumValue(String value) { + set(9, value); + } + + /** + * Getter for information_schema.sequences.maximum_value. + */ + public String getMaximumValue() { + return (String) get(9); + } + + /** + * Setter for information_schema.sequences.increment. + */ + public void setIncrement(String value) { + set(10, value); + } + + /** + * Getter for information_schema.sequences.increment. + */ + public String getIncrement() { + return (String) get(10); + } + + /** + * Setter for information_schema.sequences.cycle_option. + */ + public void setCycleOption(String value) { + set(11, value); + } + + /** + * Getter for information_schema.sequences.cycle_option. + */ + public String getCycleOption() { + return (String) get(11); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached SequencesRecord + */ + public SequencesRecord() { + super(Sequences.SEQUENCES); + } + + /** + * Create a detached, initialised SequencesRecord + */ + public SequencesRecord(String sequenceCatalog, String sequenceSchema, String sequenceName, String dataType, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, String startValue, String minimumValue, String maximumValue, String increment, String cycleOption) { + super(Sequences.SEQUENCES); + + setSequenceCatalog(sequenceCatalog); + setSequenceSchema(sequenceSchema); + setSequenceName(sequenceName); + setDataType(dataType); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setStartValue(startValue); + setMinimumValue(minimumValue); + setMaximumValue(maximumValue); + setIncrement(increment); + setCycleOption(cycleOption); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlFeaturesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlFeaturesRecord.java new file mode 100644 index 0000000..c8297b2 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlFeaturesRecord.java @@ -0,0 +1,144 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlFeatures; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SqlFeaturesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.sql_features.feature_id. + */ + public void setFeatureId(String value) { + set(0, value); + } + + /** + * Getter for information_schema.sql_features.feature_id. + */ + public String getFeatureId() { + return (String) get(0); + } + + /** + * Setter for information_schema.sql_features.feature_name. + */ + public void setFeatureName(String value) { + set(1, value); + } + + /** + * Getter for information_schema.sql_features.feature_name. + */ + public String getFeatureName() { + return (String) get(1); + } + + /** + * Setter for information_schema.sql_features.sub_feature_id. + */ + public void setSubFeatureId(String value) { + set(2, value); + } + + /** + * Getter for information_schema.sql_features.sub_feature_id. + */ + public String getSubFeatureId() { + return (String) get(2); + } + + /** + * Setter for information_schema.sql_features.sub_feature_name. + */ + public void setSubFeatureName(String value) { + set(3, value); + } + + /** + * Getter for information_schema.sql_features.sub_feature_name. + */ + public String getSubFeatureName() { + return (String) get(3); + } + + /** + * Setter for information_schema.sql_features.is_supported. + */ + public void setIsSupported(String value) { + set(4, value); + } + + /** + * Getter for information_schema.sql_features.is_supported. + */ + public String getIsSupported() { + return (String) get(4); + } + + /** + * Setter for information_schema.sql_features.is_verified_by. + */ + public void setIsVerifiedBy(String value) { + set(5, value); + } + + /** + * Getter for information_schema.sql_features.is_verified_by. + */ + public String getIsVerifiedBy() { + return (String) get(5); + } + + /** + * Setter for information_schema.sql_features.comments. + */ + public void setComments(String value) { + set(6, value); + } + + /** + * Getter for information_schema.sql_features.comments. + */ + public String getComments() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached SqlFeaturesRecord + */ + public SqlFeaturesRecord() { + super(SqlFeatures.SQL_FEATURES); + } + + /** + * Create a detached, initialised SqlFeaturesRecord + */ + public SqlFeaturesRecord(String featureId, String featureName, String subFeatureId, String subFeatureName, String isSupported, String isVerifiedBy, String comments) { + super(SqlFeatures.SQL_FEATURES); + + setFeatureId(featureId); + setFeatureName(featureName); + setSubFeatureId(subFeatureId); + setSubFeatureName(subFeatureName); + setIsSupported(isSupported); + setIsVerifiedBy(isVerifiedBy); + setComments(comments); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlImplementationInfoRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlImplementationInfoRecord.java new file mode 100644 index 0000000..d3a7303 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlImplementationInfoRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlImplementationInfo; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SqlImplementationInfoRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.sql_implementation_info.implementation_info_id. + */ + public void setImplementationInfoId(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.sql_implementation_info.implementation_info_id. + */ + public String getImplementationInfoId() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.sql_implementation_info.implementation_info_name. + */ + public void setImplementationInfoName(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.sql_implementation_info.implementation_info_name. + */ + public String getImplementationInfoName() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.sql_implementation_info.integer_value. + */ + public void setIntegerValue(Integer value) { + set(2, value); + } + + /** + * Getter for + * information_schema.sql_implementation_info.integer_value. + */ + public Integer getIntegerValue() { + return (Integer) get(2); + } + + /** + * Setter for + * information_schema.sql_implementation_info.character_value. + */ + public void setCharacterValue(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.sql_implementation_info.character_value. + */ + public String getCharacterValue() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.sql_implementation_info.comments. + */ + public void setComments(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.sql_implementation_info.comments. + */ + public String getComments() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached SqlImplementationInfoRecord + */ + public SqlImplementationInfoRecord() { + super(SqlImplementationInfo.SQL_IMPLEMENTATION_INFO); + } + + /** + * Create a detached, initialised SqlImplementationInfoRecord + */ + public SqlImplementationInfoRecord(String implementationInfoId, String implementationInfoName, Integer integerValue, String characterValue, String comments) { + super(SqlImplementationInfo.SQL_IMPLEMENTATION_INFO); + + setImplementationInfoId(implementationInfoId); + setImplementationInfoName(implementationInfoName); + setIntegerValue(integerValue); + setCharacterValue(characterValue); + setComments(comments); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlSizingRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlSizingRecord.java new file mode 100644 index 0000000..1f43249 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/SqlSizingRecord.java @@ -0,0 +1,99 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.SqlSizing; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class SqlSizingRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.sql_sizing.sizing_id. + */ + public void setSizingId(Integer value) { + set(0, value); + } + + /** + * Getter for information_schema.sql_sizing.sizing_id. + */ + public Integer getSizingId() { + return (Integer) get(0); + } + + /** + * Setter for information_schema.sql_sizing.sizing_name. + */ + public void setSizingName(String value) { + set(1, value); + } + + /** + * Getter for information_schema.sql_sizing.sizing_name. + */ + public String getSizingName() { + return (String) get(1); + } + + /** + * Setter for information_schema.sql_sizing.supported_value. + */ + public void setSupportedValue(Integer value) { + set(2, value); + } + + /** + * Getter for information_schema.sql_sizing.supported_value. + */ + public Integer getSupportedValue() { + return (Integer) get(2); + } + + /** + * Setter for information_schema.sql_sizing.comments. + */ + public void setComments(String value) { + set(3, value); + } + + /** + * Getter for information_schema.sql_sizing.comments. + */ + public String getComments() { + return (String) get(3); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached SqlSizingRecord + */ + public SqlSizingRecord() { + super(SqlSizing.SQL_SIZING); + } + + /** + * Create a detached, initialised SqlSizingRecord + */ + public SqlSizingRecord(Integer sizingId, String sizingName, Integer supportedValue, String comments) { + super(SqlSizing.SQL_SIZING); + + setSizingId(sizingId); + setSizingName(sizingName); + setSupportedValue(supportedValue); + setComments(comments); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TableConstraintsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TableConstraintsRecord.java new file mode 100644 index 0000000..a2a0df9 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TableConstraintsRecord.java @@ -0,0 +1,222 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TableConstraints; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TableConstraintsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.table_constraints.constraint_catalog. + */ + public void setConstraintCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.table_constraints.constraint_catalog. + */ + public String getConstraintCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.table_constraints.constraint_schema. + */ + public void setConstraintSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.table_constraints.constraint_schema. + */ + public String getConstraintSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.table_constraints.constraint_name. + */ + public void setConstraintName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.table_constraints.constraint_name. + */ + public String getConstraintName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.table_constraints.table_catalog. + */ + public void setTableCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.table_constraints.table_catalog. + */ + public String getTableCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.table_constraints.table_schema. + */ + public void setTableSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.table_constraints.table_schema. + */ + public String getTableSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.table_constraints.table_name. + */ + public void setTableName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.table_constraints.table_name. + */ + public String getTableName() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.table_constraints.constraint_type. + */ + public void setConstraintType(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.table_constraints.constraint_type. + */ + public String getConstraintType() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.table_constraints.is_deferrable. + */ + public void setIsDeferrable(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.table_constraints.is_deferrable. + */ + public String getIsDeferrable() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.table_constraints.initially_deferred. + */ + public void setInitiallyDeferred(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.table_constraints.initially_deferred. + */ + public String getInitiallyDeferred() { + return (String) get(8); + } + + /** + * Setter for information_schema.table_constraints.enforced. + */ + public void setEnforced(String value) { + set(9, value); + } + + /** + * Getter for information_schema.table_constraints.enforced. + */ + public String getEnforced() { + return (String) get(9); + } + + /** + * Setter for + * information_schema.table_constraints.nulls_distinct. + */ + public void setNullsDistinct(String value) { + set(10, value); + } + + /** + * Getter for + * information_schema.table_constraints.nulls_distinct. + */ + public String getNullsDistinct() { + return (String) get(10); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached TableConstraintsRecord + */ + public TableConstraintsRecord() { + super(TableConstraints.TABLE_CONSTRAINTS); + } + + /** + * Create a detached, initialised TableConstraintsRecord + */ + public TableConstraintsRecord(String constraintCatalog, String constraintSchema, String constraintName, String tableCatalog, String tableSchema, String tableName, String constraintType, String isDeferrable, String initiallyDeferred, String enforced, String nullsDistinct) { + super(TableConstraints.TABLE_CONSTRAINTS); + + setConstraintCatalog(constraintCatalog); + setConstraintSchema(constraintSchema); + setConstraintName(constraintName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setConstraintType(constraintType); + setIsDeferrable(isDeferrable); + setInitiallyDeferred(initiallyDeferred); + setEnforced(enforced); + setNullsDistinct(nullsDistinct); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablePrivilegesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablePrivilegesRecord.java new file mode 100644 index 0000000..5578aad --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablePrivilegesRecord.java @@ -0,0 +1,165 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TablePrivileges; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TablePrivilegesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.table_privileges.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.table_privileges.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.table_privileges.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.table_privileges.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.table_privileges.table_catalog. + */ + public void setTableCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.table_privileges.table_catalog. + */ + public String getTableCatalog() { + return (String) get(2); + } + + /** + * Setter for information_schema.table_privileges.table_schema. + */ + public void setTableSchema(String value) { + set(3, value); + } + + /** + * Getter for information_schema.table_privileges.table_schema. + */ + public String getTableSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.table_privileges.table_name. + */ + public void setTableName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.table_privileges.table_name. + */ + public String getTableName() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.table_privileges.privilege_type. + */ + public void setPrivilegeType(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.table_privileges.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(5); + } + + /** + * Setter for information_schema.table_privileges.is_grantable. + */ + public void setIsGrantable(String value) { + set(6, value); + } + + /** + * Getter for information_schema.table_privileges.is_grantable. + */ + public String getIsGrantable() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.table_privileges.with_hierarchy. + */ + public void setWithHierarchy(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.table_privileges.with_hierarchy. + */ + public String getWithHierarchy() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached TablePrivilegesRecord + */ + public TablePrivilegesRecord() { + super(TablePrivileges.TABLE_PRIVILEGES); + } + + /** + * Create a detached, initialised TablePrivilegesRecord + */ + public TablePrivilegesRecord(String grantor, String grantee, String tableCatalog, String tableSchema, String tableName, String privilegeType, String isGrantable, String withHierarchy) { + super(TablePrivileges.TABLE_PRIVILEGES); + + setGrantor(grantor); + setGrantee(grantee); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + setWithHierarchy(withHierarchy); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablesRecord.java new file mode 100644 index 0000000..060be69 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TablesRecord.java @@ -0,0 +1,225 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Tables; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TablesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.tables.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.tables.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.tables.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.tables.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.tables.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.tables.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for information_schema.tables.table_type. + */ + public void setTableType(String value) { + set(3, value); + } + + /** + * Getter for information_schema.tables.table_type. + */ + public String getTableType() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.tables.self_referencing_column_name. + */ + public void setSelfReferencingColumnName(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.tables.self_referencing_column_name. + */ + public String getSelfReferencingColumnName() { + return (String) get(4); + } + + /** + * Setter for information_schema.tables.reference_generation. + */ + public void setReferenceGeneration(String value) { + set(5, value); + } + + /** + * Getter for information_schema.tables.reference_generation. + */ + public String getReferenceGeneration() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.tables.user_defined_type_catalog. + */ + public void setUserDefinedTypeCatalog(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.tables.user_defined_type_catalog. + */ + public String getUserDefinedTypeCatalog() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.tables.user_defined_type_schema. + */ + public void setUserDefinedTypeSchema(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.tables.user_defined_type_schema. + */ + public String getUserDefinedTypeSchema() { + return (String) get(7); + } + + /** + * Setter for information_schema.tables.user_defined_type_name. + */ + public void setUserDefinedTypeName(String value) { + set(8, value); + } + + /** + * Getter for information_schema.tables.user_defined_type_name. + */ + public String getUserDefinedTypeName() { + return (String) get(8); + } + + /** + * Setter for information_schema.tables.is_insertable_into. + */ + public void setIsInsertableInto(String value) { + set(9, value); + } + + /** + * Getter for information_schema.tables.is_insertable_into. + */ + public String getIsInsertableInto() { + return (String) get(9); + } + + /** + * Setter for information_schema.tables.is_typed. + */ + public void setIsTyped(String value) { + set(10, value); + } + + /** + * Getter for information_schema.tables.is_typed. + */ + public String getIsTyped() { + return (String) get(10); + } + + /** + * Setter for information_schema.tables.commit_action. + */ + public void setCommitAction(String value) { + set(11, value); + } + + /** + * Getter for information_schema.tables.commit_action. + */ + public String getCommitAction() { + return (String) get(11); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached TablesRecord + */ + public TablesRecord() { + super(Tables.TABLES); + } + + /** + * Create a detached, initialised TablesRecord + */ + public TablesRecord(String tableCatalog, String tableSchema, String tableName, String tableType, String selfReferencingColumnName, String referenceGeneration, String userDefinedTypeCatalog, String userDefinedTypeSchema, String userDefinedTypeName, String isInsertableInto, String isTyped, String commitAction) { + super(Tables.TABLES); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setTableType(tableType); + setSelfReferencingColumnName(selfReferencingColumnName); + setReferenceGeneration(referenceGeneration); + setUserDefinedTypeCatalog(userDefinedTypeCatalog); + setUserDefinedTypeSchema(userDefinedTypeSchema); + setUserDefinedTypeName(userDefinedTypeName); + setIsInsertableInto(isInsertableInto); + setIsTyped(isTyped); + setCommitAction(commitAction); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggeredUpdateColumnsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggeredUpdateColumnsRecord.java new file mode 100644 index 0000000..5b842c8 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggeredUpdateColumnsRecord.java @@ -0,0 +1,158 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.TriggeredUpdateColumns; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TriggeredUpdateColumnsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.triggered_update_columns.trigger_catalog. + */ + public void setTriggerCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.trigger_catalog. + */ + public String getTriggerCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.triggered_update_columns.trigger_schema. + */ + public void setTriggerSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.trigger_schema. + */ + public String getTriggerSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.triggered_update_columns.trigger_name. + */ + public void setTriggerName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.trigger_name. + */ + public String getTriggerName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.triggered_update_columns.event_object_catalog. + */ + public void setEventObjectCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.event_object_catalog. + */ + public String getEventObjectCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.triggered_update_columns.event_object_schema. + */ + public void setEventObjectSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.event_object_schema. + */ + public String getEventObjectSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.triggered_update_columns.event_object_table. + */ + public void setEventObjectTable(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.event_object_table. + */ + public String getEventObjectTable() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.triggered_update_columns.event_object_column. + */ + public void setEventObjectColumn(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.triggered_update_columns.event_object_column. + */ + public String getEventObjectColumn() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached TriggeredUpdateColumnsRecord + */ + public TriggeredUpdateColumnsRecord() { + super(TriggeredUpdateColumns.TRIGGERED_UPDATE_COLUMNS); + } + + /** + * Create a detached, initialised TriggeredUpdateColumnsRecord + */ + public TriggeredUpdateColumnsRecord(String triggerCatalog, String triggerSchema, String triggerName, String eventObjectCatalog, String eventObjectSchema, String eventObjectTable, String eventObjectColumn) { + super(TriggeredUpdateColumns.TRIGGERED_UPDATE_COLUMNS); + + setTriggerCatalog(triggerCatalog); + setTriggerSchema(triggerSchema); + setTriggerName(triggerName); + setEventObjectCatalog(eventObjectCatalog); + setEventObjectSchema(eventObjectSchema); + setEventObjectTable(eventObjectTable); + setEventObjectColumn(eventObjectColumn); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggersRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggersRecord.java new file mode 100644 index 0000000..1fa39df --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/TriggersRecord.java @@ -0,0 +1,304 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Triggers; + +import java.sql.Timestamp; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class TriggersRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.triggers.trigger_catalog. + */ + public void setTriggerCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.triggers.trigger_catalog. + */ + public String getTriggerCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.triggers.trigger_schema. + */ + public void setTriggerSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.triggers.trigger_schema. + */ + public String getTriggerSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.triggers.trigger_name. + */ + public void setTriggerName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.triggers.trigger_name. + */ + public String getTriggerName() { + return (String) get(2); + } + + /** + * Setter for information_schema.triggers.event_manipulation. + */ + public void setEventManipulation(String value) { + set(3, value); + } + + /** + * Getter for information_schema.triggers.event_manipulation. + */ + public String getEventManipulation() { + return (String) get(3); + } + + /** + * Setter for information_schema.triggers.event_object_catalog. + */ + public void setEventObjectCatalog(String value) { + set(4, value); + } + + /** + * Getter for information_schema.triggers.event_object_catalog. + */ + public String getEventObjectCatalog() { + return (String) get(4); + } + + /** + * Setter for information_schema.triggers.event_object_schema. + */ + public void setEventObjectSchema(String value) { + set(5, value); + } + + /** + * Getter for information_schema.triggers.event_object_schema. + */ + public String getEventObjectSchema() { + return (String) get(5); + } + + /** + * Setter for information_schema.triggers.event_object_table. + */ + public void setEventObjectTable(String value) { + set(6, value); + } + + /** + * Getter for information_schema.triggers.event_object_table. + */ + public String getEventObjectTable() { + return (String) get(6); + } + + /** + * Setter for information_schema.triggers.action_order. + */ + public void setActionOrder(Integer value) { + set(7, value); + } + + /** + * Getter for information_schema.triggers.action_order. + */ + public Integer getActionOrder() { + return (Integer) get(7); + } + + /** + * Setter for information_schema.triggers.action_condition. + */ + public void setActionCondition(String value) { + set(8, value); + } + + /** + * Getter for information_schema.triggers.action_condition. + */ + public String getActionCondition() { + return (String) get(8); + } + + /** + * Setter for information_schema.triggers.action_statement. + */ + public void setActionStatement(String value) { + set(9, value); + } + + /** + * Getter for information_schema.triggers.action_statement. + */ + public String getActionStatement() { + return (String) get(9); + } + + /** + * Setter for information_schema.triggers.action_orientation. + */ + public void setActionOrientation(String value) { + set(10, value); + } + + /** + * Getter for information_schema.triggers.action_orientation. + */ + public String getActionOrientation() { + return (String) get(10); + } + + /** + * Setter for information_schema.triggers.action_timing. + */ + public void setActionTiming(String value) { + set(11, value); + } + + /** + * Getter for information_schema.triggers.action_timing. + */ + public String getActionTiming() { + return (String) get(11); + } + + /** + * Setter for + * information_schema.triggers.action_reference_old_table. + */ + public void setActionReferenceOldTable(String value) { + set(12, value); + } + + /** + * Getter for + * information_schema.triggers.action_reference_old_table. + */ + public String getActionReferenceOldTable() { + return (String) get(12); + } + + /** + * Setter for + * information_schema.triggers.action_reference_new_table. + */ + public void setActionReferenceNewTable(String value) { + set(13, value); + } + + /** + * Getter for + * information_schema.triggers.action_reference_new_table. + */ + public String getActionReferenceNewTable() { + return (String) get(13); + } + + /** + * Setter for + * information_schema.triggers.action_reference_old_row. + */ + public void setActionReferenceOldRow(String value) { + set(14, value); + } + + /** + * Getter for + * information_schema.triggers.action_reference_old_row. + */ + public String getActionReferenceOldRow() { + return (String) get(14); + } + + /** + * Setter for + * information_schema.triggers.action_reference_new_row. + */ + public void setActionReferenceNewRow(String value) { + set(15, value); + } + + /** + * Getter for + * information_schema.triggers.action_reference_new_row. + */ + public String getActionReferenceNewRow() { + return (String) get(15); + } + + /** + * Setter for information_schema.triggers.created. + */ + public void setCreated(Timestamp value) { + set(16, value); + } + + /** + * Getter for information_schema.triggers.created. + */ + public Timestamp getCreated() { + return (Timestamp) get(16); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached TriggersRecord + */ + public TriggersRecord() { + super(Triggers.TRIGGERS); + } + + /** + * Create a detached, initialised TriggersRecord + */ + public TriggersRecord(String triggerCatalog, String triggerSchema, String triggerName, String eventManipulation, String eventObjectCatalog, String eventObjectSchema, String eventObjectTable, Integer actionOrder, String actionCondition, String actionStatement, String actionOrientation, String actionTiming, String actionReferenceOldTable, String actionReferenceNewTable, String actionReferenceOldRow, String actionReferenceNewRow, Timestamp created) { + super(Triggers.TRIGGERS); + + setTriggerCatalog(triggerCatalog); + setTriggerSchema(triggerSchema); + setTriggerName(triggerName); + setEventManipulation(eventManipulation); + setEventObjectCatalog(eventObjectCatalog); + setEventObjectSchema(eventObjectSchema); + setEventObjectTable(eventObjectTable); + setActionOrder(actionOrder); + setActionCondition(actionCondition); + setActionStatement(actionStatement); + setActionOrientation(actionOrientation); + setActionTiming(actionTiming); + setActionReferenceOldTable(actionReferenceOldTable); + setActionReferenceNewTable(actionReferenceNewTable); + setActionReferenceOldRow(actionReferenceOldRow); + setActionReferenceNewRow(actionReferenceNewRow); + setCreated(created); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UdtPrivilegesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UdtPrivilegesRecord.java new file mode 100644 index 0000000..c9224b7 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UdtPrivilegesRecord.java @@ -0,0 +1,144 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UdtPrivileges; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UdtPrivilegesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.udt_privileges.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.udt_privileges.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.udt_privileges.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.udt_privileges.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for information_schema.udt_privileges.udt_catalog. + */ + public void setUdtCatalog(String value) { + set(2, value); + } + + /** + * Getter for information_schema.udt_privileges.udt_catalog. + */ + public String getUdtCatalog() { + return (String) get(2); + } + + /** + * Setter for information_schema.udt_privileges.udt_schema. + */ + public void setUdtSchema(String value) { + set(3, value); + } + + /** + * Getter for information_schema.udt_privileges.udt_schema. + */ + public String getUdtSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.udt_privileges.udt_name. + */ + public void setUdtName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.udt_privileges.udt_name. + */ + public String getUdtName() { + return (String) get(4); + } + + /** + * Setter for information_schema.udt_privileges.privilege_type. + */ + public void setPrivilegeType(String value) { + set(5, value); + } + + /** + * Getter for information_schema.udt_privileges.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(5); + } + + /** + * Setter for information_schema.udt_privileges.is_grantable. + */ + public void setIsGrantable(String value) { + set(6, value); + } + + /** + * Getter for information_schema.udt_privileges.is_grantable. + */ + public String getIsGrantable() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached UdtPrivilegesRecord + */ + public UdtPrivilegesRecord() { + super(UdtPrivileges.UDT_PRIVILEGES); + } + + /** + * Create a detached, initialised UdtPrivilegesRecord + */ + public UdtPrivilegesRecord(String grantor, String grantee, String udtCatalog, String udtSchema, String udtName, String privilegeType, String isGrantable) { + super(UdtPrivileges.UDT_PRIVILEGES); + + setGrantor(grantor); + setGrantee(grantee); + setUdtCatalog(udtCatalog); + setUdtSchema(udtSchema); + setUdtName(udtName); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UsagePrivilegesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UsagePrivilegesRecord.java new file mode 100644 index 0000000..0323e82 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UsagePrivilegesRecord.java @@ -0,0 +1,165 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UsagePrivileges; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UsagePrivilegesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.usage_privileges.grantor. + */ + public void setGrantor(String value) { + set(0, value); + } + + /** + * Getter for information_schema.usage_privileges.grantor. + */ + public String getGrantor() { + return (String) get(0); + } + + /** + * Setter for information_schema.usage_privileges.grantee. + */ + public void setGrantee(String value) { + set(1, value); + } + + /** + * Getter for information_schema.usage_privileges.grantee. + */ + public String getGrantee() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.usage_privileges.object_catalog. + */ + public void setObjectCatalog(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.usage_privileges.object_catalog. + */ + public String getObjectCatalog() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.usage_privileges.object_schema. + */ + public void setObjectSchema(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.usage_privileges.object_schema. + */ + public String getObjectSchema() { + return (String) get(3); + } + + /** + * Setter for information_schema.usage_privileges.object_name. + */ + public void setObjectName(String value) { + set(4, value); + } + + /** + * Getter for information_schema.usage_privileges.object_name. + */ + public String getObjectName() { + return (String) get(4); + } + + /** + * Setter for information_schema.usage_privileges.object_type. + */ + public void setObjectType(String value) { + set(5, value); + } + + /** + * Getter for information_schema.usage_privileges.object_type. + */ + public String getObjectType() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.usage_privileges.privilege_type. + */ + public void setPrivilegeType(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.usage_privileges.privilege_type. + */ + public String getPrivilegeType() { + return (String) get(6); + } + + /** + * Setter for information_schema.usage_privileges.is_grantable. + */ + public void setIsGrantable(String value) { + set(7, value); + } + + /** + * Getter for information_schema.usage_privileges.is_grantable. + */ + public String getIsGrantable() { + return (String) get(7); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached UsagePrivilegesRecord + */ + public UsagePrivilegesRecord() { + super(UsagePrivileges.USAGE_PRIVILEGES); + } + + /** + * Create a detached, initialised UsagePrivilegesRecord + */ + public UsagePrivilegesRecord(String grantor, String grantee, String objectCatalog, String objectSchema, String objectName, String objectType, String privilegeType, String isGrantable) { + super(UsagePrivileges.USAGE_PRIVILEGES); + + setGrantor(grantor); + setGrantee(grantee); + setObjectCatalog(objectCatalog); + setObjectSchema(objectSchema); + setObjectName(objectName); + setObjectType(objectType); + setPrivilegeType(privilegeType); + setIsGrantable(isGrantable); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserDefinedTypesRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserDefinedTypesRecord.java new file mode 100644 index 0000000..0c8ade2 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserDefinedTypesRecord.java @@ -0,0 +1,528 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserDefinedTypes; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UserDefinedTypesRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.user_defined_types.user_defined_type_catalog. + */ + public void setUserDefinedTypeCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.user_defined_types.user_defined_type_catalog. + */ + public String getUserDefinedTypeCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.user_defined_types.user_defined_type_schema. + */ + public void setUserDefinedTypeSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.user_defined_types.user_defined_type_schema. + */ + public String getUserDefinedTypeSchema() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.user_defined_types.user_defined_type_name. + */ + public void setUserDefinedTypeName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.user_defined_types.user_defined_type_name. + */ + public String getUserDefinedTypeName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.user_defined_types.user_defined_type_category. + */ + public void setUserDefinedTypeCategory(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.user_defined_types.user_defined_type_category. + */ + public String getUserDefinedTypeCategory() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.user_defined_types.is_instantiable. + */ + public void setIsInstantiable(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.user_defined_types.is_instantiable. + */ + public String getIsInstantiable() { + return (String) get(4); + } + + /** + * Setter for information_schema.user_defined_types.is_final. + */ + public void setIsFinal(String value) { + set(5, value); + } + + /** + * Getter for information_schema.user_defined_types.is_final. + */ + public String getIsFinal() { + return (String) get(5); + } + + /** + * Setter for + * information_schema.user_defined_types.ordering_form. + */ + public void setOrderingForm(String value) { + set(6, value); + } + + /** + * Getter for + * information_schema.user_defined_types.ordering_form. + */ + public String getOrderingForm() { + return (String) get(6); + } + + /** + * Setter for + * information_schema.user_defined_types.ordering_category. + */ + public void setOrderingCategory(String value) { + set(7, value); + } + + /** + * Getter for + * information_schema.user_defined_types.ordering_category. + */ + public String getOrderingCategory() { + return (String) get(7); + } + + /** + * Setter for + * information_schema.user_defined_types.ordering_routine_catalog. + */ + public void setOrderingRoutineCatalog(String value) { + set(8, value); + } + + /** + * Getter for + * information_schema.user_defined_types.ordering_routine_catalog. + */ + public String getOrderingRoutineCatalog() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.user_defined_types.ordering_routine_schema. + */ + public void setOrderingRoutineSchema(String value) { + set(9, value); + } + + /** + * Getter for + * information_schema.user_defined_types.ordering_routine_schema. + */ + public String getOrderingRoutineSchema() { + return (String) get(9); + } + + /** + * Setter for + * information_schema.user_defined_types.ordering_routine_name. + */ + public void setOrderingRoutineName(String value) { + set(10, value); + } + + /** + * Getter for + * information_schema.user_defined_types.ordering_routine_name. + */ + public String getOrderingRoutineName() { + return (String) get(10); + } + + /** + * Setter for + * information_schema.user_defined_types.reference_type. + */ + public void setReferenceType(String value) { + set(11, value); + } + + /** + * Getter for + * information_schema.user_defined_types.reference_type. + */ + public String getReferenceType() { + return (String) get(11); + } + + /** + * Setter for information_schema.user_defined_types.data_type. + */ + public void setDataType(String value) { + set(12, value); + } + + /** + * Getter for information_schema.user_defined_types.data_type. + */ + public String getDataType() { + return (String) get(12); + } + + /** + * Setter for + * information_schema.user_defined_types.character_maximum_length. + */ + public void setCharacterMaximumLength(Integer value) { + set(13, value); + } + + /** + * Getter for + * information_schema.user_defined_types.character_maximum_length. + */ + public Integer getCharacterMaximumLength() { + return (Integer) get(13); + } + + /** + * Setter for + * information_schema.user_defined_types.character_octet_length. + */ + public void setCharacterOctetLength(Integer value) { + set(14, value); + } + + /** + * Getter for + * information_schema.user_defined_types.character_octet_length. + */ + public Integer getCharacterOctetLength() { + return (Integer) get(14); + } + + /** + * Setter for + * information_schema.user_defined_types.character_set_catalog. + */ + public void setCharacterSetCatalog(String value) { + set(15, value); + } + + /** + * Getter for + * information_schema.user_defined_types.character_set_catalog. + */ + public String getCharacterSetCatalog() { + return (String) get(15); + } + + /** + * Setter for + * information_schema.user_defined_types.character_set_schema. + */ + public void setCharacterSetSchema(String value) { + set(16, value); + } + + /** + * Getter for + * information_schema.user_defined_types.character_set_schema. + */ + public String getCharacterSetSchema() { + return (String) get(16); + } + + /** + * Setter for + * information_schema.user_defined_types.character_set_name. + */ + public void setCharacterSetName(String value) { + set(17, value); + } + + /** + * Getter for + * information_schema.user_defined_types.character_set_name. + */ + public String getCharacterSetName() { + return (String) get(17); + } + + /** + * Setter for + * information_schema.user_defined_types.collation_catalog. + */ + public void setCollationCatalog(String value) { + set(18, value); + } + + /** + * Getter for + * information_schema.user_defined_types.collation_catalog. + */ + public String getCollationCatalog() { + return (String) get(18); + } + + /** + * Setter for + * information_schema.user_defined_types.collation_schema. + */ + public void setCollationSchema(String value) { + set(19, value); + } + + /** + * Getter for + * information_schema.user_defined_types.collation_schema. + */ + public String getCollationSchema() { + return (String) get(19); + } + + /** + * Setter for + * information_schema.user_defined_types.collation_name. + */ + public void setCollationName(String value) { + set(20, value); + } + + /** + * Getter for + * information_schema.user_defined_types.collation_name. + */ + public String getCollationName() { + return (String) get(20); + } + + /** + * Setter for + * information_schema.user_defined_types.numeric_precision. + */ + public void setNumericPrecision(Integer value) { + set(21, value); + } + + /** + * Getter for + * information_schema.user_defined_types.numeric_precision. + */ + public Integer getNumericPrecision() { + return (Integer) get(21); + } + + /** + * Setter for + * information_schema.user_defined_types.numeric_precision_radix. + */ + public void setNumericPrecisionRadix(Integer value) { + set(22, value); + } + + /** + * Getter for + * information_schema.user_defined_types.numeric_precision_radix. + */ + public Integer getNumericPrecisionRadix() { + return (Integer) get(22); + } + + /** + * Setter for + * information_schema.user_defined_types.numeric_scale. + */ + public void setNumericScale(Integer value) { + set(23, value); + } + + /** + * Getter for + * information_schema.user_defined_types.numeric_scale. + */ + public Integer getNumericScale() { + return (Integer) get(23); + } + + /** + * Setter for + * information_schema.user_defined_types.datetime_precision. + */ + public void setDatetimePrecision(Integer value) { + set(24, value); + } + + /** + * Getter for + * information_schema.user_defined_types.datetime_precision. + */ + public Integer getDatetimePrecision() { + return (Integer) get(24); + } + + /** + * Setter for + * information_schema.user_defined_types.interval_type. + */ + public void setIntervalType(String value) { + set(25, value); + } + + /** + * Getter for + * information_schema.user_defined_types.interval_type. + */ + public String getIntervalType() { + return (String) get(25); + } + + /** + * Setter for + * information_schema.user_defined_types.interval_precision. + */ + public void setIntervalPrecision(Integer value) { + set(26, value); + } + + /** + * Getter for + * information_schema.user_defined_types.interval_precision. + */ + public Integer getIntervalPrecision() { + return (Integer) get(26); + } + + /** + * Setter for + * information_schema.user_defined_types.source_dtd_identifier. + */ + public void setSourceDtdIdentifier(String value) { + set(27, value); + } + + /** + * Getter for + * information_schema.user_defined_types.source_dtd_identifier. + */ + public String getSourceDtdIdentifier() { + return (String) get(27); + } + + /** + * Setter for + * information_schema.user_defined_types.ref_dtd_identifier. + */ + public void setRefDtdIdentifier(String value) { + set(28, value); + } + + /** + * Getter for + * information_schema.user_defined_types.ref_dtd_identifier. + */ + public String getRefDtdIdentifier() { + return (String) get(28); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached UserDefinedTypesRecord + */ + public UserDefinedTypesRecord() { + super(UserDefinedTypes.USER_DEFINED_TYPES); + } + + /** + * Create a detached, initialised UserDefinedTypesRecord + */ + public UserDefinedTypesRecord(String userDefinedTypeCatalog, String userDefinedTypeSchema, String userDefinedTypeName, String userDefinedTypeCategory, String isInstantiable, String isFinal, String orderingForm, String orderingCategory, String orderingRoutineCatalog, String orderingRoutineSchema, String orderingRoutineName, String referenceType, String dataType, Integer characterMaximumLength, Integer characterOctetLength, String characterSetCatalog, String characterSetSchema, String characterSetName, String collationCatalog, String collationSchema, String collationName, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer datetimePrecision, String intervalType, Integer intervalPrecision, String sourceDtdIdentifier, String refDtdIdentifier) { + super(UserDefinedTypes.USER_DEFINED_TYPES); + + setUserDefinedTypeCatalog(userDefinedTypeCatalog); + setUserDefinedTypeSchema(userDefinedTypeSchema); + setUserDefinedTypeName(userDefinedTypeName); + setUserDefinedTypeCategory(userDefinedTypeCategory); + setIsInstantiable(isInstantiable); + setIsFinal(isFinal); + setOrderingForm(orderingForm); + setOrderingCategory(orderingCategory); + setOrderingRoutineCatalog(orderingRoutineCatalog); + setOrderingRoutineSchema(orderingRoutineSchema); + setOrderingRoutineName(orderingRoutineName); + setReferenceType(referenceType); + setDataType(dataType); + setCharacterMaximumLength(characterMaximumLength); + setCharacterOctetLength(characterOctetLength); + setCharacterSetCatalog(characterSetCatalog); + setCharacterSetSchema(characterSetSchema); + setCharacterSetName(characterSetName); + setCollationCatalog(collationCatalog); + setCollationSchema(collationSchema); + setCollationName(collationName); + setNumericPrecision(numericPrecision); + setNumericPrecisionRadix(numericPrecisionRadix); + setNumericScale(numericScale); + setDatetimePrecision(datetimePrecision); + setIntervalType(intervalType); + setIntervalPrecision(intervalPrecision); + setSourceDtdIdentifier(sourceDtdIdentifier); + setRefDtdIdentifier(refDtdIdentifier); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingOptionsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingOptionsRecord.java new file mode 100644 index 0000000..e4e1bae --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingOptionsRecord.java @@ -0,0 +1,124 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserMappingOptions; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UserMappingOptionsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.user_mapping_options.authorization_identifier. + */ + public void setAuthorizationIdentifier(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.user_mapping_options.authorization_identifier. + */ + public String getAuthorizationIdentifier() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.user_mapping_options.foreign_server_catalog. + */ + public void setForeignServerCatalog(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.user_mapping_options.foreign_server_catalog. + */ + public String getForeignServerCatalog() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.user_mapping_options.foreign_server_name. + */ + public void setForeignServerName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.user_mapping_options.foreign_server_name. + */ + public String getForeignServerName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.user_mapping_options.option_name. + */ + public void setOptionName(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.user_mapping_options.option_name. + */ + public String getOptionName() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.user_mapping_options.option_value. + */ + public void setOptionValue(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.user_mapping_options.option_value. + */ + public String getOptionValue() { + return (String) get(4); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached UserMappingOptionsRecord + */ + public UserMappingOptionsRecord() { + super(UserMappingOptions.USER_MAPPING_OPTIONS); + } + + /** + * Create a detached, initialised UserMappingOptionsRecord + */ + public UserMappingOptionsRecord(String authorizationIdentifier, String foreignServerCatalog, String foreignServerName, String optionName, String optionValue) { + super(UserMappingOptions.USER_MAPPING_OPTIONS); + + setAuthorizationIdentifier(authorizationIdentifier); + setForeignServerCatalog(foreignServerCatalog); + setForeignServerName(foreignServerName); + setOptionName(optionName); + setOptionValue(optionValue); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingsRecord.java new file mode 100644 index 0000000..dd51a14 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/UserMappingsRecord.java @@ -0,0 +1,90 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.UserMappings; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class UserMappingsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.user_mappings.authorization_identifier. + */ + public void setAuthorizationIdentifier(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.user_mappings.authorization_identifier. + */ + public String getAuthorizationIdentifier() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.user_mappings.foreign_server_catalog. + */ + public void setForeignServerCatalog(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.user_mappings.foreign_server_catalog. + */ + public String getForeignServerCatalog() { + return (String) get(1); + } + + /** + * Setter for + * information_schema.user_mappings.foreign_server_name. + */ + public void setForeignServerName(String value) { + set(2, value); + } + + /** + * Getter for + * information_schema.user_mappings.foreign_server_name. + */ + public String getForeignServerName() { + return (String) get(2); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached UserMappingsRecord + */ + public UserMappingsRecord() { + super(UserMappings.USER_MAPPINGS); + } + + /** + * Create a detached, initialised UserMappingsRecord + */ + public UserMappingsRecord(String authorizationIdentifier, String foreignServerCatalog, String foreignServerName) { + super(UserMappings.USER_MAPPINGS); + + setAuthorizationIdentifier(authorizationIdentifier); + setForeignServerCatalog(foreignServerCatalog); + setForeignServerName(foreignServerName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewColumnUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewColumnUsageRecord.java new file mode 100644 index 0000000..1f576c7 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewColumnUsageRecord.java @@ -0,0 +1,150 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewColumnUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewColumnUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.view_column_usage.view_catalog. + */ + public void setViewCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.view_column_usage.view_catalog. + */ + public String getViewCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.view_column_usage.view_schema. + */ + public void setViewSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.view_column_usage.view_schema. + */ + public String getViewSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.view_column_usage.view_name. + */ + public void setViewName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.view_column_usage.view_name. + */ + public String getViewName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.view_column_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.view_column_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.view_column_usage.table_schema. + */ + public void setTableSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.view_column_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.view_column_usage.table_name. + */ + public void setTableName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.view_column_usage.table_name. + */ + public String getTableName() { + return (String) get(5); + } + + /** + * Setter for information_schema.view_column_usage.column_name. + */ + public void setColumnName(String value) { + set(6, value); + } + + /** + * Getter for information_schema.view_column_usage.column_name. + */ + public String getColumnName() { + return (String) get(6); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ViewColumnUsageRecord + */ + public ViewColumnUsageRecord() { + super(ViewColumnUsage.VIEW_COLUMN_USAGE); + } + + /** + * Create a detached, initialised ViewColumnUsageRecord + */ + public ViewColumnUsageRecord(String viewCatalog, String viewSchema, String viewName, String tableCatalog, String tableSchema, String tableName, String columnName) { + super(ViewColumnUsage.VIEW_COLUMN_USAGE); + + setViewCatalog(viewCatalog); + setViewSchema(viewSchema); + setViewName(viewName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setColumnName(columnName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewRoutineUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewRoutineUsageRecord.java new file mode 100644 index 0000000..4580f33 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewRoutineUsageRecord.java @@ -0,0 +1,139 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewRoutineUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewRoutineUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * information_schema.view_routine_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for + * information_schema.view_routine_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for + * information_schema.view_routine_usage.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for + * information_schema.view_routine_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.view_routine_usage.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.view_routine_usage.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.view_routine_usage.specific_catalog. + */ + public void setSpecificCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.view_routine_usage.specific_catalog. + */ + public String getSpecificCatalog() { + return (String) get(3); + } + + /** + * Setter for + * information_schema.view_routine_usage.specific_schema. + */ + public void setSpecificSchema(String value) { + set(4, value); + } + + /** + * Getter for + * information_schema.view_routine_usage.specific_schema. + */ + public String getSpecificSchema() { + return (String) get(4); + } + + /** + * Setter for + * information_schema.view_routine_usage.specific_name. + */ + public void setSpecificName(String value) { + set(5, value); + } + + /** + * Getter for + * information_schema.view_routine_usage.specific_name. + */ + public String getSpecificName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ViewRoutineUsageRecord + */ + public ViewRoutineUsageRecord() { + super(ViewRoutineUsage.VIEW_ROUTINE_USAGE); + } + + /** + * Create a detached, initialised ViewRoutineUsageRecord + */ + public ViewRoutineUsageRecord(String tableCatalog, String tableSchema, String tableName, String specificCatalog, String specificSchema, String specificName) { + super(ViewRoutineUsage.VIEW_ROUTINE_USAGE); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setSpecificCatalog(specificCatalog); + setSpecificSchema(specificSchema); + setSpecificName(specificName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewTableUsageRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewTableUsageRecord.java new file mode 100644 index 0000000..81b3a1b --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewTableUsageRecord.java @@ -0,0 +1,131 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.ViewTableUsage; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewTableUsageRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.view_table_usage.view_catalog. + */ + public void setViewCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.view_table_usage.view_catalog. + */ + public String getViewCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.view_table_usage.view_schema. + */ + public void setViewSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.view_table_usage.view_schema. + */ + public String getViewSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.view_table_usage.view_name. + */ + public void setViewName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.view_table_usage.view_name. + */ + public String getViewName() { + return (String) get(2); + } + + /** + * Setter for + * information_schema.view_table_usage.table_catalog. + */ + public void setTableCatalog(String value) { + set(3, value); + } + + /** + * Getter for + * information_schema.view_table_usage.table_catalog. + */ + public String getTableCatalog() { + return (String) get(3); + } + + /** + * Setter for information_schema.view_table_usage.table_schema. + */ + public void setTableSchema(String value) { + set(4, value); + } + + /** + * Getter for information_schema.view_table_usage.table_schema. + */ + public String getTableSchema() { + return (String) get(4); + } + + /** + * Setter for information_schema.view_table_usage.table_name. + */ + public void setTableName(String value) { + set(5, value); + } + + /** + * Getter for information_schema.view_table_usage.table_name. + */ + public String getTableName() { + return (String) get(5); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ViewTableUsageRecord + */ + public ViewTableUsageRecord() { + super(ViewTableUsage.VIEW_TABLE_USAGE); + } + + /** + * Create a detached, initialised ViewTableUsageRecord + */ + public ViewTableUsageRecord(String viewCatalog, String viewSchema, String viewName, String tableCatalog, String tableSchema, String tableName) { + super(ViewTableUsage.VIEW_TABLE_USAGE); + + setViewCatalog(viewCatalog); + setViewSchema(viewSchema); + setViewName(viewName); + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewsRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewsRecord.java new file mode 100644 index 0000000..fb316da --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/ViewsRecord.java @@ -0,0 +1,191 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables.Views; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ViewsRecord extends TableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for information_schema.views.table_catalog. + */ + public void setTableCatalog(String value) { + set(0, value); + } + + /** + * Getter for information_schema.views.table_catalog. + */ + public String getTableCatalog() { + return (String) get(0); + } + + /** + * Setter for information_schema.views.table_schema. + */ + public void setTableSchema(String value) { + set(1, value); + } + + /** + * Getter for information_schema.views.table_schema. + */ + public String getTableSchema() { + return (String) get(1); + } + + /** + * Setter for information_schema.views.table_name. + */ + public void setTableName(String value) { + set(2, value); + } + + /** + * Getter for information_schema.views.table_name. + */ + public String getTableName() { + return (String) get(2); + } + + /** + * Setter for information_schema.views.view_definition. + */ + public void setViewDefinition(String value) { + set(3, value); + } + + /** + * Getter for information_schema.views.view_definition. + */ + public String getViewDefinition() { + return (String) get(3); + } + + /** + * Setter for information_schema.views.check_option. + */ + public void setCheckOption(String value) { + set(4, value); + } + + /** + * Getter for information_schema.views.check_option. + */ + public String getCheckOption() { + return (String) get(4); + } + + /** + * Setter for information_schema.views.is_updatable. + */ + public void setIsUpdatable(String value) { + set(5, value); + } + + /** + * Getter for information_schema.views.is_updatable. + */ + public String getIsUpdatable() { + return (String) get(5); + } + + /** + * Setter for information_schema.views.is_insertable_into. + */ + public void setIsInsertableInto(String value) { + set(6, value); + } + + /** + * Getter for information_schema.views.is_insertable_into. + */ + public String getIsInsertableInto() { + return (String) get(6); + } + + /** + * Setter for information_schema.views.is_trigger_updatable. + */ + public void setIsTriggerUpdatable(String value) { + set(7, value); + } + + /** + * Getter for information_schema.views.is_trigger_updatable. + */ + public String getIsTriggerUpdatable() { + return (String) get(7); + } + + /** + * Setter for information_schema.views.is_trigger_deletable. + */ + public void setIsTriggerDeletable(String value) { + set(8, value); + } + + /** + * Getter for information_schema.views.is_trigger_deletable. + */ + public String getIsTriggerDeletable() { + return (String) get(8); + } + + /** + * Setter for + * information_schema.views.is_trigger_insertable_into. + */ + public void setIsTriggerInsertableInto(String value) { + set(9, value); + } + + /** + * Getter for + * information_schema.views.is_trigger_insertable_into. + */ + public String getIsTriggerInsertableInto() { + return (String) get(9); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ViewsRecord + */ + public ViewsRecord() { + super(Views.VIEWS); + } + + /** + * Create a detached, initialised ViewsRecord + */ + public ViewsRecord(String tableCatalog, String tableSchema, String tableName, String viewDefinition, String checkOption, String isUpdatable, String isInsertableInto, String isTriggerUpdatable, String isTriggerDeletable, String isTriggerInsertableInto) { + super(Views.VIEWS); + + setTableCatalog(tableCatalog); + setTableSchema(tableSchema); + setTableName(tableName); + setViewDefinition(viewDefinition); + setCheckOption(checkOption); + setIsUpdatable(isUpdatable); + setIsInsertableInto(isInsertableInto); + setIsTriggerUpdatable(isTriggerUpdatable); + setIsTriggerDeletable(isTriggerDeletable); + setIsTriggerInsertableInto(isTriggerInsertableInto); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/_PgExpandarrayRecord.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/_PgExpandarrayRecord.java new file mode 100644 index 0000000..8c11224 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/information_schema/tables/records/_PgExpandarrayRecord.java @@ -0,0 +1,81 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.information_schema.tables.records; + + +import ervu_secret.ervu_secret.db_beans.information_schema.tables._PgExpandarray; + +import org.jooq.impl.TableRecordImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class _PgExpandarrayRecord extends TableRecordImpl<_PgExpandarrayRecord> { + + private static final long serialVersionUID = 1L; + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public void setX(Object value) { + set(0, value); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public Object getX() { + return get(0); + } + + /** + * Setter for information_schema._pg_expandarray.n. + */ + public void setN(Integer value) { + set(1, value); + } + + /** + * Getter for information_schema._pg_expandarray.n. + */ + public Integer getN() { + return (Integer) get(1); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached _PgExpandarrayRecord + */ + public _PgExpandarrayRecord() { + super(_PgExpandarray._PG_EXPANDARRAY); + } + + /** + * Create a detached, initialised _PgExpandarrayRecord + */ + public _PgExpandarrayRecord(Object x, Integer n) { + super(_PgExpandarray._PG_EXPANDARRAY); + + setX(x); + setN(n); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Keys.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Keys.java new file mode 100644 index 0000000..000bdff --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Keys.java @@ -0,0 +1,241 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.pg_catalog; + + +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAggregate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAm; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAmop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAmproc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAttrdef; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAttribute; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAuthMembers; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCast; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgClass; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCollation; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgConstraint; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgConversion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDatabase; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDbRoleSetting; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDefaultAcl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDescription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEnum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTrigger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtension; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgForeignDataWrapper; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgForeignServer; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgForeignTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgIndex; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgInherits; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgInitPrivs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLanguage; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLargeobjectMetadata; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgNamespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOpclass; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOperator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOpfamily; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgParameterAcl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionedTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPolicy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgProc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublication; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublicationNamespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublicationRel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgReplicationOrigin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgRewrite; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSeclabel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSequence; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShdescription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShseclabel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatisticExt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSubscription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSubscriptionRel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTransform; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTrigger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsConfigMap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsDict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsParser; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsTemplate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAggregateRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAmRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAmopRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAmprocRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAttrdefRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAttributeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAuthMembersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgCastRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgClassRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgCollationRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgConstraintRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgConversionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgDatabaseRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgDbRoleSettingRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgDefaultAclRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgDescriptionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgEnumRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgEventTriggerRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgExtensionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgForeignDataWrapperRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgForeignServerRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgForeignTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgIndexRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgInheritsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgInitPrivsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLanguageRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLargeobjectMetadataRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgNamespaceRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgOpclassRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgOperatorRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgOpfamilyRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgParameterAclRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPartitionedTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPolicyRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgProcRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPublicationNamespaceRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPublicationRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPublicationRelRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgRangeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgReplicationOriginRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgRewriteRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgSeclabelRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgSequenceRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgShdescriptionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgShseclabelRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatisticExtRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgSubscriptionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgSubscriptionRelRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTablespaceRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTransformRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTriggerRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTsConfigMapRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTsConfigRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTsDictRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTsParserRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTsTemplateRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTypeRecord; + +import org.jooq.TableField; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.Internal; + + +/** + * A class modelling foreign key relationships and constraints of tables in + * pg_catalog. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Keys { + + // ------------------------------------------------------------------------- + // UNIQUE and PRIMARY KEY definitions + // ------------------------------------------------------------------------- + + public static final UniqueKey PG_AGGREGATE_FNOID_INDEX = Internal.createUniqueKey(PgAggregate.PG_AGGREGATE, DSL.name("pg_aggregate_fnoid_index"), new TableField[] { PgAggregate.PG_AGGREGATE.AGGFNOID }, true); + public static final UniqueKey PG_AM_NAME_INDEX = Internal.createUniqueKey(PgAm.PG_AM, DSL.name("pg_am_name_index"), new TableField[] { PgAm.PG_AM.AMNAME }, true); + public static final UniqueKey PG_AM_OID_INDEX = Internal.createUniqueKey(PgAm.PG_AM, DSL.name("pg_am_oid_index"), new TableField[] { PgAm.PG_AM.OID }, true); + public static final UniqueKey PG_AMOP_FAM_STRAT_INDEX = Internal.createUniqueKey(PgAmop.PG_AMOP, DSL.name("pg_amop_fam_strat_index"), new TableField[] { PgAmop.PG_AMOP.AMOPFAMILY, PgAmop.PG_AMOP.AMOPLEFTTYPE, PgAmop.PG_AMOP.AMOPRIGHTTYPE, PgAmop.PG_AMOP.AMOPSTRATEGY }, true); + public static final UniqueKey PG_AMOP_OID_INDEX = Internal.createUniqueKey(PgAmop.PG_AMOP, DSL.name("pg_amop_oid_index"), new TableField[] { PgAmop.PG_AMOP.OID }, true); + public static final UniqueKey PG_AMOP_OPR_FAM_INDEX = Internal.createUniqueKey(PgAmop.PG_AMOP, DSL.name("pg_amop_opr_fam_index"), new TableField[] { PgAmop.PG_AMOP.AMOPOPR, PgAmop.PG_AMOP.AMOPPURPOSE, PgAmop.PG_AMOP.AMOPFAMILY }, true); + public static final UniqueKey PG_AMPROC_FAM_PROC_INDEX = Internal.createUniqueKey(PgAmproc.PG_AMPROC, DSL.name("pg_amproc_fam_proc_index"), new TableField[] { PgAmproc.PG_AMPROC.AMPROCFAMILY, PgAmproc.PG_AMPROC.AMPROCLEFTTYPE, PgAmproc.PG_AMPROC.AMPROCRIGHTTYPE, PgAmproc.PG_AMPROC.AMPROCNUM }, true); + public static final UniqueKey PG_AMPROC_OID_INDEX = Internal.createUniqueKey(PgAmproc.PG_AMPROC, DSL.name("pg_amproc_oid_index"), new TableField[] { PgAmproc.PG_AMPROC.OID }, true); + public static final UniqueKey PG_ATTRDEF_ADRELID_ADNUM_INDEX = Internal.createUniqueKey(PgAttrdef.PG_ATTRDEF, DSL.name("pg_attrdef_adrelid_adnum_index"), new TableField[] { PgAttrdef.PG_ATTRDEF.ADRELID, PgAttrdef.PG_ATTRDEF.ADNUM }, true); + public static final UniqueKey PG_ATTRDEF_OID_INDEX = Internal.createUniqueKey(PgAttrdef.PG_ATTRDEF, DSL.name("pg_attrdef_oid_index"), new TableField[] { PgAttrdef.PG_ATTRDEF.OID }, true); + public static final UniqueKey PG_ATTRIBUTE_RELID_ATTNAM_INDEX = Internal.createUniqueKey(PgAttribute.PG_ATTRIBUTE, DSL.name("pg_attribute_relid_attnam_index"), new TableField[] { PgAttribute.PG_ATTRIBUTE.ATTRELID, PgAttribute.PG_ATTRIBUTE.ATTNAME }, true); + public static final UniqueKey PG_ATTRIBUTE_RELID_ATTNUM_INDEX = Internal.createUniqueKey(PgAttribute.PG_ATTRIBUTE, DSL.name("pg_attribute_relid_attnum_index"), new TableField[] { PgAttribute.PG_ATTRIBUTE.ATTRELID, PgAttribute.PG_ATTRIBUTE.ATTNUM }, true); + public static final UniqueKey PG_AUTH_MEMBERS_MEMBER_ROLE_INDEX = Internal.createUniqueKey(PgAuthMembers.PG_AUTH_MEMBERS, DSL.name("pg_auth_members_member_role_index"), new TableField[] { PgAuthMembers.PG_AUTH_MEMBERS.MEMBER, PgAuthMembers.PG_AUTH_MEMBERS.ROLEID }, true); + public static final UniqueKey PG_AUTH_MEMBERS_ROLE_MEMBER_INDEX = Internal.createUniqueKey(PgAuthMembers.PG_AUTH_MEMBERS, DSL.name("pg_auth_members_role_member_index"), new TableField[] { PgAuthMembers.PG_AUTH_MEMBERS.ROLEID, PgAuthMembers.PG_AUTH_MEMBERS.MEMBER }, true); + public static final UniqueKey PG_CAST_OID_INDEX = Internal.createUniqueKey(PgCast.PG_CAST, DSL.name("pg_cast_oid_index"), new TableField[] { PgCast.PG_CAST.OID }, true); + public static final UniqueKey PG_CAST_SOURCE_TARGET_INDEX = Internal.createUniqueKey(PgCast.PG_CAST, DSL.name("pg_cast_source_target_index"), new TableField[] { PgCast.PG_CAST.CASTSOURCE, PgCast.PG_CAST.CASTTARGET }, true); + public static final UniqueKey PG_CLASS_OID_INDEX = Internal.createUniqueKey(PgClass.PG_CLASS, DSL.name("pg_class_oid_index"), new TableField[] { PgClass.PG_CLASS.OID }, true); + public static final UniqueKey PG_CLASS_RELNAME_NSP_INDEX = Internal.createUniqueKey(PgClass.PG_CLASS, DSL.name("pg_class_relname_nsp_index"), new TableField[] { PgClass.PG_CLASS.RELNAME, PgClass.PG_CLASS.RELNAMESPACE }, true); + public static final UniqueKey PG_COLLATION_NAME_ENC_NSP_INDEX = Internal.createUniqueKey(PgCollation.PG_COLLATION, DSL.name("pg_collation_name_enc_nsp_index"), new TableField[] { PgCollation.PG_COLLATION.COLLNAME, PgCollation.PG_COLLATION.COLLENCODING, PgCollation.PG_COLLATION.COLLNAMESPACE }, true); + public static final UniqueKey PG_COLLATION_OID_INDEX = Internal.createUniqueKey(PgCollation.PG_COLLATION, DSL.name("pg_collation_oid_index"), new TableField[] { PgCollation.PG_COLLATION.OID }, true); + public static final UniqueKey PG_CONSTRAINT_CONRELID_CONTYPID_CONNAME_INDEX = Internal.createUniqueKey(PgConstraint.PG_CONSTRAINT, DSL.name("pg_constraint_conrelid_contypid_conname_index"), new TableField[] { PgConstraint.PG_CONSTRAINT.CONRELID, PgConstraint.PG_CONSTRAINT.CONTYPID, PgConstraint.PG_CONSTRAINT.CONNAME }, true); + public static final UniqueKey PG_CONSTRAINT_OID_INDEX = Internal.createUniqueKey(PgConstraint.PG_CONSTRAINT, DSL.name("pg_constraint_oid_index"), new TableField[] { PgConstraint.PG_CONSTRAINT.OID }, true); + public static final UniqueKey PG_CONVERSION_DEFAULT_INDEX = Internal.createUniqueKey(PgConversion.PG_CONVERSION, DSL.name("pg_conversion_default_index"), new TableField[] { PgConversion.PG_CONVERSION.CONNAMESPACE, PgConversion.PG_CONVERSION.CONFORENCODING, PgConversion.PG_CONVERSION.CONTOENCODING, PgConversion.PG_CONVERSION.OID }, true); + public static final UniqueKey PG_CONVERSION_NAME_NSP_INDEX = Internal.createUniqueKey(PgConversion.PG_CONVERSION, DSL.name("pg_conversion_name_nsp_index"), new TableField[] { PgConversion.PG_CONVERSION.CONNAME, PgConversion.PG_CONVERSION.CONNAMESPACE }, true); + public static final UniqueKey PG_CONVERSION_OID_INDEX = Internal.createUniqueKey(PgConversion.PG_CONVERSION, DSL.name("pg_conversion_oid_index"), new TableField[] { PgConversion.PG_CONVERSION.OID }, true); + public static final UniqueKey PG_DATABASE_DATNAME_INDEX = Internal.createUniqueKey(PgDatabase.PG_DATABASE, DSL.name("pg_database_datname_index"), new TableField[] { PgDatabase.PG_DATABASE.DATNAME }, true); + public static final UniqueKey PG_DATABASE_OID_INDEX = Internal.createUniqueKey(PgDatabase.PG_DATABASE, DSL.name("pg_database_oid_index"), new TableField[] { PgDatabase.PG_DATABASE.OID }, true); + public static final UniqueKey PG_DB_ROLE_SETTING_DATABASEID_ROL_INDEX = Internal.createUniqueKey(PgDbRoleSetting.PG_DB_ROLE_SETTING, DSL.name("pg_db_role_setting_databaseid_rol_index"), new TableField[] { PgDbRoleSetting.PG_DB_ROLE_SETTING.SETDATABASE, PgDbRoleSetting.PG_DB_ROLE_SETTING.SETROLE }, true); + public static final UniqueKey PG_DEFAULT_ACL_OID_INDEX = Internal.createUniqueKey(PgDefaultAcl.PG_DEFAULT_ACL, DSL.name("pg_default_acl_oid_index"), new TableField[] { PgDefaultAcl.PG_DEFAULT_ACL.OID }, true); + public static final UniqueKey PG_DEFAULT_ACL_ROLE_NSP_OBJ_INDEX = Internal.createUniqueKey(PgDefaultAcl.PG_DEFAULT_ACL, DSL.name("pg_default_acl_role_nsp_obj_index"), new TableField[] { PgDefaultAcl.PG_DEFAULT_ACL.DEFACLROLE, PgDefaultAcl.PG_DEFAULT_ACL.DEFACLNAMESPACE, PgDefaultAcl.PG_DEFAULT_ACL.DEFACLOBJTYPE }, true); + public static final UniqueKey PG_DESCRIPTION_O_C_O_INDEX = Internal.createUniqueKey(PgDescription.PG_DESCRIPTION, DSL.name("pg_description_o_c_o_index"), new TableField[] { PgDescription.PG_DESCRIPTION.OBJOID, PgDescription.PG_DESCRIPTION.CLASSOID, PgDescription.PG_DESCRIPTION.OBJSUBID }, true); + public static final UniqueKey PG_ENUM_OID_INDEX = Internal.createUniqueKey(PgEnum.PG_ENUM, DSL.name("pg_enum_oid_index"), new TableField[] { PgEnum.PG_ENUM.OID }, true); + public static final UniqueKey PG_ENUM_TYPID_LABEL_INDEX = Internal.createUniqueKey(PgEnum.PG_ENUM, DSL.name("pg_enum_typid_label_index"), new TableField[] { PgEnum.PG_ENUM.ENUMTYPID, PgEnum.PG_ENUM.ENUMLABEL }, true); + public static final UniqueKey PG_ENUM_TYPID_SORTORDER_INDEX = Internal.createUniqueKey(PgEnum.PG_ENUM, DSL.name("pg_enum_typid_sortorder_index"), new TableField[] { PgEnum.PG_ENUM.ENUMTYPID, PgEnum.PG_ENUM.ENUMSORTORDER }, true); + public static final UniqueKey PG_EVENT_TRIGGER_EVTNAME_INDEX = Internal.createUniqueKey(PgEventTrigger.PG_EVENT_TRIGGER, DSL.name("pg_event_trigger_evtname_index"), new TableField[] { PgEventTrigger.PG_EVENT_TRIGGER.EVTNAME }, true); + public static final UniqueKey PG_EVENT_TRIGGER_OID_INDEX = Internal.createUniqueKey(PgEventTrigger.PG_EVENT_TRIGGER, DSL.name("pg_event_trigger_oid_index"), new TableField[] { PgEventTrigger.PG_EVENT_TRIGGER.OID }, true); + public static final UniqueKey PG_EXTENSION_NAME_INDEX = Internal.createUniqueKey(PgExtension.PG_EXTENSION, DSL.name("pg_extension_name_index"), new TableField[] { PgExtension.PG_EXTENSION.EXTNAME }, true); + public static final UniqueKey PG_EXTENSION_OID_INDEX = Internal.createUniqueKey(PgExtension.PG_EXTENSION, DSL.name("pg_extension_oid_index"), new TableField[] { PgExtension.PG_EXTENSION.OID }, true); + public static final UniqueKey PG_FOREIGN_DATA_WRAPPER_NAME_INDEX = Internal.createUniqueKey(PgForeignDataWrapper.PG_FOREIGN_DATA_WRAPPER, DSL.name("pg_foreign_data_wrapper_name_index"), new TableField[] { PgForeignDataWrapper.PG_FOREIGN_DATA_WRAPPER.FDWNAME }, true); + public static final UniqueKey PG_FOREIGN_DATA_WRAPPER_OID_INDEX = Internal.createUniqueKey(PgForeignDataWrapper.PG_FOREIGN_DATA_WRAPPER, DSL.name("pg_foreign_data_wrapper_oid_index"), new TableField[] { PgForeignDataWrapper.PG_FOREIGN_DATA_WRAPPER.OID }, true); + public static final UniqueKey PG_FOREIGN_SERVER_NAME_INDEX = Internal.createUniqueKey(PgForeignServer.PG_FOREIGN_SERVER, DSL.name("pg_foreign_server_name_index"), new TableField[] { PgForeignServer.PG_FOREIGN_SERVER.SRVNAME }, true); + public static final UniqueKey PG_FOREIGN_SERVER_OID_INDEX = Internal.createUniqueKey(PgForeignServer.PG_FOREIGN_SERVER, DSL.name("pg_foreign_server_oid_index"), new TableField[] { PgForeignServer.PG_FOREIGN_SERVER.OID }, true); + public static final UniqueKey PG_FOREIGN_TABLE_RELID_INDEX = Internal.createUniqueKey(PgForeignTable.PG_FOREIGN_TABLE, DSL.name("pg_foreign_table_relid_index"), new TableField[] { PgForeignTable.PG_FOREIGN_TABLE.FTRELID }, true); + public static final UniqueKey PG_INDEX_INDEXRELID_INDEX = Internal.createUniqueKey(PgIndex.PG_INDEX, DSL.name("pg_index_indexrelid_index"), new TableField[] { PgIndex.PG_INDEX.INDEXRELID }, true); + public static final UniqueKey PG_INHERITS_RELID_SEQNO_INDEX = Internal.createUniqueKey(PgInherits.PG_INHERITS, DSL.name("pg_inherits_relid_seqno_index"), new TableField[] { PgInherits.PG_INHERITS.INHRELID, PgInherits.PG_INHERITS.INHSEQNO }, true); + public static final UniqueKey PG_INIT_PRIVS_O_C_O_INDEX = Internal.createUniqueKey(PgInitPrivs.PG_INIT_PRIVS, DSL.name("pg_init_privs_o_c_o_index"), new TableField[] { PgInitPrivs.PG_INIT_PRIVS.OBJOID, PgInitPrivs.PG_INIT_PRIVS.CLASSOID, PgInitPrivs.PG_INIT_PRIVS.OBJSUBID }, true); + public static final UniqueKey PG_LANGUAGE_NAME_INDEX = Internal.createUniqueKey(PgLanguage.PG_LANGUAGE, DSL.name("pg_language_name_index"), new TableField[] { PgLanguage.PG_LANGUAGE.LANNAME }, true); + public static final UniqueKey PG_LANGUAGE_OID_INDEX = Internal.createUniqueKey(PgLanguage.PG_LANGUAGE, DSL.name("pg_language_oid_index"), new TableField[] { PgLanguage.PG_LANGUAGE.OID }, true); + public static final UniqueKey PG_LARGEOBJECT_METADATA_OID_INDEX = Internal.createUniqueKey(PgLargeobjectMetadata.PG_LARGEOBJECT_METADATA, DSL.name("pg_largeobject_metadata_oid_index"), new TableField[] { PgLargeobjectMetadata.PG_LARGEOBJECT_METADATA.OID }, true); + public static final UniqueKey PG_NAMESPACE_NSPNAME_INDEX = Internal.createUniqueKey(PgNamespace.PG_NAMESPACE, DSL.name("pg_namespace_nspname_index"), new TableField[] { PgNamespace.PG_NAMESPACE.NSPNAME }, true); + public static final UniqueKey PG_NAMESPACE_OID_INDEX = Internal.createUniqueKey(PgNamespace.PG_NAMESPACE, DSL.name("pg_namespace_oid_index"), new TableField[] { PgNamespace.PG_NAMESPACE.OID }, true); + public static final UniqueKey PG_OPCLASS_AM_NAME_NSP_INDEX = Internal.createUniqueKey(PgOpclass.PG_OPCLASS, DSL.name("pg_opclass_am_name_nsp_index"), new TableField[] { PgOpclass.PG_OPCLASS.OPCMETHOD, PgOpclass.PG_OPCLASS.OPCNAME, PgOpclass.PG_OPCLASS.OPCNAMESPACE }, true); + public static final UniqueKey PG_OPCLASS_OID_INDEX = Internal.createUniqueKey(PgOpclass.PG_OPCLASS, DSL.name("pg_opclass_oid_index"), new TableField[] { PgOpclass.PG_OPCLASS.OID }, true); + public static final UniqueKey PG_OPERATOR_OID_INDEX = Internal.createUniqueKey(PgOperator.PG_OPERATOR, DSL.name("pg_operator_oid_index"), new TableField[] { PgOperator.PG_OPERATOR.OID }, true); + public static final UniqueKey PG_OPERATOR_OPRNAME_L_R_N_INDEX = Internal.createUniqueKey(PgOperator.PG_OPERATOR, DSL.name("pg_operator_oprname_l_r_n_index"), new TableField[] { PgOperator.PG_OPERATOR.OPRNAME, PgOperator.PG_OPERATOR.OPRLEFT, PgOperator.PG_OPERATOR.OPRRIGHT, PgOperator.PG_OPERATOR.OPRNAMESPACE }, true); + public static final UniqueKey PG_OPFAMILY_AM_NAME_NSP_INDEX = Internal.createUniqueKey(PgOpfamily.PG_OPFAMILY, DSL.name("pg_opfamily_am_name_nsp_index"), new TableField[] { PgOpfamily.PG_OPFAMILY.OPFMETHOD, PgOpfamily.PG_OPFAMILY.OPFNAME, PgOpfamily.PG_OPFAMILY.OPFNAMESPACE }, true); + public static final UniqueKey PG_OPFAMILY_OID_INDEX = Internal.createUniqueKey(PgOpfamily.PG_OPFAMILY, DSL.name("pg_opfamily_oid_index"), new TableField[] { PgOpfamily.PG_OPFAMILY.OID }, true); + public static final UniqueKey PG_PARAMETER_ACL_OID_INDEX = Internal.createUniqueKey(PgParameterAcl.PG_PARAMETER_ACL, DSL.name("pg_parameter_acl_oid_index"), new TableField[] { PgParameterAcl.PG_PARAMETER_ACL.OID }, true); + public static final UniqueKey PG_PARAMETER_ACL_PARNAME_INDEX = Internal.createUniqueKey(PgParameterAcl.PG_PARAMETER_ACL, DSL.name("pg_parameter_acl_parname_index"), new TableField[] { PgParameterAcl.PG_PARAMETER_ACL.PARNAME }, true); + public static final UniqueKey PG_PARTITIONED_TABLE_PARTRELID_INDEX = Internal.createUniqueKey(PgPartitionedTable.PG_PARTITIONED_TABLE, DSL.name("pg_partitioned_table_partrelid_index"), new TableField[] { PgPartitionedTable.PG_PARTITIONED_TABLE.PARTRELID }, true); + public static final UniqueKey PG_POLICY_OID_INDEX = Internal.createUniqueKey(PgPolicy.PG_POLICY, DSL.name("pg_policy_oid_index"), new TableField[] { PgPolicy.PG_POLICY.OID }, true); + public static final UniqueKey PG_POLICY_POLRELID_POLNAME_INDEX = Internal.createUniqueKey(PgPolicy.PG_POLICY, DSL.name("pg_policy_polrelid_polname_index"), new TableField[] { PgPolicy.PG_POLICY.POLRELID, PgPolicy.PG_POLICY.POLNAME }, true); + public static final UniqueKey PG_PROC_OID_INDEX = Internal.createUniqueKey(PgProc.PG_PROC, DSL.name("pg_proc_oid_index"), new TableField[] { PgProc.PG_PROC.OID }, true); + public static final UniqueKey PG_PROC_PRONAME_ARGS_NSP_INDEX = Internal.createUniqueKey(PgProc.PG_PROC, DSL.name("pg_proc_proname_args_nsp_index"), new TableField[] { PgProc.PG_PROC.PRONAME, PgProc.PG_PROC.PROARGTYPES, PgProc.PG_PROC.PRONAMESPACE }, true); + public static final UniqueKey PG_PUBLICATION_OID_INDEX = Internal.createUniqueKey(PgPublication.PG_PUBLICATION, DSL.name("pg_publication_oid_index"), new TableField[] { PgPublication.PG_PUBLICATION.OID }, true); + public static final UniqueKey PG_PUBLICATION_PUBNAME_INDEX = Internal.createUniqueKey(PgPublication.PG_PUBLICATION, DSL.name("pg_publication_pubname_index"), new TableField[] { PgPublication.PG_PUBLICATION.PUBNAME }, true); + public static final UniqueKey PG_PUBLICATION_NAMESPACE_OID_INDEX = Internal.createUniqueKey(PgPublicationNamespace.PG_PUBLICATION_NAMESPACE, DSL.name("pg_publication_namespace_oid_index"), new TableField[] { PgPublicationNamespace.PG_PUBLICATION_NAMESPACE.OID }, true); + public static final UniqueKey PG_PUBLICATION_NAMESPACE_PNNSPID_PNPUBID_INDEX = Internal.createUniqueKey(PgPublicationNamespace.PG_PUBLICATION_NAMESPACE, DSL.name("pg_publication_namespace_pnnspid_pnpubid_index"), new TableField[] { PgPublicationNamespace.PG_PUBLICATION_NAMESPACE.PNNSPID, PgPublicationNamespace.PG_PUBLICATION_NAMESPACE.PNPUBID }, true); + public static final UniqueKey PG_PUBLICATION_REL_OID_INDEX = Internal.createUniqueKey(PgPublicationRel.PG_PUBLICATION_REL, DSL.name("pg_publication_rel_oid_index"), new TableField[] { PgPublicationRel.PG_PUBLICATION_REL.OID }, true); + public static final UniqueKey PG_PUBLICATION_REL_PRRELID_PRPUBID_INDEX = Internal.createUniqueKey(PgPublicationRel.PG_PUBLICATION_REL, DSL.name("pg_publication_rel_prrelid_prpubid_index"), new TableField[] { PgPublicationRel.PG_PUBLICATION_REL.PRRELID, PgPublicationRel.PG_PUBLICATION_REL.PRPUBID }, true); + public static final UniqueKey PG_RANGE_RNGMULTITYPID_INDEX = Internal.createUniqueKey(PgRange.PG_RANGE, DSL.name("pg_range_rngmultitypid_index"), new TableField[] { PgRange.PG_RANGE.RNGMULTITYPID }, true); + public static final UniqueKey PG_RANGE_RNGTYPID_INDEX = Internal.createUniqueKey(PgRange.PG_RANGE, DSL.name("pg_range_rngtypid_index"), new TableField[] { PgRange.PG_RANGE.RNGTYPID }, true); + public static final UniqueKey PG_REPLICATION_ORIGIN_ROIIDENT_INDEX = Internal.createUniqueKey(PgReplicationOrigin.PG_REPLICATION_ORIGIN, DSL.name("pg_replication_origin_roiident_index"), new TableField[] { PgReplicationOrigin.PG_REPLICATION_ORIGIN.ROIDENT }, true); + public static final UniqueKey PG_REPLICATION_ORIGIN_RONAME_INDEX = Internal.createUniqueKey(PgReplicationOrigin.PG_REPLICATION_ORIGIN, DSL.name("pg_replication_origin_roname_index"), new TableField[] { PgReplicationOrigin.PG_REPLICATION_ORIGIN.RONAME }, true); + public static final UniqueKey PG_REWRITE_OID_INDEX = Internal.createUniqueKey(PgRewrite.PG_REWRITE, DSL.name("pg_rewrite_oid_index"), new TableField[] { PgRewrite.PG_REWRITE.OID }, true); + public static final UniqueKey PG_REWRITE_REL_RULENAME_INDEX = Internal.createUniqueKey(PgRewrite.PG_REWRITE, DSL.name("pg_rewrite_rel_rulename_index"), new TableField[] { PgRewrite.PG_REWRITE.EV_CLASS, PgRewrite.PG_REWRITE.RULENAME }, true); + public static final UniqueKey PG_SECLABEL_OBJECT_INDEX = Internal.createUniqueKey(PgSeclabel.PG_SECLABEL, DSL.name("pg_seclabel_object_index"), new TableField[] { PgSeclabel.PG_SECLABEL.OBJOID, PgSeclabel.PG_SECLABEL.CLASSOID, PgSeclabel.PG_SECLABEL.OBJSUBID, PgSeclabel.PG_SECLABEL.PROVIDER }, true); + public static final UniqueKey PG_SEQUENCE_SEQRELID_INDEX = Internal.createUniqueKey(PgSequence.PG_SEQUENCE, DSL.name("pg_sequence_seqrelid_index"), new TableField[] { PgSequence.PG_SEQUENCE.SEQRELID }, true); + public static final UniqueKey PG_SHDESCRIPTION_O_C_INDEX = Internal.createUniqueKey(PgShdescription.PG_SHDESCRIPTION, DSL.name("pg_shdescription_o_c_index"), new TableField[] { PgShdescription.PG_SHDESCRIPTION.OBJOID, PgShdescription.PG_SHDESCRIPTION.CLASSOID }, true); + public static final UniqueKey PG_SHSECLABEL_OBJECT_INDEX = Internal.createUniqueKey(PgShseclabel.PG_SHSECLABEL, DSL.name("pg_shseclabel_object_index"), new TableField[] { PgShseclabel.PG_SHSECLABEL.OBJOID, PgShseclabel.PG_SHSECLABEL.CLASSOID, PgShseclabel.PG_SHSECLABEL.PROVIDER }, true); + public static final UniqueKey PG_STATISTIC_EXT_NAME_INDEX = Internal.createUniqueKey(PgStatisticExt.PG_STATISTIC_EXT, DSL.name("pg_statistic_ext_name_index"), new TableField[] { PgStatisticExt.PG_STATISTIC_EXT.STXNAME, PgStatisticExt.PG_STATISTIC_EXT.STXNAMESPACE }, true); + public static final UniqueKey PG_STATISTIC_EXT_OID_INDEX = Internal.createUniqueKey(PgStatisticExt.PG_STATISTIC_EXT, DSL.name("pg_statistic_ext_oid_index"), new TableField[] { PgStatisticExt.PG_STATISTIC_EXT.OID }, true); + public static final UniqueKey PG_SUBSCRIPTION_OID_INDEX = Internal.createUniqueKey(PgSubscription.PG_SUBSCRIPTION, DSL.name("pg_subscription_oid_index"), new TableField[] { PgSubscription.PG_SUBSCRIPTION.OID }, true); + public static final UniqueKey PG_SUBSCRIPTION_SUBNAME_INDEX = Internal.createUniqueKey(PgSubscription.PG_SUBSCRIPTION, DSL.name("pg_subscription_subname_index"), new TableField[] { PgSubscription.PG_SUBSCRIPTION.SUBDBID, PgSubscription.PG_SUBSCRIPTION.SUBNAME }, true); + public static final UniqueKey PG_SUBSCRIPTION_REL_SRRELID_SRSUBID_INDEX = Internal.createUniqueKey(PgSubscriptionRel.PG_SUBSCRIPTION_REL, DSL.name("pg_subscription_rel_srrelid_srsubid_index"), new TableField[] { PgSubscriptionRel.PG_SUBSCRIPTION_REL.SRRELID, PgSubscriptionRel.PG_SUBSCRIPTION_REL.SRSUBID }, true); + public static final UniqueKey PG_TABLESPACE_OID_INDEX = Internal.createUniqueKey(PgTablespace.PG_TABLESPACE, DSL.name("pg_tablespace_oid_index"), new TableField[] { PgTablespace.PG_TABLESPACE.OID }, true); + public static final UniqueKey PG_TABLESPACE_SPCNAME_INDEX = Internal.createUniqueKey(PgTablespace.PG_TABLESPACE, DSL.name("pg_tablespace_spcname_index"), new TableField[] { PgTablespace.PG_TABLESPACE.SPCNAME }, true); + public static final UniqueKey PG_TRANSFORM_OID_INDEX = Internal.createUniqueKey(PgTransform.PG_TRANSFORM, DSL.name("pg_transform_oid_index"), new TableField[] { PgTransform.PG_TRANSFORM.OID }, true); + public static final UniqueKey PG_TRANSFORM_TYPE_LANG_INDEX = Internal.createUniqueKey(PgTransform.PG_TRANSFORM, DSL.name("pg_transform_type_lang_index"), new TableField[] { PgTransform.PG_TRANSFORM.TRFTYPE, PgTransform.PG_TRANSFORM.TRFLANG }, true); + public static final UniqueKey PG_TRIGGER_OID_INDEX = Internal.createUniqueKey(PgTrigger.PG_TRIGGER, DSL.name("pg_trigger_oid_index"), new TableField[] { PgTrigger.PG_TRIGGER.OID }, true); + public static final UniqueKey PG_TRIGGER_TGRELID_TGNAME_INDEX = Internal.createUniqueKey(PgTrigger.PG_TRIGGER, DSL.name("pg_trigger_tgrelid_tgname_index"), new TableField[] { PgTrigger.PG_TRIGGER.TGRELID, PgTrigger.PG_TRIGGER.TGNAME }, true); + public static final UniqueKey PG_TS_CONFIG_CFGNAME_INDEX = Internal.createUniqueKey(PgTsConfig.PG_TS_CONFIG, DSL.name("pg_ts_config_cfgname_index"), new TableField[] { PgTsConfig.PG_TS_CONFIG.CFGNAME, PgTsConfig.PG_TS_CONFIG.CFGNAMESPACE }, true); + public static final UniqueKey PG_TS_CONFIG_OID_INDEX = Internal.createUniqueKey(PgTsConfig.PG_TS_CONFIG, DSL.name("pg_ts_config_oid_index"), new TableField[] { PgTsConfig.PG_TS_CONFIG.OID }, true); + public static final UniqueKey PG_TS_CONFIG_MAP_INDEX = Internal.createUniqueKey(PgTsConfigMap.PG_TS_CONFIG_MAP, DSL.name("pg_ts_config_map_index"), new TableField[] { PgTsConfigMap.PG_TS_CONFIG_MAP.MAPCFG, PgTsConfigMap.PG_TS_CONFIG_MAP.MAPTOKENTYPE, PgTsConfigMap.PG_TS_CONFIG_MAP.MAPSEQNO }, true); + public static final UniqueKey PG_TS_DICT_DICTNAME_INDEX = Internal.createUniqueKey(PgTsDict.PG_TS_DICT, DSL.name("pg_ts_dict_dictname_index"), new TableField[] { PgTsDict.PG_TS_DICT.DICTNAME, PgTsDict.PG_TS_DICT.DICTNAMESPACE }, true); + public static final UniqueKey PG_TS_DICT_OID_INDEX = Internal.createUniqueKey(PgTsDict.PG_TS_DICT, DSL.name("pg_ts_dict_oid_index"), new TableField[] { PgTsDict.PG_TS_DICT.OID }, true); + public static final UniqueKey PG_TS_PARSER_OID_INDEX = Internal.createUniqueKey(PgTsParser.PG_TS_PARSER, DSL.name("pg_ts_parser_oid_index"), new TableField[] { PgTsParser.PG_TS_PARSER.OID }, true); + public static final UniqueKey PG_TS_PARSER_PRSNAME_INDEX = Internal.createUniqueKey(PgTsParser.PG_TS_PARSER, DSL.name("pg_ts_parser_prsname_index"), new TableField[] { PgTsParser.PG_TS_PARSER.PRSNAME, PgTsParser.PG_TS_PARSER.PRSNAMESPACE }, true); + public static final UniqueKey PG_TS_TEMPLATE_OID_INDEX = Internal.createUniqueKey(PgTsTemplate.PG_TS_TEMPLATE, DSL.name("pg_ts_template_oid_index"), new TableField[] { PgTsTemplate.PG_TS_TEMPLATE.OID }, true); + public static final UniqueKey PG_TS_TEMPLATE_TMPLNAME_INDEX = Internal.createUniqueKey(PgTsTemplate.PG_TS_TEMPLATE, DSL.name("pg_ts_template_tmplname_index"), new TableField[] { PgTsTemplate.PG_TS_TEMPLATE.TMPLNAME, PgTsTemplate.PG_TS_TEMPLATE.TMPLNAMESPACE }, true); + public static final UniqueKey PG_TYPE_OID_INDEX = Internal.createUniqueKey(PgType.PG_TYPE, DSL.name("pg_type_oid_index"), new TableField[] { PgType.PG_TYPE.OID }, true); + public static final UniqueKey PG_TYPE_TYPNAME_NSP_INDEX = Internal.createUniqueKey(PgType.PG_TYPE, DSL.name("pg_type_typname_nsp_index"), new TableField[] { PgType.PG_TYPE.TYPNAME, PgType.PG_TYPE.TYPNAMESPACE }, true); +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/PgCatalog.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/PgCatalog.java new file mode 100644 index 0000000..f7049b2 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/PgCatalog.java @@ -0,0 +1,3699 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.pg_catalog; + + +import ervu_secret.ervu_secret.db_beans.DefaultCatalog; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Aclexplode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSeries; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSubscripts; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElements; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElementsText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEach; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEachText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonObjectKeys; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonPopulateRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonToRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElements; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElementsText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEach; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEachText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbObjectKeys; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQuery; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQueryTz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPopulateRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbToRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAggregate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAm; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAmop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAmproc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAttrdef; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAttribute; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAuthMembers; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAvailableExtensionVersions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAvailableExtensions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCast; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgClass; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCollation; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgConstraint; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgConversion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCursor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCursors; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDatabase; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDbRoleSetting; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDefaultAcl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDepend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgDescription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEnum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTrigger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDdlCommands; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDroppedObjects; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtension; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtensionUpdatePaths; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgForeignDataWrapper; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgForeignServer; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgForeignTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetCatalogForeignKeys; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetKeywords; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetMultixactMembers; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetPublicationTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetReplicationSlots; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetWalResourceManagers; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGroup; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgIndex; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgInherits; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgInitPrivs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLanguage; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLargeobjectMetadata; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgListeningChannels; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLockStatus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLocks; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetBinaryChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekBinaryChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgMatviews; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgMcvListItems; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgNamespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOpclass; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOperator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOpfamily; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOptionsToTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgParameterAcl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionAncestors; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionTree; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionedTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPolicies; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPolicy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedStatement; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedStatements; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedXact; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedXacts; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgProc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublication; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublicationNamespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublicationRel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPublicationTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgReplicationOrigin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgReplicationSlots; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgRewrite; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgRoles; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgRules; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSeclabel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSeclabels; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSequence; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSequences; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSettings; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShdepend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShdescription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShowAllSettings; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShseclabel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSnapshotXip; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatActivity; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatAllIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatAllTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatArchiver; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatBgwriter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatDatabase; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatDatabaseConflicts; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetActivity; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetBackendIdset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetProgressInfo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetRecoveryPrefetch; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSlru; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSubscription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetWalSenders; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGssapi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatProgressAnalyze; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatProgressBasebackup; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatProgressCluster; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatProgressCopy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatProgressCreateIndex; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatProgressVacuum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatRecoveryPrefetch; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatReplication; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatReplicationSlots; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatSlru; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatSsl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatSubscription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatSubscriptionStats; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatSysIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatSysTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatUserFunctions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatUserIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatUserTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatWal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatWalReceiver; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatXactAllTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatXactSysTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatXactUserFunctions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatXactUserTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioAllIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioAllSequences; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioAllTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioSysIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioSysSequences; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioSysTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioUserIndexes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioUserSequences; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatioUserTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatisticExt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStats; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatsExt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatsExtExprs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSubscription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSubscriptionRel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespaceDatabases; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTimezoneAbbrevs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTimezoneNames; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTransform; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTrigger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsConfigMap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsDict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsParser; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTsTemplate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgUser; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgUserMappings; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgViews; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpMatches; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpSplitToTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.StringToTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsDebug; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsParse; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsStat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsTokenType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TxidSnapshotXip; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Unnest; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.AclexplodeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.GenerateSeriesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.GenerateSubscriptsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonArrayElementsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonArrayElementsTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonEachRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonEachTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonObjectKeysRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonPopulateRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonToRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbArrayElementsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbArrayElementsTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbEachRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbEachTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbObjectKeysRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbPathQueryRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbPathQueryTzRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbPopulateRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbToRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAvailableExtensionVersionsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgCursorRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgEventTriggerDdlCommandsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgEventTriggerDroppedObjectsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgExtensionUpdatePathsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetCatalogForeignKeysRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetKeywordsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetMultixactMembersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetPublicationTablesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetReplicationSlotsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetWalResourceManagersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgListeningChannelsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLockStatusRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotGetBinaryChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotGetChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotPeekBinaryChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotPeekChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgMcvListItemsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgOptionsToTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPartitionAncestorsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPartitionTreeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPreparedStatementRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPreparedXactRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgShowAllSettingsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgSnapshotXipRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetActivityRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetBackendIdsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetProgressInfoRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetRecoveryPrefetchRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetSlruRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetSubscriptionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetWalSendersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTablespaceDatabasesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTimezoneAbbrevsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.RegexpMatchesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.RegexpSplitToTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.StringToTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsDebugRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsParseRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsStatRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsTokenTypeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TxidSnapshotXipRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.UnnestRecord; + +import java.util.Arrays; +import java.util.List; + +import org.jooq.Catalog; +import org.jooq.Configuration; +import org.jooq.Field; +import org.jooq.JSON; +import org.jooq.JSONB; +import org.jooq.Result; +import org.jooq.Table; +import org.jooq.impl.SchemaImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class PgCatalog extends SchemaImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of pg_catalog + */ + public static final PgCatalog PG_CATALOG = new PgCatalog(); + + /** + * The table pg_catalog.aclexplode. + */ + public final Aclexplode ACLEXPLODE = Aclexplode.ACLEXPLODE; + + /** + * Call pg_catalog.aclexplode. + */ + public static Result ACLEXPLODE( + Configuration configuration + , String[] acl + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Aclexplode.ACLEXPLODE.call( + acl + )).fetch(); + } + + /** + * Get pg_catalog.aclexplode as a table. + */ + public static Aclexplode ACLEXPLODE( + String[] acl + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Aclexplode.ACLEXPLODE.call( + acl + ); + } + + /** + * Get pg_catalog.aclexplode as a table. + */ + public static Aclexplode ACLEXPLODE( + Field acl + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Aclexplode.ACLEXPLODE.call( + acl + ); + } + + /** + * The table pg_catalog.generate_series. + */ + public final GenerateSeries GENERATE_SERIES = GenerateSeries.GENERATE_SERIES; + + /** + * Call pg_catalog.generate_series. + */ + public static Result GENERATE_SERIES( + Configuration configuration + , Long __1 + , Long __2 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSeries.GENERATE_SERIES.call( + __1 + , __2 + )).fetch(); + } + + /** + * Get pg_catalog.generate_series as a table. + */ + public static GenerateSeries GENERATE_SERIES( + Long __1 + , Long __2 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSeries.GENERATE_SERIES.call( + __1, + __2 + ); + } + + /** + * Get pg_catalog.generate_series as a table. + */ + public static GenerateSeries GENERATE_SERIES( + Field __1 + , Field __2 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSeries.GENERATE_SERIES.call( + __1, + __2 + ); + } + + /** + * The table pg_catalog.generate_subscripts. + */ + public final GenerateSubscripts GENERATE_SUBSCRIPTS = GenerateSubscripts.GENERATE_SUBSCRIPTS; + + /** + * Call pg_catalog.generate_subscripts. + */ + public static Result GENERATE_SUBSCRIPTS( + Configuration configuration + , Object[] __1 + , Integer __2 + , Boolean __3 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSubscripts.GENERATE_SUBSCRIPTS.call( + __1 + , __2 + , __3 + )).fetch(); + } + + /** + * Get pg_catalog.generate_subscripts as a table. + */ + public static GenerateSubscripts GENERATE_SUBSCRIPTS( + Object[] __1 + , Integer __2 + , Boolean __3 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSubscripts.GENERATE_SUBSCRIPTS.call( + __1, + __2, + __3 + ); + } + + /** + * Get pg_catalog.generate_subscripts as a table. + */ + public static GenerateSubscripts GENERATE_SUBSCRIPTS( + Field __1 + , Field __2 + , Field __3 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSubscripts.GENERATE_SUBSCRIPTS.call( + __1, + __2, + __3 + ); + } + + /** + * The table pg_catalog.json_array_elements. + */ + public final JsonArrayElements JSON_ARRAY_ELEMENTS = JsonArrayElements.JSON_ARRAY_ELEMENTS; + + /** + * Call pg_catalog.json_array_elements. + */ + public static Result JSON_ARRAY_ELEMENTS( + Configuration configuration + , JSON fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElements.JSON_ARRAY_ELEMENTS.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.json_array_elements as a table. + */ + public static JsonArrayElements JSON_ARRAY_ELEMENTS( + JSON fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElements.JSON_ARRAY_ELEMENTS.call( + fromJson + ); + } + + /** + * Get pg_catalog.json_array_elements as a table. + */ + public static JsonArrayElements JSON_ARRAY_ELEMENTS( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElements.JSON_ARRAY_ELEMENTS.call( + fromJson + ); + } + + /** + * The table pg_catalog.json_array_elements_text. + */ + public final JsonArrayElementsText JSON_ARRAY_ELEMENTS_TEXT = JsonArrayElementsText.JSON_ARRAY_ELEMENTS_TEXT; + + /** + * Call pg_catalog.json_array_elements_text. + */ + public static Result JSON_ARRAY_ELEMENTS_TEXT( + Configuration configuration + , JSON fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElementsText.JSON_ARRAY_ELEMENTS_TEXT.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.json_array_elements_text as a table. + */ + public static JsonArrayElementsText JSON_ARRAY_ELEMENTS_TEXT( + JSON fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElementsText.JSON_ARRAY_ELEMENTS_TEXT.call( + fromJson + ); + } + + /** + * Get pg_catalog.json_array_elements_text as a table. + */ + public static JsonArrayElementsText JSON_ARRAY_ELEMENTS_TEXT( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElementsText.JSON_ARRAY_ELEMENTS_TEXT.call( + fromJson + ); + } + + /** + * The table pg_catalog.json_each. + */ + public final JsonEach JSON_EACH = JsonEach.JSON_EACH; + + /** + * Call pg_catalog.json_each. + */ + public static Result JSON_EACH( + Configuration configuration + , JSON fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEach.JSON_EACH.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.json_each as a table. + */ + public static JsonEach JSON_EACH( + JSON fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEach.JSON_EACH.call( + fromJson + ); + } + + /** + * Get pg_catalog.json_each as a table. + */ + public static JsonEach JSON_EACH( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEach.JSON_EACH.call( + fromJson + ); + } + + /** + * The table pg_catalog.json_each_text. + */ + public final JsonEachText JSON_EACH_TEXT = JsonEachText.JSON_EACH_TEXT; + + /** + * Call pg_catalog.json_each_text. + */ + public static Result JSON_EACH_TEXT( + Configuration configuration + , JSON fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEachText.JSON_EACH_TEXT.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.json_each_text as a table. + */ + public static JsonEachText JSON_EACH_TEXT( + JSON fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEachText.JSON_EACH_TEXT.call( + fromJson + ); + } + + /** + * Get pg_catalog.json_each_text as a table. + */ + public static JsonEachText JSON_EACH_TEXT( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEachText.JSON_EACH_TEXT.call( + fromJson + ); + } + + /** + * The table pg_catalog.json_object_keys. + */ + public final JsonObjectKeys JSON_OBJECT_KEYS = JsonObjectKeys.JSON_OBJECT_KEYS; + + /** + * Call pg_catalog.json_object_keys. + */ + public static Result JSON_OBJECT_KEYS( + Configuration configuration + , JSON __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonObjectKeys.JSON_OBJECT_KEYS.call( + __1 + )).fetch(); + } + + /** + * Get pg_catalog.json_object_keys as a table. + */ + public static JsonObjectKeys JSON_OBJECT_KEYS( + JSON __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonObjectKeys.JSON_OBJECT_KEYS.call( + __1 + ); + } + + /** + * Get pg_catalog.json_object_keys as a table. + */ + public static JsonObjectKeys JSON_OBJECT_KEYS( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonObjectKeys.JSON_OBJECT_KEYS.call( + __1 + ); + } + + /** + * The table pg_catalog.json_populate_recordset. + */ + public final JsonPopulateRecordset JSON_POPULATE_RECORDSET = JsonPopulateRecordset.JSON_POPULATE_RECORDSET; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result JSON_POPULATE_RECORDSET( + Configuration configuration + , Object base + , JSON fromJson + , Boolean useJsonAsText + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonPopulateRecordset.JSON_POPULATE_RECORDSET.call( + base + , fromJson + , useJsonAsText + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonPopulateRecordset JSON_POPULATE_RECORDSET( + Object base + , JSON fromJson + , Boolean useJsonAsText + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonPopulateRecordset.JSON_POPULATE_RECORDSET.call( + base, + fromJson, + useJsonAsText + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonPopulateRecordset JSON_POPULATE_RECORDSET( + Field base + , Field fromJson + , Field useJsonAsText + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonPopulateRecordset.JSON_POPULATE_RECORDSET.call( + base, + fromJson, + useJsonAsText + ); + } + + /** + * The table pg_catalog.json_to_recordset. + */ + public final JsonToRecordset JSON_TO_RECORDSET = JsonToRecordset.JSON_TO_RECORDSET; + + /** + * Call pg_catalog.json_to_recordset. + */ + public static Result JSON_TO_RECORDSET( + Configuration configuration + , JSON __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonToRecordset.JSON_TO_RECORDSET.call( + __1 + )).fetch(); + } + + /** + * Get pg_catalog.json_to_recordset as a table. + */ + public static JsonToRecordset JSON_TO_RECORDSET( + JSON __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonToRecordset.JSON_TO_RECORDSET.call( + __1 + ); + } + + /** + * Get pg_catalog.json_to_recordset as a table. + */ + public static JsonToRecordset JSON_TO_RECORDSET( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonToRecordset.JSON_TO_RECORDSET.call( + __1 + ); + } + + /** + * The table pg_catalog.jsonb_array_elements. + */ + public final JsonbArrayElements JSONB_ARRAY_ELEMENTS = JsonbArrayElements.JSONB_ARRAY_ELEMENTS; + + /** + * Call pg_catalog.jsonb_array_elements. + */ + public static Result JSONB_ARRAY_ELEMENTS( + Configuration configuration + , JSONB fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElements.JSONB_ARRAY_ELEMENTS.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.jsonb_array_elements as a table. + */ + public static JsonbArrayElements JSONB_ARRAY_ELEMENTS( + JSONB fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElements.JSONB_ARRAY_ELEMENTS.call( + fromJson + ); + } + + /** + * Get pg_catalog.jsonb_array_elements as a table. + */ + public static JsonbArrayElements JSONB_ARRAY_ELEMENTS( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElements.JSONB_ARRAY_ELEMENTS.call( + fromJson + ); + } + + /** + * The table pg_catalog.jsonb_array_elements_text. + */ + public final JsonbArrayElementsText JSONB_ARRAY_ELEMENTS_TEXT = JsonbArrayElementsText.JSONB_ARRAY_ELEMENTS_TEXT; + + /** + * Call pg_catalog.jsonb_array_elements_text. + */ + public static Result JSONB_ARRAY_ELEMENTS_TEXT( + Configuration configuration + , JSONB fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElementsText.JSONB_ARRAY_ELEMENTS_TEXT.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.jsonb_array_elements_text as a table. + */ + public static JsonbArrayElementsText JSONB_ARRAY_ELEMENTS_TEXT( + JSONB fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElementsText.JSONB_ARRAY_ELEMENTS_TEXT.call( + fromJson + ); + } + + /** + * Get pg_catalog.jsonb_array_elements_text as a table. + */ + public static JsonbArrayElementsText JSONB_ARRAY_ELEMENTS_TEXT( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElementsText.JSONB_ARRAY_ELEMENTS_TEXT.call( + fromJson + ); + } + + /** + * The table pg_catalog.jsonb_each. + */ + public final JsonbEach JSONB_EACH = JsonbEach.JSONB_EACH; + + /** + * Call pg_catalog.jsonb_each. + */ + public static Result JSONB_EACH( + Configuration configuration + , JSONB fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEach.JSONB_EACH.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.jsonb_each as a table. + */ + public static JsonbEach JSONB_EACH( + JSONB fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEach.JSONB_EACH.call( + fromJson + ); + } + + /** + * Get pg_catalog.jsonb_each as a table. + */ + public static JsonbEach JSONB_EACH( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEach.JSONB_EACH.call( + fromJson + ); + } + + /** + * The table pg_catalog.jsonb_each_text. + */ + public final JsonbEachText JSONB_EACH_TEXT = JsonbEachText.JSONB_EACH_TEXT; + + /** + * Call pg_catalog.jsonb_each_text. + */ + public static Result JSONB_EACH_TEXT( + Configuration configuration + , JSONB fromJson + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEachText.JSONB_EACH_TEXT.call( + fromJson + )).fetch(); + } + + /** + * Get pg_catalog.jsonb_each_text as a table. + */ + public static JsonbEachText JSONB_EACH_TEXT( + JSONB fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEachText.JSONB_EACH_TEXT.call( + fromJson + ); + } + + /** + * Get pg_catalog.jsonb_each_text as a table. + */ + public static JsonbEachText JSONB_EACH_TEXT( + Field fromJson + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEachText.JSONB_EACH_TEXT.call( + fromJson + ); + } + + /** + * The table pg_catalog.jsonb_object_keys. + */ + public final JsonbObjectKeys JSONB_OBJECT_KEYS = JsonbObjectKeys.JSONB_OBJECT_KEYS; + + /** + * Call pg_catalog.jsonb_object_keys. + */ + public static Result JSONB_OBJECT_KEYS( + Configuration configuration + , JSONB __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbObjectKeys.JSONB_OBJECT_KEYS.call( + __1 + )).fetch(); + } + + /** + * Get pg_catalog.jsonb_object_keys as a table. + */ + public static JsonbObjectKeys JSONB_OBJECT_KEYS( + JSONB __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbObjectKeys.JSONB_OBJECT_KEYS.call( + __1 + ); + } + + /** + * Get pg_catalog.jsonb_object_keys as a table. + */ + public static JsonbObjectKeys JSONB_OBJECT_KEYS( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbObjectKeys.JSONB_OBJECT_KEYS.call( + __1 + ); + } + + /** + * The table pg_catalog.jsonb_path_query. + */ + public final JsonbPathQuery JSONB_PATH_QUERY = JsonbPathQuery.JSONB_PATH_QUERY; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result JSONB_PATH_QUERY( + Configuration configuration + , JSONB target + , Object path + , JSONB vars + , Boolean silent + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQuery.JSONB_PATH_QUERY.call( + target + , path + , vars + , silent + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonbPathQuery JSONB_PATH_QUERY( + JSONB target + , Object path + , JSONB vars + , Boolean silent + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQuery.JSONB_PATH_QUERY.call( + target, + path, + vars, + silent + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonbPathQuery JSONB_PATH_QUERY( + Field target + , Field path + , Field vars + , Field silent + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQuery.JSONB_PATH_QUERY.call( + target, + path, + vars, + silent + ); + } + + /** + * The table pg_catalog.jsonb_path_query_tz. + */ + public final JsonbPathQueryTz JSONB_PATH_QUERY_TZ = JsonbPathQueryTz.JSONB_PATH_QUERY_TZ; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result JSONB_PATH_QUERY_TZ( + Configuration configuration + , JSONB target + , Object path + , JSONB vars + , Boolean silent + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQueryTz.JSONB_PATH_QUERY_TZ.call( + target + , path + , vars + , silent + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonbPathQueryTz JSONB_PATH_QUERY_TZ( + JSONB target + , Object path + , JSONB vars + , Boolean silent + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQueryTz.JSONB_PATH_QUERY_TZ.call( + target, + path, + vars, + silent + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonbPathQueryTz JSONB_PATH_QUERY_TZ( + Field target + , Field path + , Field vars + , Field silent + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQueryTz.JSONB_PATH_QUERY_TZ.call( + target, + path, + vars, + silent + ); + } + + /** + * The table pg_catalog.jsonb_populate_recordset. + */ + public final JsonbPopulateRecordset JSONB_POPULATE_RECORDSET = JsonbPopulateRecordset.JSONB_POPULATE_RECORDSET; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result JSONB_POPULATE_RECORDSET( + Configuration configuration + , Object __1 + , JSONB __2 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPopulateRecordset.JSONB_POPULATE_RECORDSET.call( + __1 + , __2 + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonbPopulateRecordset JSONB_POPULATE_RECORDSET( + Object __1 + , JSONB __2 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPopulateRecordset.JSONB_POPULATE_RECORDSET.call( + __1, + __2 + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static JsonbPopulateRecordset JSONB_POPULATE_RECORDSET( + Field __1 + , Field __2 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPopulateRecordset.JSONB_POPULATE_RECORDSET.call( + __1, + __2 + ); + } + + /** + * The table pg_catalog.jsonb_to_recordset. + */ + public final JsonbToRecordset JSONB_TO_RECORDSET = JsonbToRecordset.JSONB_TO_RECORDSET; + + /** + * Call pg_catalog.jsonb_to_recordset. + */ + public static Result JSONB_TO_RECORDSET( + Configuration configuration + , JSONB __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbToRecordset.JSONB_TO_RECORDSET.call( + __1 + )).fetch(); + } + + /** + * Get pg_catalog.jsonb_to_recordset as a table. + */ + public static JsonbToRecordset JSONB_TO_RECORDSET( + JSONB __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbToRecordset.JSONB_TO_RECORDSET.call( + __1 + ); + } + + /** + * Get pg_catalog.jsonb_to_recordset as a table. + */ + public static JsonbToRecordset JSONB_TO_RECORDSET( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbToRecordset.JSONB_TO_RECORDSET.call( + __1 + ); + } + + /** + * The table pg_catalog.pg_aggregate. + */ + public final PgAggregate PG_AGGREGATE = PgAggregate.PG_AGGREGATE; + + /** + * The table pg_catalog.pg_am. + */ + public final PgAm PG_AM = PgAm.PG_AM; + + /** + * The table pg_catalog.pg_amop. + */ + public final PgAmop PG_AMOP = PgAmop.PG_AMOP; + + /** + * The table pg_catalog.pg_amproc. + */ + public final PgAmproc PG_AMPROC = PgAmproc.PG_AMPROC; + + /** + * The table pg_catalog.pg_attrdef. + */ + public final PgAttrdef PG_ATTRDEF = PgAttrdef.PG_ATTRDEF; + + /** + * The table pg_catalog.pg_attribute. + */ + public final PgAttribute PG_ATTRIBUTE = PgAttribute.PG_ATTRIBUTE; + + /** + * The table pg_catalog.pg_auth_members. + */ + public final PgAuthMembers PG_AUTH_MEMBERS = PgAuthMembers.PG_AUTH_MEMBERS; + + /** + * The table pg_catalog.pg_available_extension_versions. + */ + public final PgAvailableExtensionVersions PG_AVAILABLE_EXTENSION_VERSIONS = PgAvailableExtensionVersions.PG_AVAILABLE_EXTENSION_VERSIONS; + + /** + * Call pg_catalog.pg_available_extension_versions. + */ + public static Result PG_AVAILABLE_EXTENSION_VERSIONS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAvailableExtensionVersions.PG_AVAILABLE_EXTENSION_VERSIONS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_available_extension_versions as a table. + */ + public static PgAvailableExtensionVersions PG_AVAILABLE_EXTENSION_VERSIONS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAvailableExtensionVersions.PG_AVAILABLE_EXTENSION_VERSIONS.call( + ); + } + + /** + * The table pg_catalog.pg_available_extensions. + */ + public final PgAvailableExtensions PG_AVAILABLE_EXTENSIONS = PgAvailableExtensions.PG_AVAILABLE_EXTENSIONS; + + /** + * The table pg_catalog.pg_cast. + */ + public final PgCast PG_CAST = PgCast.PG_CAST; + + /** + * The table pg_catalog.pg_class. + */ + public final PgClass PG_CLASS = PgClass.PG_CLASS; + + /** + * The table pg_catalog.pg_collation. + */ + public final PgCollation PG_COLLATION = PgCollation.PG_COLLATION; + + /** + * The table pg_catalog.pg_constraint. + */ + public final PgConstraint PG_CONSTRAINT = PgConstraint.PG_CONSTRAINT; + + /** + * The table pg_catalog.pg_conversion. + */ + public final PgConversion PG_CONVERSION = PgConversion.PG_CONVERSION; + + /** + * The table pg_catalog.pg_cursor. + */ + public final PgCursor PG_CURSOR = PgCursor.PG_CURSOR; + + /** + * Call pg_catalog.pg_cursor. + */ + public static Result PG_CURSOR( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCursor.PG_CURSOR.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_cursor as a table. + */ + public static PgCursor PG_CURSOR() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCursor.PG_CURSOR.call( + ); + } + + /** + * The table pg_catalog.pg_cursors. + */ + public final PgCursors PG_CURSORS = PgCursors.PG_CURSORS; + + /** + * The table pg_catalog.pg_database. + */ + public final PgDatabase PG_DATABASE = PgDatabase.PG_DATABASE; + + /** + * The table pg_catalog.pg_db_role_setting. + */ + public final PgDbRoleSetting PG_DB_ROLE_SETTING = PgDbRoleSetting.PG_DB_ROLE_SETTING; + + /** + * The table pg_catalog.pg_default_acl. + */ + public final PgDefaultAcl PG_DEFAULT_ACL = PgDefaultAcl.PG_DEFAULT_ACL; + + /** + * The table pg_catalog.pg_depend. + */ + public final PgDepend PG_DEPEND = PgDepend.PG_DEPEND; + + /** + * The table pg_catalog.pg_description. + */ + public final PgDescription PG_DESCRIPTION = PgDescription.PG_DESCRIPTION; + + /** + * The table pg_catalog.pg_enum. + */ + public final PgEnum PG_ENUM = PgEnum.PG_ENUM; + + /** + * The table pg_catalog.pg_event_trigger. + */ + public final PgEventTrigger PG_EVENT_TRIGGER = PgEventTrigger.PG_EVENT_TRIGGER; + + /** + * The table pg_catalog.pg_event_trigger_ddl_commands. + */ + public final PgEventTriggerDdlCommands PG_EVENT_TRIGGER_DDL_COMMANDS = PgEventTriggerDdlCommands.PG_EVENT_TRIGGER_DDL_COMMANDS; + + /** + * Call pg_catalog.pg_event_trigger_ddl_commands. + */ + public static Result PG_EVENT_TRIGGER_DDL_COMMANDS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDdlCommands.PG_EVENT_TRIGGER_DDL_COMMANDS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_event_trigger_ddl_commands as a table. + */ + public static PgEventTriggerDdlCommands PG_EVENT_TRIGGER_DDL_COMMANDS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDdlCommands.PG_EVENT_TRIGGER_DDL_COMMANDS.call( + ); + } + + /** + * The table pg_catalog.pg_event_trigger_dropped_objects. + */ + public final PgEventTriggerDroppedObjects PG_EVENT_TRIGGER_DROPPED_OBJECTS = PgEventTriggerDroppedObjects.PG_EVENT_TRIGGER_DROPPED_OBJECTS; + + /** + * Call pg_catalog.pg_event_trigger_dropped_objects. + */ + public static Result PG_EVENT_TRIGGER_DROPPED_OBJECTS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDroppedObjects.PG_EVENT_TRIGGER_DROPPED_OBJECTS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_event_trigger_dropped_objects as a table. + */ + public static PgEventTriggerDroppedObjects PG_EVENT_TRIGGER_DROPPED_OBJECTS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDroppedObjects.PG_EVENT_TRIGGER_DROPPED_OBJECTS.call( + ); + } + + /** + * The table pg_catalog.pg_extension. + */ + public final PgExtension PG_EXTENSION = PgExtension.PG_EXTENSION; + + /** + * The table pg_catalog.pg_extension_update_paths. + */ + public final PgExtensionUpdatePaths PG_EXTENSION_UPDATE_PATHS = PgExtensionUpdatePaths.PG_EXTENSION_UPDATE_PATHS; + + /** + * Call pg_catalog.pg_extension_update_paths. + */ + public static Result PG_EXTENSION_UPDATE_PATHS( + Configuration configuration + , String name + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtensionUpdatePaths.PG_EXTENSION_UPDATE_PATHS.call( + name + )).fetch(); + } + + /** + * Get pg_catalog.pg_extension_update_paths as a table. + */ + public static PgExtensionUpdatePaths PG_EXTENSION_UPDATE_PATHS( + String name + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtensionUpdatePaths.PG_EXTENSION_UPDATE_PATHS.call( + name + ); + } + + /** + * Get pg_catalog.pg_extension_update_paths as a table. + */ + public static PgExtensionUpdatePaths PG_EXTENSION_UPDATE_PATHS( + Field name + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtensionUpdatePaths.PG_EXTENSION_UPDATE_PATHS.call( + name + ); + } + + /** + * The table pg_catalog.pg_foreign_data_wrapper. + */ + public final PgForeignDataWrapper PG_FOREIGN_DATA_WRAPPER = PgForeignDataWrapper.PG_FOREIGN_DATA_WRAPPER; + + /** + * The table pg_catalog.pg_foreign_server. + */ + public final PgForeignServer PG_FOREIGN_SERVER = PgForeignServer.PG_FOREIGN_SERVER; + + /** + * The table pg_catalog.pg_foreign_table. + */ + public final PgForeignTable PG_FOREIGN_TABLE = PgForeignTable.PG_FOREIGN_TABLE; + + /** + * The table pg_catalog.pg_get_catalog_foreign_keys. + */ + public final PgGetCatalogForeignKeys PG_GET_CATALOG_FOREIGN_KEYS = PgGetCatalogForeignKeys.PG_GET_CATALOG_FOREIGN_KEYS; + + /** + * Call pg_catalog.pg_get_catalog_foreign_keys. + */ + public static Result PG_GET_CATALOG_FOREIGN_KEYS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetCatalogForeignKeys.PG_GET_CATALOG_FOREIGN_KEYS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_get_catalog_foreign_keys as a table. + */ + public static PgGetCatalogForeignKeys PG_GET_CATALOG_FOREIGN_KEYS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetCatalogForeignKeys.PG_GET_CATALOG_FOREIGN_KEYS.call( + ); + } + + /** + * The table pg_catalog.pg_get_keywords. + */ + public final PgGetKeywords PG_GET_KEYWORDS = PgGetKeywords.PG_GET_KEYWORDS; + + /** + * Call pg_catalog.pg_get_keywords. + */ + public static Result PG_GET_KEYWORDS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetKeywords.PG_GET_KEYWORDS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_get_keywords as a table. + */ + public static PgGetKeywords PG_GET_KEYWORDS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetKeywords.PG_GET_KEYWORDS.call( + ); + } + + /** + * The table pg_catalog.pg_get_multixact_members. + */ + public final PgGetMultixactMembers PG_GET_MULTIXACT_MEMBERS = PgGetMultixactMembers.PG_GET_MULTIXACT_MEMBERS; + + /** + * Call pg_catalog.pg_get_multixact_members. + */ + public static Result PG_GET_MULTIXACT_MEMBERS( + Configuration configuration + , Long multixid + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetMultixactMembers.PG_GET_MULTIXACT_MEMBERS.call( + multixid + )).fetch(); + } + + /** + * Get pg_catalog.pg_get_multixact_members as a table. + */ + public static PgGetMultixactMembers PG_GET_MULTIXACT_MEMBERS( + Long multixid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetMultixactMembers.PG_GET_MULTIXACT_MEMBERS.call( + multixid + ); + } + + /** + * Get pg_catalog.pg_get_multixact_members as a table. + */ + public static PgGetMultixactMembers PG_GET_MULTIXACT_MEMBERS( + Field multixid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetMultixactMembers.PG_GET_MULTIXACT_MEMBERS.call( + multixid + ); + } + + /** + * The table pg_catalog.pg_get_publication_tables. + */ + public final PgGetPublicationTables PG_GET_PUBLICATION_TABLES = PgGetPublicationTables.PG_GET_PUBLICATION_TABLES; + + /** + * Call pg_catalog.pg_get_publication_tables. + */ + public static Result PG_GET_PUBLICATION_TABLES( + Configuration configuration + , String pubname + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetPublicationTables.PG_GET_PUBLICATION_TABLES.call( + pubname + )).fetch(); + } + + /** + * Get pg_catalog.pg_get_publication_tables as a table. + */ + public static PgGetPublicationTables PG_GET_PUBLICATION_TABLES( + String pubname + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetPublicationTables.PG_GET_PUBLICATION_TABLES.call( + pubname + ); + } + + /** + * Get pg_catalog.pg_get_publication_tables as a table. + */ + public static PgGetPublicationTables PG_GET_PUBLICATION_TABLES( + Field pubname + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetPublicationTables.PG_GET_PUBLICATION_TABLES.call( + pubname + ); + } + + /** + * The table pg_catalog.pg_get_replication_slots. + */ + public final PgGetReplicationSlots PG_GET_REPLICATION_SLOTS = PgGetReplicationSlots.PG_GET_REPLICATION_SLOTS; + + /** + * Call pg_catalog.pg_get_replication_slots. + */ + public static Result PG_GET_REPLICATION_SLOTS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetReplicationSlots.PG_GET_REPLICATION_SLOTS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_get_replication_slots as a table. + */ + public static PgGetReplicationSlots PG_GET_REPLICATION_SLOTS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetReplicationSlots.PG_GET_REPLICATION_SLOTS.call( + ); + } + + /** + * The table pg_catalog.pg_get_wal_resource_managers. + */ + public final PgGetWalResourceManagers PG_GET_WAL_RESOURCE_MANAGERS = PgGetWalResourceManagers.PG_GET_WAL_RESOURCE_MANAGERS; + + /** + * Call pg_catalog.pg_get_wal_resource_managers. + */ + public static Result PG_GET_WAL_RESOURCE_MANAGERS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetWalResourceManagers.PG_GET_WAL_RESOURCE_MANAGERS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_get_wal_resource_managers as a table. + */ + public static PgGetWalResourceManagers PG_GET_WAL_RESOURCE_MANAGERS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetWalResourceManagers.PG_GET_WAL_RESOURCE_MANAGERS.call( + ); + } + + /** + * The table pg_catalog.pg_group. + */ + public final PgGroup PG_GROUP = PgGroup.PG_GROUP; + + /** + * The table pg_catalog.pg_index. + */ + public final PgIndex PG_INDEX = PgIndex.PG_INDEX; + + /** + * The table pg_catalog.pg_indexes. + */ + public final PgIndexes PG_INDEXES = PgIndexes.PG_INDEXES; + + /** + * The table pg_catalog.pg_inherits. + */ + public final PgInherits PG_INHERITS = PgInherits.PG_INHERITS; + + /** + * The table pg_catalog.pg_init_privs. + */ + public final PgInitPrivs PG_INIT_PRIVS = PgInitPrivs.PG_INIT_PRIVS; + + /** + * The table pg_catalog.pg_language. + */ + public final PgLanguage PG_LANGUAGE = PgLanguage.PG_LANGUAGE; + + /** + * The table pg_catalog.pg_largeobject_metadata. + */ + public final PgLargeobjectMetadata PG_LARGEOBJECT_METADATA = PgLargeobjectMetadata.PG_LARGEOBJECT_METADATA; + + /** + * The table pg_catalog.pg_listening_channels. + */ + public final PgListeningChannels PG_LISTENING_CHANNELS = PgListeningChannels.PG_LISTENING_CHANNELS; + + /** + * Call pg_catalog.pg_listening_channels. + */ + public static Result PG_LISTENING_CHANNELS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgListeningChannels.PG_LISTENING_CHANNELS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_listening_channels as a table. + */ + public static PgListeningChannels PG_LISTENING_CHANNELS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgListeningChannels.PG_LISTENING_CHANNELS.call( + ); + } + + /** + * The table pg_catalog.pg_lock_status. + */ + public final PgLockStatus PG_LOCK_STATUS = PgLockStatus.PG_LOCK_STATUS; + + /** + * Call pg_catalog.pg_lock_status. + */ + public static Result PG_LOCK_STATUS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLockStatus.PG_LOCK_STATUS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_lock_status as a table. + */ + public static PgLockStatus PG_LOCK_STATUS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLockStatus.PG_LOCK_STATUS.call( + ); + } + + /** + * The table pg_catalog.pg_locks. + */ + public final PgLocks PG_LOCKS = PgLocks.PG_LOCKS; + + /** + * The table pg_catalog.pg_logical_slot_get_binary_changes. + */ + public final PgLogicalSlotGetBinaryChanges PG_LOGICAL_SLOT_GET_BINARY_CHANGES = PgLogicalSlotGetBinaryChanges.PG_LOGICAL_SLOT_GET_BINARY_CHANGES; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_LOGICAL_SLOT_GET_BINARY_CHANGES( + Configuration configuration + , String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetBinaryChanges.PG_LOGICAL_SLOT_GET_BINARY_CHANGES.call( + slotName + , uptoLsn + , uptoNchanges + , options + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotGetBinaryChanges PG_LOGICAL_SLOT_GET_BINARY_CHANGES( + String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetBinaryChanges.PG_LOGICAL_SLOT_GET_BINARY_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotGetBinaryChanges PG_LOGICAL_SLOT_GET_BINARY_CHANGES( + Field slotName + , Field uptoLsn + , Field uptoNchanges + , Field options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetBinaryChanges.PG_LOGICAL_SLOT_GET_BINARY_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * The table pg_catalog.pg_logical_slot_get_changes. + */ + public final PgLogicalSlotGetChanges PG_LOGICAL_SLOT_GET_CHANGES = PgLogicalSlotGetChanges.PG_LOGICAL_SLOT_GET_CHANGES; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_LOGICAL_SLOT_GET_CHANGES( + Configuration configuration + , String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetChanges.PG_LOGICAL_SLOT_GET_CHANGES.call( + slotName + , uptoLsn + , uptoNchanges + , options + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotGetChanges PG_LOGICAL_SLOT_GET_CHANGES( + String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetChanges.PG_LOGICAL_SLOT_GET_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotGetChanges PG_LOGICAL_SLOT_GET_CHANGES( + Field slotName + , Field uptoLsn + , Field uptoNchanges + , Field options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetChanges.PG_LOGICAL_SLOT_GET_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * The table pg_catalog.pg_logical_slot_peek_binary_changes. + */ + public final PgLogicalSlotPeekBinaryChanges PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES = PgLogicalSlotPeekBinaryChanges.PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES( + Configuration configuration + , String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekBinaryChanges.PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES.call( + slotName + , uptoLsn + , uptoNchanges + , options + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotPeekBinaryChanges PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES( + String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekBinaryChanges.PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotPeekBinaryChanges PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES( + Field slotName + , Field uptoLsn + , Field uptoNchanges + , Field options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekBinaryChanges.PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * The table pg_catalog.pg_logical_slot_peek_changes. + */ + public final PgLogicalSlotPeekChanges PG_LOGICAL_SLOT_PEEK_CHANGES = PgLogicalSlotPeekChanges.PG_LOGICAL_SLOT_PEEK_CHANGES; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_LOGICAL_SLOT_PEEK_CHANGES( + Configuration configuration + , String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekChanges.PG_LOGICAL_SLOT_PEEK_CHANGES.call( + slotName + , uptoLsn + , uptoNchanges + , options + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotPeekChanges PG_LOGICAL_SLOT_PEEK_CHANGES( + String slotName + , Object uptoLsn + , Integer uptoNchanges + , String[] options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekChanges.PG_LOGICAL_SLOT_PEEK_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgLogicalSlotPeekChanges PG_LOGICAL_SLOT_PEEK_CHANGES( + Field slotName + , Field uptoLsn + , Field uptoNchanges + , Field options + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekChanges.PG_LOGICAL_SLOT_PEEK_CHANGES.call( + slotName, + uptoLsn, + uptoNchanges, + options + ); + } + + /** + * The table pg_catalog.pg_matviews. + */ + public final PgMatviews PG_MATVIEWS = PgMatviews.PG_MATVIEWS; + + /** + * The table pg_catalog.pg_mcv_list_items. + */ + public final PgMcvListItems PG_MCV_LIST_ITEMS = PgMcvListItems.PG_MCV_LIST_ITEMS; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_MCV_LIST_ITEMS( + Configuration configuration + , Object mcvList + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgMcvListItems.PG_MCV_LIST_ITEMS.call( + mcvList + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgMcvListItems PG_MCV_LIST_ITEMS( + Object mcvList + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgMcvListItems.PG_MCV_LIST_ITEMS.call( + mcvList + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgMcvListItems PG_MCV_LIST_ITEMS( + Field mcvList + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgMcvListItems.PG_MCV_LIST_ITEMS.call( + mcvList + ); + } + + /** + * The table pg_catalog.pg_namespace. + */ + public final PgNamespace PG_NAMESPACE = PgNamespace.PG_NAMESPACE; + + /** + * The table pg_catalog.pg_opclass. + */ + public final PgOpclass PG_OPCLASS = PgOpclass.PG_OPCLASS; + + /** + * The table pg_catalog.pg_operator. + */ + public final PgOperator PG_OPERATOR = PgOperator.PG_OPERATOR; + + /** + * The table pg_catalog.pg_opfamily. + */ + public final PgOpfamily PG_OPFAMILY = PgOpfamily.PG_OPFAMILY; + + /** + * The table pg_catalog.pg_options_to_table. + */ + public final PgOptionsToTable PG_OPTIONS_TO_TABLE = PgOptionsToTable.PG_OPTIONS_TO_TABLE; + + /** + * Call pg_catalog.pg_options_to_table. + */ + public static Result PG_OPTIONS_TO_TABLE( + Configuration configuration + , String[] optionsArray + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOptionsToTable.PG_OPTIONS_TO_TABLE.call( + optionsArray + )).fetch(); + } + + /** + * Get pg_catalog.pg_options_to_table as a table. + */ + public static PgOptionsToTable PG_OPTIONS_TO_TABLE( + String[] optionsArray + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOptionsToTable.PG_OPTIONS_TO_TABLE.call( + optionsArray + ); + } + + /** + * Get pg_catalog.pg_options_to_table as a table. + */ + public static PgOptionsToTable PG_OPTIONS_TO_TABLE( + Field optionsArray + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOptionsToTable.PG_OPTIONS_TO_TABLE.call( + optionsArray + ); + } + + /** + * The table pg_catalog.pg_parameter_acl. + */ + public final PgParameterAcl PG_PARAMETER_ACL = PgParameterAcl.PG_PARAMETER_ACL; + + /** + * The table pg_catalog.pg_partition_ancestors. + */ + public final PgPartitionAncestors PG_PARTITION_ANCESTORS = PgPartitionAncestors.PG_PARTITION_ANCESTORS; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_PARTITION_ANCESTORS( + Configuration configuration + , Object partitionid + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionAncestors.PG_PARTITION_ANCESTORS.call( + partitionid + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgPartitionAncestors PG_PARTITION_ANCESTORS( + Object partitionid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionAncestors.PG_PARTITION_ANCESTORS.call( + partitionid + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgPartitionAncestors PG_PARTITION_ANCESTORS( + Field partitionid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionAncestors.PG_PARTITION_ANCESTORS.call( + partitionid + ); + } + + /** + * The table pg_catalog.pg_partition_tree. + */ + public final PgPartitionTree PG_PARTITION_TREE = PgPartitionTree.PG_PARTITION_TREE; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_PARTITION_TREE( + Configuration configuration + , Object rootrelid + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionTree.PG_PARTITION_TREE.call( + rootrelid + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgPartitionTree PG_PARTITION_TREE( + Object rootrelid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionTree.PG_PARTITION_TREE.call( + rootrelid + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgPartitionTree PG_PARTITION_TREE( + Field rootrelid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionTree.PG_PARTITION_TREE.call( + rootrelid + ); + } + + /** + * The table pg_catalog.pg_partitioned_table. + */ + public final PgPartitionedTable PG_PARTITIONED_TABLE = PgPartitionedTable.PG_PARTITIONED_TABLE; + + /** + * The table pg_catalog.pg_policies. + */ + public final PgPolicies PG_POLICIES = PgPolicies.PG_POLICIES; + + /** + * The table pg_catalog.pg_policy. + */ + public final PgPolicy PG_POLICY = PgPolicy.PG_POLICY; + + /** + * The table pg_catalog.pg_prepared_statement. + */ + public final PgPreparedStatement PG_PREPARED_STATEMENT = PgPreparedStatement.PG_PREPARED_STATEMENT; + + /** + * Call pg_catalog.pg_prepared_statement. + */ + public static Result PG_PREPARED_STATEMENT( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedStatement.PG_PREPARED_STATEMENT.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_prepared_statement as a table. + */ + public static PgPreparedStatement PG_PREPARED_STATEMENT() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedStatement.PG_PREPARED_STATEMENT.call( + ); + } + + /** + * The table pg_catalog.pg_prepared_statements. + */ + public final PgPreparedStatements PG_PREPARED_STATEMENTS = PgPreparedStatements.PG_PREPARED_STATEMENTS; + + /** + * The table pg_catalog.pg_prepared_xact. + */ + public final PgPreparedXact PG_PREPARED_XACT = PgPreparedXact.PG_PREPARED_XACT; + + /** + * Call pg_catalog.pg_prepared_xact. + */ + public static Result PG_PREPARED_XACT( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedXact.PG_PREPARED_XACT.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_prepared_xact as a table. + */ + public static PgPreparedXact PG_PREPARED_XACT() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedXact.PG_PREPARED_XACT.call( + ); + } + + /** + * The table pg_catalog.pg_prepared_xacts. + */ + public final PgPreparedXacts PG_PREPARED_XACTS = PgPreparedXacts.PG_PREPARED_XACTS; + + /** + * The table pg_catalog.pg_proc. + */ + public final PgProc PG_PROC = PgProc.PG_PROC; + + /** + * The table pg_catalog.pg_publication. + */ + public final PgPublication PG_PUBLICATION = PgPublication.PG_PUBLICATION; + + /** + * The table pg_catalog.pg_publication_namespace. + */ + public final PgPublicationNamespace PG_PUBLICATION_NAMESPACE = PgPublicationNamespace.PG_PUBLICATION_NAMESPACE; + + /** + * The table pg_catalog.pg_publication_rel. + */ + public final PgPublicationRel PG_PUBLICATION_REL = PgPublicationRel.PG_PUBLICATION_REL; + + /** + * The table pg_catalog.pg_publication_tables. + */ + public final PgPublicationTables PG_PUBLICATION_TABLES = PgPublicationTables.PG_PUBLICATION_TABLES; + + /** + * The table pg_catalog.pg_range. + */ + public final PgRange PG_RANGE = PgRange.PG_RANGE; + + /** + * The table pg_catalog.pg_replication_origin. + */ + public final PgReplicationOrigin PG_REPLICATION_ORIGIN = PgReplicationOrigin.PG_REPLICATION_ORIGIN; + + /** + * The table pg_catalog.pg_replication_slots. + */ + public final PgReplicationSlots PG_REPLICATION_SLOTS = PgReplicationSlots.PG_REPLICATION_SLOTS; + + /** + * The table pg_catalog.pg_rewrite. + */ + public final PgRewrite PG_REWRITE = PgRewrite.PG_REWRITE; + + /** + * The table pg_catalog.pg_roles. + */ + public final PgRoles PG_ROLES = PgRoles.PG_ROLES; + + /** + * The table pg_catalog.pg_rules. + */ + public final PgRules PG_RULES = PgRules.PG_RULES; + + /** + * The table pg_catalog.pg_seclabel. + */ + public final PgSeclabel PG_SECLABEL = PgSeclabel.PG_SECLABEL; + + /** + * The table pg_catalog.pg_seclabels. + */ + public final PgSeclabels PG_SECLABELS = PgSeclabels.PG_SECLABELS; + + /** + * The table pg_catalog.pg_sequence. + */ + public final PgSequence PG_SEQUENCE = PgSequence.PG_SEQUENCE; + + /** + * The table pg_catalog.pg_sequences. + */ + public final PgSequences PG_SEQUENCES = PgSequences.PG_SEQUENCES; + + /** + * The table pg_catalog.pg_settings. + */ + public final PgSettings PG_SETTINGS = PgSettings.PG_SETTINGS; + + /** + * The table pg_catalog.pg_shdepend. + */ + public final PgShdepend PG_SHDEPEND = PgShdepend.PG_SHDEPEND; + + /** + * The table pg_catalog.pg_shdescription. + */ + public final PgShdescription PG_SHDESCRIPTION = PgShdescription.PG_SHDESCRIPTION; + + /** + * The table pg_catalog.pg_show_all_settings. + */ + public final PgShowAllSettings PG_SHOW_ALL_SETTINGS = PgShowAllSettings.PG_SHOW_ALL_SETTINGS; + + /** + * Call pg_catalog.pg_show_all_settings. + */ + public static Result PG_SHOW_ALL_SETTINGS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShowAllSettings.PG_SHOW_ALL_SETTINGS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_show_all_settings as a table. + */ + public static PgShowAllSettings PG_SHOW_ALL_SETTINGS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShowAllSettings.PG_SHOW_ALL_SETTINGS.call( + ); + } + + /** + * The table pg_catalog.pg_shseclabel. + */ + public final PgShseclabel PG_SHSECLABEL = PgShseclabel.PG_SHSECLABEL; + + /** + * The table pg_catalog.pg_snapshot_xip. + */ + public final PgSnapshotXip PG_SNAPSHOT_XIP = PgSnapshotXip.PG_SNAPSHOT_XIP; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result PG_SNAPSHOT_XIP( + Configuration configuration + , Object __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSnapshotXip.PG_SNAPSHOT_XIP.call( + __1 + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgSnapshotXip PG_SNAPSHOT_XIP( + Object __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSnapshotXip.PG_SNAPSHOT_XIP.call( + __1 + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static PgSnapshotXip PG_SNAPSHOT_XIP( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSnapshotXip.PG_SNAPSHOT_XIP.call( + __1 + ); + } + + /** + * The table pg_catalog.pg_stat_activity. + */ + public final PgStatActivity PG_STAT_ACTIVITY = PgStatActivity.PG_STAT_ACTIVITY; + + /** + * The table pg_catalog.pg_stat_all_indexes. + */ + public final PgStatAllIndexes PG_STAT_ALL_INDEXES = PgStatAllIndexes.PG_STAT_ALL_INDEXES; + + /** + * The table pg_catalog.pg_stat_all_tables. + */ + public final PgStatAllTables PG_STAT_ALL_TABLES = PgStatAllTables.PG_STAT_ALL_TABLES; + + /** + * The table pg_catalog.pg_stat_archiver. + */ + public final PgStatArchiver PG_STAT_ARCHIVER = PgStatArchiver.PG_STAT_ARCHIVER; + + /** + * The table pg_catalog.pg_stat_bgwriter. + */ + public final PgStatBgwriter PG_STAT_BGWRITER = PgStatBgwriter.PG_STAT_BGWRITER; + + /** + * The table pg_catalog.pg_stat_database. + */ + public final PgStatDatabase PG_STAT_DATABASE = PgStatDatabase.PG_STAT_DATABASE; + + /** + * The table pg_catalog.pg_stat_database_conflicts. + */ + public final PgStatDatabaseConflicts PG_STAT_DATABASE_CONFLICTS = PgStatDatabaseConflicts.PG_STAT_DATABASE_CONFLICTS; + + /** + * The table pg_catalog.pg_stat_get_activity. + */ + public final PgStatGetActivity PG_STAT_GET_ACTIVITY = PgStatGetActivity.PG_STAT_GET_ACTIVITY; + + /** + * Call pg_catalog.pg_stat_get_activity. + */ + public static Result PG_STAT_GET_ACTIVITY( + Configuration configuration + , Integer pid + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetActivity.PG_STAT_GET_ACTIVITY.call( + pid + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_activity as a table. + */ + public static PgStatGetActivity PG_STAT_GET_ACTIVITY( + Integer pid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetActivity.PG_STAT_GET_ACTIVITY.call( + pid + ); + } + + /** + * Get pg_catalog.pg_stat_get_activity as a table. + */ + public static PgStatGetActivity PG_STAT_GET_ACTIVITY( + Field pid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetActivity.PG_STAT_GET_ACTIVITY.call( + pid + ); + } + + /** + * The table pg_catalog.pg_stat_get_backend_idset. + */ + public final PgStatGetBackendIdset PG_STAT_GET_BACKEND_IDSET = PgStatGetBackendIdset.PG_STAT_GET_BACKEND_IDSET; + + /** + * Call pg_catalog.pg_stat_get_backend_idset. + */ + public static Result PG_STAT_GET_BACKEND_IDSET( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetBackendIdset.PG_STAT_GET_BACKEND_IDSET.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_backend_idset as a table. + */ + public static PgStatGetBackendIdset PG_STAT_GET_BACKEND_IDSET() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetBackendIdset.PG_STAT_GET_BACKEND_IDSET.call( + ); + } + + /** + * The table pg_catalog.pg_stat_get_progress_info. + */ + public final PgStatGetProgressInfo PG_STAT_GET_PROGRESS_INFO = PgStatGetProgressInfo.PG_STAT_GET_PROGRESS_INFO; + + /** + * Call pg_catalog.pg_stat_get_progress_info. + */ + public static Result PG_STAT_GET_PROGRESS_INFO( + Configuration configuration + , String cmdtype + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetProgressInfo.PG_STAT_GET_PROGRESS_INFO.call( + cmdtype + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_progress_info as a table. + */ + public static PgStatGetProgressInfo PG_STAT_GET_PROGRESS_INFO( + String cmdtype + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetProgressInfo.PG_STAT_GET_PROGRESS_INFO.call( + cmdtype + ); + } + + /** + * Get pg_catalog.pg_stat_get_progress_info as a table. + */ + public static PgStatGetProgressInfo PG_STAT_GET_PROGRESS_INFO( + Field cmdtype + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetProgressInfo.PG_STAT_GET_PROGRESS_INFO.call( + cmdtype + ); + } + + /** + * The table pg_catalog.pg_stat_get_recovery_prefetch. + */ + public final PgStatGetRecoveryPrefetch PG_STAT_GET_RECOVERY_PREFETCH = PgStatGetRecoveryPrefetch.PG_STAT_GET_RECOVERY_PREFETCH; + + /** + * Call pg_catalog.pg_stat_get_recovery_prefetch. + */ + public static Result PG_STAT_GET_RECOVERY_PREFETCH( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetRecoveryPrefetch.PG_STAT_GET_RECOVERY_PREFETCH.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_recovery_prefetch as a table. + */ + public static PgStatGetRecoveryPrefetch PG_STAT_GET_RECOVERY_PREFETCH() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetRecoveryPrefetch.PG_STAT_GET_RECOVERY_PREFETCH.call( + ); + } + + /** + * The table pg_catalog.pg_stat_get_slru. + */ + public final PgStatGetSlru PG_STAT_GET_SLRU = PgStatGetSlru.PG_STAT_GET_SLRU; + + /** + * Call pg_catalog.pg_stat_get_slru. + */ + public static Result PG_STAT_GET_SLRU( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSlru.PG_STAT_GET_SLRU.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_slru as a table. + */ + public static PgStatGetSlru PG_STAT_GET_SLRU() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSlru.PG_STAT_GET_SLRU.call( + ); + } + + /** + * The table pg_catalog.pg_stat_get_subscription. + */ + public final PgStatGetSubscription PG_STAT_GET_SUBSCRIPTION = PgStatGetSubscription.PG_STAT_GET_SUBSCRIPTION; + + /** + * Call pg_catalog.pg_stat_get_subscription. + */ + public static Result PG_STAT_GET_SUBSCRIPTION( + Configuration configuration + , Long subid + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSubscription.PG_STAT_GET_SUBSCRIPTION.call( + subid + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_subscription as a table. + */ + public static PgStatGetSubscription PG_STAT_GET_SUBSCRIPTION( + Long subid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSubscription.PG_STAT_GET_SUBSCRIPTION.call( + subid + ); + } + + /** + * Get pg_catalog.pg_stat_get_subscription as a table. + */ + public static PgStatGetSubscription PG_STAT_GET_SUBSCRIPTION( + Field subid + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSubscription.PG_STAT_GET_SUBSCRIPTION.call( + subid + ); + } + + /** + * The table pg_catalog.pg_stat_get_wal_senders. + */ + public final PgStatGetWalSenders PG_STAT_GET_WAL_SENDERS = PgStatGetWalSenders.PG_STAT_GET_WAL_SENDERS; + + /** + * Call pg_catalog.pg_stat_get_wal_senders. + */ + public static Result PG_STAT_GET_WAL_SENDERS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetWalSenders.PG_STAT_GET_WAL_SENDERS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_stat_get_wal_senders as a table. + */ + public static PgStatGetWalSenders PG_STAT_GET_WAL_SENDERS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetWalSenders.PG_STAT_GET_WAL_SENDERS.call( + ); + } + + /** + * The table pg_catalog.pg_stat_gssapi. + */ + public final PgStatGssapi PG_STAT_GSSAPI = PgStatGssapi.PG_STAT_GSSAPI; + + /** + * The table pg_catalog.pg_stat_progress_analyze. + */ + public final PgStatProgressAnalyze PG_STAT_PROGRESS_ANALYZE = PgStatProgressAnalyze.PG_STAT_PROGRESS_ANALYZE; + + /** + * The table pg_catalog.pg_stat_progress_basebackup. + */ + public final PgStatProgressBasebackup PG_STAT_PROGRESS_BASEBACKUP = PgStatProgressBasebackup.PG_STAT_PROGRESS_BASEBACKUP; + + /** + * The table pg_catalog.pg_stat_progress_cluster. + */ + public final PgStatProgressCluster PG_STAT_PROGRESS_CLUSTER = PgStatProgressCluster.PG_STAT_PROGRESS_CLUSTER; + + /** + * The table pg_catalog.pg_stat_progress_copy. + */ + public final PgStatProgressCopy PG_STAT_PROGRESS_COPY = PgStatProgressCopy.PG_STAT_PROGRESS_COPY; + + /** + * The table pg_catalog.pg_stat_progress_create_index. + */ + public final PgStatProgressCreateIndex PG_STAT_PROGRESS_CREATE_INDEX = PgStatProgressCreateIndex.PG_STAT_PROGRESS_CREATE_INDEX; + + /** + * The table pg_catalog.pg_stat_progress_vacuum. + */ + public final PgStatProgressVacuum PG_STAT_PROGRESS_VACUUM = PgStatProgressVacuum.PG_STAT_PROGRESS_VACUUM; + + /** + * The table pg_catalog.pg_stat_recovery_prefetch. + */ + public final PgStatRecoveryPrefetch PG_STAT_RECOVERY_PREFETCH = PgStatRecoveryPrefetch.PG_STAT_RECOVERY_PREFETCH; + + /** + * The table pg_catalog.pg_stat_replication. + */ + public final PgStatReplication PG_STAT_REPLICATION = PgStatReplication.PG_STAT_REPLICATION; + + /** + * The table pg_catalog.pg_stat_replication_slots. + */ + public final PgStatReplicationSlots PG_STAT_REPLICATION_SLOTS = PgStatReplicationSlots.PG_STAT_REPLICATION_SLOTS; + + /** + * The table pg_catalog.pg_stat_slru. + */ + public final PgStatSlru PG_STAT_SLRU = PgStatSlru.PG_STAT_SLRU; + + /** + * The table pg_catalog.pg_stat_ssl. + */ + public final PgStatSsl PG_STAT_SSL = PgStatSsl.PG_STAT_SSL; + + /** + * The table pg_catalog.pg_stat_subscription. + */ + public final PgStatSubscription PG_STAT_SUBSCRIPTION = PgStatSubscription.PG_STAT_SUBSCRIPTION; + + /** + * The table pg_catalog.pg_stat_subscription_stats. + */ + public final PgStatSubscriptionStats PG_STAT_SUBSCRIPTION_STATS = PgStatSubscriptionStats.PG_STAT_SUBSCRIPTION_STATS; + + /** + * The table pg_catalog.pg_stat_sys_indexes. + */ + public final PgStatSysIndexes PG_STAT_SYS_INDEXES = PgStatSysIndexes.PG_STAT_SYS_INDEXES; + + /** + * The table pg_catalog.pg_stat_sys_tables. + */ + public final PgStatSysTables PG_STAT_SYS_TABLES = PgStatSysTables.PG_STAT_SYS_TABLES; + + /** + * The table pg_catalog.pg_stat_user_functions. + */ + public final PgStatUserFunctions PG_STAT_USER_FUNCTIONS = PgStatUserFunctions.PG_STAT_USER_FUNCTIONS; + + /** + * The table pg_catalog.pg_stat_user_indexes. + */ + public final PgStatUserIndexes PG_STAT_USER_INDEXES = PgStatUserIndexes.PG_STAT_USER_INDEXES; + + /** + * The table pg_catalog.pg_stat_user_tables. + */ + public final PgStatUserTables PG_STAT_USER_TABLES = PgStatUserTables.PG_STAT_USER_TABLES; + + /** + * The table pg_catalog.pg_stat_wal. + */ + public final PgStatWal PG_STAT_WAL = PgStatWal.PG_STAT_WAL; + + /** + * The table pg_catalog.pg_stat_wal_receiver. + */ + public final PgStatWalReceiver PG_STAT_WAL_RECEIVER = PgStatWalReceiver.PG_STAT_WAL_RECEIVER; + + /** + * The table pg_catalog.pg_stat_xact_all_tables. + */ + public final PgStatXactAllTables PG_STAT_XACT_ALL_TABLES = PgStatXactAllTables.PG_STAT_XACT_ALL_TABLES; + + /** + * The table pg_catalog.pg_stat_xact_sys_tables. + */ + public final PgStatXactSysTables PG_STAT_XACT_SYS_TABLES = PgStatXactSysTables.PG_STAT_XACT_SYS_TABLES; + + /** + * The table pg_catalog.pg_stat_xact_user_functions. + */ + public final PgStatXactUserFunctions PG_STAT_XACT_USER_FUNCTIONS = PgStatXactUserFunctions.PG_STAT_XACT_USER_FUNCTIONS; + + /** + * The table pg_catalog.pg_stat_xact_user_tables. + */ + public final PgStatXactUserTables PG_STAT_XACT_USER_TABLES = PgStatXactUserTables.PG_STAT_XACT_USER_TABLES; + + /** + * The table pg_catalog.pg_statio_all_indexes. + */ + public final PgStatioAllIndexes PG_STATIO_ALL_INDEXES = PgStatioAllIndexes.PG_STATIO_ALL_INDEXES; + + /** + * The table pg_catalog.pg_statio_all_sequences. + */ + public final PgStatioAllSequences PG_STATIO_ALL_SEQUENCES = PgStatioAllSequences.PG_STATIO_ALL_SEQUENCES; + + /** + * The table pg_catalog.pg_statio_all_tables. + */ + public final PgStatioAllTables PG_STATIO_ALL_TABLES = PgStatioAllTables.PG_STATIO_ALL_TABLES; + + /** + * The table pg_catalog.pg_statio_sys_indexes. + */ + public final PgStatioSysIndexes PG_STATIO_SYS_INDEXES = PgStatioSysIndexes.PG_STATIO_SYS_INDEXES; + + /** + * The table pg_catalog.pg_statio_sys_sequences. + */ + public final PgStatioSysSequences PG_STATIO_SYS_SEQUENCES = PgStatioSysSequences.PG_STATIO_SYS_SEQUENCES; + + /** + * The table pg_catalog.pg_statio_sys_tables. + */ + public final PgStatioSysTables PG_STATIO_SYS_TABLES = PgStatioSysTables.PG_STATIO_SYS_TABLES; + + /** + * The table pg_catalog.pg_statio_user_indexes. + */ + public final PgStatioUserIndexes PG_STATIO_USER_INDEXES = PgStatioUserIndexes.PG_STATIO_USER_INDEXES; + + /** + * The table pg_catalog.pg_statio_user_sequences. + */ + public final PgStatioUserSequences PG_STATIO_USER_SEQUENCES = PgStatioUserSequences.PG_STATIO_USER_SEQUENCES; + + /** + * The table pg_catalog.pg_statio_user_tables. + */ + public final PgStatioUserTables PG_STATIO_USER_TABLES = PgStatioUserTables.PG_STATIO_USER_TABLES; + + /** + * The table pg_catalog.pg_statistic_ext. + */ + public final PgStatisticExt PG_STATISTIC_EXT = PgStatisticExt.PG_STATISTIC_EXT; + + /** + * The table pg_catalog.pg_stats. + */ + public final PgStats PG_STATS = PgStats.PG_STATS; + + /** + * The table pg_catalog.pg_stats_ext. + */ + public final PgStatsExt PG_STATS_EXT = PgStatsExt.PG_STATS_EXT; + + /** + * The table pg_catalog.pg_stats_ext_exprs. + */ + public final PgStatsExtExprs PG_STATS_EXT_EXPRS = PgStatsExtExprs.PG_STATS_EXT_EXPRS; + + /** + * The table pg_catalog.pg_subscription. + */ + public final PgSubscription PG_SUBSCRIPTION = PgSubscription.PG_SUBSCRIPTION; + + /** + * The table pg_catalog.pg_subscription_rel. + */ + public final PgSubscriptionRel PG_SUBSCRIPTION_REL = PgSubscriptionRel.PG_SUBSCRIPTION_REL; + + /** + * The table pg_catalog.pg_tables. + */ + public final PgTables PG_TABLES = PgTables.PG_TABLES; + + /** + * The table pg_catalog.pg_tablespace. + */ + public final PgTablespace PG_TABLESPACE = PgTablespace.PG_TABLESPACE; + + /** + * The table pg_catalog.pg_tablespace_databases. + */ + public final PgTablespaceDatabases PG_TABLESPACE_DATABASES = PgTablespaceDatabases.PG_TABLESPACE_DATABASES; + + /** + * Call pg_catalog.pg_tablespace_databases. + */ + public static Result PG_TABLESPACE_DATABASES( + Configuration configuration + , Long __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespaceDatabases.PG_TABLESPACE_DATABASES.call( + __1 + )).fetch(); + } + + /** + * Get pg_catalog.pg_tablespace_databases as a table. + */ + public static PgTablespaceDatabases PG_TABLESPACE_DATABASES( + Long __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespaceDatabases.PG_TABLESPACE_DATABASES.call( + __1 + ); + } + + /** + * Get pg_catalog.pg_tablespace_databases as a table. + */ + public static PgTablespaceDatabases PG_TABLESPACE_DATABASES( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespaceDatabases.PG_TABLESPACE_DATABASES.call( + __1 + ); + } + + /** + * The table pg_catalog.pg_timezone_abbrevs. + */ + public final PgTimezoneAbbrevs PG_TIMEZONE_ABBREVS = PgTimezoneAbbrevs.PG_TIMEZONE_ABBREVS; + + /** + * Call pg_catalog.pg_timezone_abbrevs. + */ + public static Result PG_TIMEZONE_ABBREVS( + Configuration configuration + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTimezoneAbbrevs.PG_TIMEZONE_ABBREVS.call( + )).fetch(); + } + + /** + * Get pg_catalog.pg_timezone_abbrevs as a table. + */ + public static PgTimezoneAbbrevs PG_TIMEZONE_ABBREVS() { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTimezoneAbbrevs.PG_TIMEZONE_ABBREVS.call( + ); + } + + /** + * The table pg_catalog.pg_timezone_names. + */ + public final PgTimezoneNames PG_TIMEZONE_NAMES = PgTimezoneNames.PG_TIMEZONE_NAMES; + + /** + * The table pg_catalog.pg_transform. + */ + public final PgTransform PG_TRANSFORM = PgTransform.PG_TRANSFORM; + + /** + * The table pg_catalog.pg_trigger. + */ + public final PgTrigger PG_TRIGGER = PgTrigger.PG_TRIGGER; + + /** + * The table pg_catalog.pg_ts_config. + */ + public final PgTsConfig PG_TS_CONFIG = PgTsConfig.PG_TS_CONFIG; + + /** + * The table pg_catalog.pg_ts_config_map. + */ + public final PgTsConfigMap PG_TS_CONFIG_MAP = PgTsConfigMap.PG_TS_CONFIG_MAP; + + /** + * The table pg_catalog.pg_ts_dict. + */ + public final PgTsDict PG_TS_DICT = PgTsDict.PG_TS_DICT; + + /** + * The table pg_catalog.pg_ts_parser. + */ + public final PgTsParser PG_TS_PARSER = PgTsParser.PG_TS_PARSER; + + /** + * The table pg_catalog.pg_ts_template. + */ + public final PgTsTemplate PG_TS_TEMPLATE = PgTsTemplate.PG_TS_TEMPLATE; + + /** + * The table pg_catalog.pg_type. + */ + public final PgType PG_TYPE = PgType.PG_TYPE; + + /** + * The table pg_catalog.pg_user. + */ + public final PgUser PG_USER = PgUser.PG_USER; + + /** + * The table pg_catalog.pg_user_mappings. + */ + public final PgUserMappings PG_USER_MAPPINGS = PgUserMappings.PG_USER_MAPPINGS; + + /** + * The table pg_catalog.pg_views. + */ + public final PgViews PG_VIEWS = PgViews.PG_VIEWS; + + /** + * The table pg_catalog.regexp_matches. + */ + public final RegexpMatches REGEXP_MATCHES = RegexpMatches.REGEXP_MATCHES; + + /** + * Call pg_catalog.regexp_matches. + */ + public static Result REGEXP_MATCHES( + Configuration configuration + , String __1 + , String __2 + , String __3 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpMatches.REGEXP_MATCHES.call( + __1 + , __2 + , __3 + )).fetch(); + } + + /** + * Get pg_catalog.regexp_matches as a table. + */ + public static RegexpMatches REGEXP_MATCHES( + String __1 + , String __2 + , String __3 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpMatches.REGEXP_MATCHES.call( + __1, + __2, + __3 + ); + } + + /** + * Get pg_catalog.regexp_matches as a table. + */ + public static RegexpMatches REGEXP_MATCHES( + Field __1 + , Field __2 + , Field __3 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpMatches.REGEXP_MATCHES.call( + __1, + __2, + __3 + ); + } + + /** + * The table pg_catalog.regexp_split_to_table. + */ + public final RegexpSplitToTable REGEXP_SPLIT_TO_TABLE = RegexpSplitToTable.REGEXP_SPLIT_TO_TABLE; + + /** + * Call pg_catalog.regexp_split_to_table. + */ + public static Result REGEXP_SPLIT_TO_TABLE( + Configuration configuration + , String __1 + , String __2 + , String __3 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpSplitToTable.REGEXP_SPLIT_TO_TABLE.call( + __1 + , __2 + , __3 + )).fetch(); + } + + /** + * Get pg_catalog.regexp_split_to_table as a table. + */ + public static RegexpSplitToTable REGEXP_SPLIT_TO_TABLE( + String __1 + , String __2 + , String __3 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpSplitToTable.REGEXP_SPLIT_TO_TABLE.call( + __1, + __2, + __3 + ); + } + + /** + * Get pg_catalog.regexp_split_to_table as a table. + */ + public static RegexpSplitToTable REGEXP_SPLIT_TO_TABLE( + Field __1 + , Field __2 + , Field __3 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpSplitToTable.REGEXP_SPLIT_TO_TABLE.call( + __1, + __2, + __3 + ); + } + + /** + * The table pg_catalog.string_to_table. + */ + public final StringToTable STRING_TO_TABLE = StringToTable.STRING_TO_TABLE; + + /** + * Call pg_catalog.string_to_table. + */ + public static Result STRING_TO_TABLE( + Configuration configuration + , String __1 + , String __2 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.StringToTable.STRING_TO_TABLE.call( + __1 + , __2 + )).fetch(); + } + + /** + * Get pg_catalog.string_to_table as a table. + */ + public static StringToTable STRING_TO_TABLE( + String __1 + , String __2 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.StringToTable.STRING_TO_TABLE.call( + __1, + __2 + ); + } + + /** + * Get pg_catalog.string_to_table as a table. + */ + public static StringToTable STRING_TO_TABLE( + Field __1 + , Field __2 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.StringToTable.STRING_TO_TABLE.call( + __1, + __2 + ); + } + + /** + * The table pg_catalog.ts_debug. + */ + public final TsDebug TS_DEBUG = TsDebug.TS_DEBUG; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result TS_DEBUG( + Configuration configuration + , Object config + , String document + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsDebug.TS_DEBUG.call( + config + , document + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static TsDebug TS_DEBUG( + Object config + , String document + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsDebug.TS_DEBUG.call( + config, + document + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static TsDebug TS_DEBUG( + Field config + , Field document + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsDebug.TS_DEBUG.call( + config, + document + ); + } + + /** + * The table pg_catalog.ts_parse. + */ + public final TsParse TS_PARSE = TsParse.TS_PARSE; + + /** + * Call pg_catalog.ts_parse. + */ + public static Result TS_PARSE( + Configuration configuration + , String parserName + , String txt + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsParse.TS_PARSE.call( + parserName + , txt + )).fetch(); + } + + /** + * Get pg_catalog.ts_parse as a table. + */ + public static TsParse TS_PARSE( + String parserName + , String txt + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsParse.TS_PARSE.call( + parserName, + txt + ); + } + + /** + * Get pg_catalog.ts_parse as a table. + */ + public static TsParse TS_PARSE( + Field parserName + , Field txt + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsParse.TS_PARSE.call( + parserName, + txt + ); + } + + /** + * The table pg_catalog.ts_stat. + */ + public final TsStat TS_STAT = TsStat.TS_STAT; + + /** + * Call pg_catalog.ts_stat. + */ + public static Result TS_STAT( + Configuration configuration + , String query + , String weights + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsStat.TS_STAT.call( + query + , weights + )).fetch(); + } + + /** + * Get pg_catalog.ts_stat as a table. + */ + public static TsStat TS_STAT( + String query + , String weights + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsStat.TS_STAT.call( + query, + weights + ); + } + + /** + * Get pg_catalog.ts_stat as a table. + */ + public static TsStat TS_STAT( + Field query + , Field weights + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsStat.TS_STAT.call( + query, + weights + ); + } + + /** + * The table pg_catalog.ts_token_type. + */ + public final TsTokenType TS_TOKEN_TYPE = TsTokenType.TS_TOKEN_TYPE; + + /** + * Call pg_catalog.ts_token_type. + */ + public static Result TS_TOKEN_TYPE( + Configuration configuration + , String parserName + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsTokenType.TS_TOKEN_TYPE.call( + parserName + )).fetch(); + } + + /** + * Get pg_catalog.ts_token_type as a table. + */ + public static TsTokenType TS_TOKEN_TYPE( + String parserName + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsTokenType.TS_TOKEN_TYPE.call( + parserName + ); + } + + /** + * Get pg_catalog.ts_token_type as a table. + */ + public static TsTokenType TS_TOKEN_TYPE( + Field parserName + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsTokenType.TS_TOKEN_TYPE.call( + parserName + ); + } + + /** + * The table pg_catalog.txid_snapshot_xip. + */ + public final TxidSnapshotXip TXID_SNAPSHOT_XIP = TxidSnapshotXip.TXID_SNAPSHOT_XIP; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result TXID_SNAPSHOT_XIP( + Configuration configuration + , Object __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TxidSnapshotXip.TXID_SNAPSHOT_XIP.call( + __1 + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static TxidSnapshotXip TXID_SNAPSHOT_XIP( + Object __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TxidSnapshotXip.TXID_SNAPSHOT_XIP.call( + __1 + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static TxidSnapshotXip TXID_SNAPSHOT_XIP( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TxidSnapshotXip.TXID_SNAPSHOT_XIP.call( + __1 + ); + } + + /** + * The table pg_catalog.unnest. + */ + public final Unnest UNNEST = Unnest.UNNEST; + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Result UNNEST( + Configuration configuration + , Object __1 + ) { + return configuration.dsl().selectFrom(ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Unnest.UNNEST.call( + __1 + )).fetch(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Unnest UNNEST( + Object __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Unnest.UNNEST.call( + __1 + ); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Unnest UNNEST( + Field __1 + ) { + return ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Unnest.UNNEST.call( + __1 + ); + } + + /** + * No further instances allowed + */ + private PgCatalog() { + super("pg_catalog", null); + } + + + @Override + public Catalog getCatalog() { + return DefaultCatalog.DEFAULT_CATALOG; + } + + @Override + public final List> getTables() { + return Arrays.asList( + Aclexplode.ACLEXPLODE, + GenerateSeries.GENERATE_SERIES, + GenerateSubscripts.GENERATE_SUBSCRIPTS, + JsonArrayElements.JSON_ARRAY_ELEMENTS, + JsonArrayElementsText.JSON_ARRAY_ELEMENTS_TEXT, + JsonEach.JSON_EACH, + JsonEachText.JSON_EACH_TEXT, + JsonObjectKeys.JSON_OBJECT_KEYS, + JsonPopulateRecordset.JSON_POPULATE_RECORDSET, + JsonToRecordset.JSON_TO_RECORDSET, + JsonbArrayElements.JSONB_ARRAY_ELEMENTS, + JsonbArrayElementsText.JSONB_ARRAY_ELEMENTS_TEXT, + JsonbEach.JSONB_EACH, + JsonbEachText.JSONB_EACH_TEXT, + JsonbObjectKeys.JSONB_OBJECT_KEYS, + JsonbPathQuery.JSONB_PATH_QUERY, + JsonbPathQueryTz.JSONB_PATH_QUERY_TZ, + JsonbPopulateRecordset.JSONB_POPULATE_RECORDSET, + JsonbToRecordset.JSONB_TO_RECORDSET, + PgAggregate.PG_AGGREGATE, + PgAm.PG_AM, + PgAmop.PG_AMOP, + PgAmproc.PG_AMPROC, + PgAttrdef.PG_ATTRDEF, + PgAttribute.PG_ATTRIBUTE, + PgAuthMembers.PG_AUTH_MEMBERS, + PgAvailableExtensionVersions.PG_AVAILABLE_EXTENSION_VERSIONS, + PgAvailableExtensions.PG_AVAILABLE_EXTENSIONS, + PgCast.PG_CAST, + PgClass.PG_CLASS, + PgCollation.PG_COLLATION, + PgConstraint.PG_CONSTRAINT, + PgConversion.PG_CONVERSION, + PgCursor.PG_CURSOR, + PgCursors.PG_CURSORS, + PgDatabase.PG_DATABASE, + PgDbRoleSetting.PG_DB_ROLE_SETTING, + PgDefaultAcl.PG_DEFAULT_ACL, + PgDepend.PG_DEPEND, + PgDescription.PG_DESCRIPTION, + PgEnum.PG_ENUM, + PgEventTrigger.PG_EVENT_TRIGGER, + PgEventTriggerDdlCommands.PG_EVENT_TRIGGER_DDL_COMMANDS, + PgEventTriggerDroppedObjects.PG_EVENT_TRIGGER_DROPPED_OBJECTS, + PgExtension.PG_EXTENSION, + PgExtensionUpdatePaths.PG_EXTENSION_UPDATE_PATHS, + PgForeignDataWrapper.PG_FOREIGN_DATA_WRAPPER, + PgForeignServer.PG_FOREIGN_SERVER, + PgForeignTable.PG_FOREIGN_TABLE, + PgGetCatalogForeignKeys.PG_GET_CATALOG_FOREIGN_KEYS, + PgGetKeywords.PG_GET_KEYWORDS, + PgGetMultixactMembers.PG_GET_MULTIXACT_MEMBERS, + PgGetPublicationTables.PG_GET_PUBLICATION_TABLES, + PgGetReplicationSlots.PG_GET_REPLICATION_SLOTS, + PgGetWalResourceManagers.PG_GET_WAL_RESOURCE_MANAGERS, + PgGroup.PG_GROUP, + PgIndex.PG_INDEX, + PgIndexes.PG_INDEXES, + PgInherits.PG_INHERITS, + PgInitPrivs.PG_INIT_PRIVS, + PgLanguage.PG_LANGUAGE, + PgLargeobjectMetadata.PG_LARGEOBJECT_METADATA, + PgListeningChannels.PG_LISTENING_CHANNELS, + PgLockStatus.PG_LOCK_STATUS, + PgLocks.PG_LOCKS, + PgLogicalSlotGetBinaryChanges.PG_LOGICAL_SLOT_GET_BINARY_CHANGES, + PgLogicalSlotGetChanges.PG_LOGICAL_SLOT_GET_CHANGES, + PgLogicalSlotPeekBinaryChanges.PG_LOGICAL_SLOT_PEEK_BINARY_CHANGES, + PgLogicalSlotPeekChanges.PG_LOGICAL_SLOT_PEEK_CHANGES, + PgMatviews.PG_MATVIEWS, + PgMcvListItems.PG_MCV_LIST_ITEMS, + PgNamespace.PG_NAMESPACE, + PgOpclass.PG_OPCLASS, + PgOperator.PG_OPERATOR, + PgOpfamily.PG_OPFAMILY, + PgOptionsToTable.PG_OPTIONS_TO_TABLE, + PgParameterAcl.PG_PARAMETER_ACL, + PgPartitionAncestors.PG_PARTITION_ANCESTORS, + PgPartitionTree.PG_PARTITION_TREE, + PgPartitionedTable.PG_PARTITIONED_TABLE, + PgPolicies.PG_POLICIES, + PgPolicy.PG_POLICY, + PgPreparedStatement.PG_PREPARED_STATEMENT, + PgPreparedStatements.PG_PREPARED_STATEMENTS, + PgPreparedXact.PG_PREPARED_XACT, + PgPreparedXacts.PG_PREPARED_XACTS, + PgProc.PG_PROC, + PgPublication.PG_PUBLICATION, + PgPublicationNamespace.PG_PUBLICATION_NAMESPACE, + PgPublicationRel.PG_PUBLICATION_REL, + PgPublicationTables.PG_PUBLICATION_TABLES, + PgRange.PG_RANGE, + PgReplicationOrigin.PG_REPLICATION_ORIGIN, + PgReplicationSlots.PG_REPLICATION_SLOTS, + PgRewrite.PG_REWRITE, + PgRoles.PG_ROLES, + PgRules.PG_RULES, + PgSeclabel.PG_SECLABEL, + PgSeclabels.PG_SECLABELS, + PgSequence.PG_SEQUENCE, + PgSequences.PG_SEQUENCES, + PgSettings.PG_SETTINGS, + PgShdepend.PG_SHDEPEND, + PgShdescription.PG_SHDESCRIPTION, + PgShowAllSettings.PG_SHOW_ALL_SETTINGS, + PgShseclabel.PG_SHSECLABEL, + PgSnapshotXip.PG_SNAPSHOT_XIP, + PgStatActivity.PG_STAT_ACTIVITY, + PgStatAllIndexes.PG_STAT_ALL_INDEXES, + PgStatAllTables.PG_STAT_ALL_TABLES, + PgStatArchiver.PG_STAT_ARCHIVER, + PgStatBgwriter.PG_STAT_BGWRITER, + PgStatDatabase.PG_STAT_DATABASE, + PgStatDatabaseConflicts.PG_STAT_DATABASE_CONFLICTS, + PgStatGetActivity.PG_STAT_GET_ACTIVITY, + PgStatGetBackendIdset.PG_STAT_GET_BACKEND_IDSET, + PgStatGetProgressInfo.PG_STAT_GET_PROGRESS_INFO, + PgStatGetRecoveryPrefetch.PG_STAT_GET_RECOVERY_PREFETCH, + PgStatGetSlru.PG_STAT_GET_SLRU, + PgStatGetSubscription.PG_STAT_GET_SUBSCRIPTION, + PgStatGetWalSenders.PG_STAT_GET_WAL_SENDERS, + PgStatGssapi.PG_STAT_GSSAPI, + PgStatProgressAnalyze.PG_STAT_PROGRESS_ANALYZE, + PgStatProgressBasebackup.PG_STAT_PROGRESS_BASEBACKUP, + PgStatProgressCluster.PG_STAT_PROGRESS_CLUSTER, + PgStatProgressCopy.PG_STAT_PROGRESS_COPY, + PgStatProgressCreateIndex.PG_STAT_PROGRESS_CREATE_INDEX, + PgStatProgressVacuum.PG_STAT_PROGRESS_VACUUM, + PgStatRecoveryPrefetch.PG_STAT_RECOVERY_PREFETCH, + PgStatReplication.PG_STAT_REPLICATION, + PgStatReplicationSlots.PG_STAT_REPLICATION_SLOTS, + PgStatSlru.PG_STAT_SLRU, + PgStatSsl.PG_STAT_SSL, + PgStatSubscription.PG_STAT_SUBSCRIPTION, + PgStatSubscriptionStats.PG_STAT_SUBSCRIPTION_STATS, + PgStatSysIndexes.PG_STAT_SYS_INDEXES, + PgStatSysTables.PG_STAT_SYS_TABLES, + PgStatUserFunctions.PG_STAT_USER_FUNCTIONS, + PgStatUserIndexes.PG_STAT_USER_INDEXES, + PgStatUserTables.PG_STAT_USER_TABLES, + PgStatWal.PG_STAT_WAL, + PgStatWalReceiver.PG_STAT_WAL_RECEIVER, + PgStatXactAllTables.PG_STAT_XACT_ALL_TABLES, + PgStatXactSysTables.PG_STAT_XACT_SYS_TABLES, + PgStatXactUserFunctions.PG_STAT_XACT_USER_FUNCTIONS, + PgStatXactUserTables.PG_STAT_XACT_USER_TABLES, + PgStatioAllIndexes.PG_STATIO_ALL_INDEXES, + PgStatioAllSequences.PG_STATIO_ALL_SEQUENCES, + PgStatioAllTables.PG_STATIO_ALL_TABLES, + PgStatioSysIndexes.PG_STATIO_SYS_INDEXES, + PgStatioSysSequences.PG_STATIO_SYS_SEQUENCES, + PgStatioSysTables.PG_STATIO_SYS_TABLES, + PgStatioUserIndexes.PG_STATIO_USER_INDEXES, + PgStatioUserSequences.PG_STATIO_USER_SEQUENCES, + PgStatioUserTables.PG_STATIO_USER_TABLES, + PgStatisticExt.PG_STATISTIC_EXT, + PgStats.PG_STATS, + PgStatsExt.PG_STATS_EXT, + PgStatsExtExprs.PG_STATS_EXT_EXPRS, + PgSubscription.PG_SUBSCRIPTION, + PgSubscriptionRel.PG_SUBSCRIPTION_REL, + PgTables.PG_TABLES, + PgTablespace.PG_TABLESPACE, + PgTablespaceDatabases.PG_TABLESPACE_DATABASES, + PgTimezoneAbbrevs.PG_TIMEZONE_ABBREVS, + PgTimezoneNames.PG_TIMEZONE_NAMES, + PgTransform.PG_TRANSFORM, + PgTrigger.PG_TRIGGER, + PgTsConfig.PG_TS_CONFIG, + PgTsConfigMap.PG_TS_CONFIG_MAP, + PgTsDict.PG_TS_DICT, + PgTsParser.PG_TS_PARSER, + PgTsTemplate.PG_TS_TEMPLATE, + PgType.PG_TYPE, + PgUser.PG_USER, + PgUserMappings.PG_USER_MAPPINGS, + PgViews.PG_VIEWS, + RegexpMatches.REGEXP_MATCHES, + RegexpSplitToTable.REGEXP_SPLIT_TO_TABLE, + StringToTable.STRING_TO_TABLE, + TsDebug.TS_DEBUG, + TsParse.TS_PARSE, + TsStat.TS_STAT, + TsTokenType.TS_TOKEN_TYPE, + TxidSnapshotXip.TXID_SNAPSHOT_XIP, + Unnest.UNNEST + ); + } +} diff --git a/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Routines.java b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Routines.java new file mode 100644 index 0000000..25ba865 --- /dev/null +++ b/backend/src/main/java/ervu_secret/ervu_secret/db_beans/pg_catalog/Routines.java @@ -0,0 +1,158603 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_secret.ervu_secret.db_beans.pg_catalog; + + +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abbrev1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abbrev2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abs1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abs2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abs3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abs4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abs5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Abs6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Aclcontains; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Acldefault; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Aclinsert; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Aclitemeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Aclitemin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Aclitemout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Aclremove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Acos; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Acosd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Acosh; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Age1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Age2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Age3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Age4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Age5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Amvalidate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyarrayIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyarrayOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyarrayRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyarraySend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatibleIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatibleOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblearrayIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblearrayOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblearrayRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblearraySend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblemultirangeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblemultirangeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblenonarrayIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblenonarrayOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblerangeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnycompatiblerangeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyelementIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyelementOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyenumIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyenumOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnymultirangeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnymultirangeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnynonarrayIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnynonarrayOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyrangeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.AnyrangeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Anytextcat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Area1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Area2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Area3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Areajoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Areasel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAgg1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAgg2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAggArrayFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAggArrayTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayAppend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayCat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayDims; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayFill1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayFill2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayLength; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayLower; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayNdims; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayPosition1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayPosition2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayPositions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayPrepend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayRemove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayReplace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArraySend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArraySmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArraySubscriptHandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayToJson1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayToJson2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayToString1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayToString2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayToTsvector; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayTypanalyze; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayUnnestSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ArrayUpper; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Arraycontained; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Arraycontains; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Arraycontjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Arraycontsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Arrayoverlap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ascii; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Asin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Asind; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Asinh; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Atan; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Atan2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Atan2d; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Atand; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Atanh; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Avg7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bernoulli; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Big5ToEucTw; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Big5ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Big5ToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeCreateEmptyExtension; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetMissingValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextArrayPgTypeOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextHeapPgClassOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextHeapRelfilenode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextIndexPgClassOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextIndexRelfilenode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextMultirangeArrayPgTypeOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextMultirangePgTypeOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextPgAuthidOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextPgEnumOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextPgTablespaceOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextPgTypeOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextToastPgClassOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetNextToastRelfilenode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BinaryUpgradeSetRecordInitPrivs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bit1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bit2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bit3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitAnd1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitAnd2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitAnd3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitAnd4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitCount1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitCount2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitLength1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitLength2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitLength3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitOr1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitOr2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitOr3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitOr4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitXor1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitXor2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitXor3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BitXor4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitand; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitcat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Biteq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitgt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitnot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitshiftleft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitshiftright; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bittypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bittypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bitxor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bool1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bool2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolAccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolAlltrue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolAnd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolAnytrue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolOr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolandStatefunc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Booleq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolgt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boollt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoolorStatefunc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Boolsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoundBox; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Box1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Box2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Box3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Box4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxAbove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxAboveEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxAdd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxBelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxBelowEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxCenter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxContain; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxContainPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxContained; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxDiv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxIntersect; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxLeft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxMul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxOverabove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxOverbelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxOverlap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxOverleft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxOverright; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxRight; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxSame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BoxSub; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchar1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchar2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchar3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharPatternGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharPatternGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharPatternLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharPatternLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BpcharSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchareq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchargt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchariclike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharicnlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharicregexeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharicregexne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharnlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharregexeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharregexne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpcharsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchartypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bpchartypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomAddValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomOpcinfo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomOptions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomSummaryIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomSummaryOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomSummaryRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomSummarySend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinBloomUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinDesummarizeRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinInclusionAddValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinInclusionConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinInclusionOpcinfo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinInclusionUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxAddValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiAddValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceFloat4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceFloat8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceInet; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceInt2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceInt4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceInt8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceMacaddr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceMacaddr8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceNumeric; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistancePgLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceTid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceTimetz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiDistanceUuid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiOpcinfo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiOptions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiSummaryIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiSummaryOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiSummaryRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiSummarySend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxMultiUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxOpcinfo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinMinmaxUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinSummarizeNewValues; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BrinSummarizeRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Brinhandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Broadcast; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btarraycmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btboolcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BtbpcharPatternCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BtbpcharPatternSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btcharcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btequalimage; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btfloat48cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btfloat4cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btfloat4sortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btfloat84cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btfloat8cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btfloat8sortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bthandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint24cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint28cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint2cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint2sortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint42cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint48cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint4cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint4sortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint82cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint84cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint8cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btint8sortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btnamecmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btnamesortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btnametextcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btoidcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btoidsortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btoidvectorcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btrecordcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btrecordimagecmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btrim1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btrim2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btrim3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BttextPatternCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.BttextPatternSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bttextcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bttextnamecmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bttextsortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bttidcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Btvarstrequalimage; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ByteaSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ByteaStringAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ByteaStringAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteacat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteacmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteaeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteage; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteagt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteain; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteale; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bytealike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bytealt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteane; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteanlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteaout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Bytearecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Byteasend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cardinality; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashDivCash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashDivFlt4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashDivFlt8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashDivInt2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashDivInt4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashDivInt8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashMi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashMulFlt4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashMulFlt8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashMulInt2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashMulInt4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashMulInt8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashPl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CashWords; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cashlarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cashsmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cbrt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ceil1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ceil2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ceiling1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ceiling2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Center1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Center2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Char1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Char2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CharLength1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CharLength2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CharacterLength1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CharacterLength2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Chareq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Chargt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Charsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Chr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cideq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cidin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cidout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cidr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CidrIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CidrOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CidrRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CidrSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cidrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cidsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Circle1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Circle2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Circle3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleAbove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleAddPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleBelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleCenter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleContain; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleContainPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleContained; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleDivPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleLeft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleMulPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleOverabove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleOverbelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleOverlap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleOverleft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleOverright; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleRight; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleSame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CircleSubPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ClockTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CloseLs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CloseLseg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ClosePb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ClosePl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ClosePs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CloseSb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ColDescription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Concat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ConcatWs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Contjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Contsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Convert; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ConvertFrom; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ConvertTo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Corr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cos; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cosd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cosh; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Cotd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Count1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Count2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CovarPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CovarSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CstringIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CstringOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CstringRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CstringSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CumeDist1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CumeDist2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CumeDistFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentDatabase; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentQuery; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentSchema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentSchemas; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentSetting1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentSetting2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CurrentUser; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Currtid2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Currval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CursorToXml; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.CursorToXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatabaseToXml; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatabaseToXmlAndXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatabaseToXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Date1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Date2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateBin1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateBin2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateCmpTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateCmpTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateEqTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateEqTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateGeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateGeTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateGtTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateGtTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLeTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLtTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateLtTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateMi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateMiInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateMii; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateNeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateNeTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePart1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePart2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePart3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePart4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePart5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePart6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePlInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatePli; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateTrunc1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateTrunc2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateTrunc3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DateTrunc4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Datemultirange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Datemultirange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Datemultirange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Daterange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Daterange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DaterangeCanonical; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DaterangeSubdiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatetimePl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DatetimetzPl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dcbrt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Decode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Degrees; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DenseRank1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DenseRank2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DenseRankFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dexp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Diagonal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Diameter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DispellInit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DispellLexize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistBp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistBs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistCpoint; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistCpoly; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistLp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistLs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPathp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPolyc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPolyp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPpath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPpoly; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistPs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistSb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistSl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DistSp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dlog1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dlog10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DomainIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DomainRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dpow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dround; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DsimpleInit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DsimpleLexize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DsnowballInit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DsnowballLexize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dsqrt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DsynonymInit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.DsynonymLexize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Dtrunc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ElemContainedByMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ElemContainedByRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Encode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumFirst; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumLast; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumRange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumRange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EnumSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Eqjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Eqsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucCnToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucCnToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucJis_2004ToShiftJis_2004; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucJis_2004ToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucJpToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucJpToSjis; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucJpToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucKrToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucKrToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucTwToBig5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucTwToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EucTwToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EventTriggerIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.EventTriggerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Every; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Exp1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Exp2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Extract1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Extract2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Extract3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Extract4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Extract5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Extract6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Factorial; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Family; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FdwHandlerIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FdwHandlerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FirstValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float41; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float42; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float43; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float44; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float45; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float46; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float48pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4Accum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4abs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4in; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4larger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4smaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4um; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float4up; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float81; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float82; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float83; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float84pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float85; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float86; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8Accum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8Avg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8Combine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8Corr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8CovarPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8CovarSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrAvgx; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrAvgy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrIntercept; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrR2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrSlope; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrSxx; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrSxy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8RegrSyy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8StddevPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8StddevSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8VarPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8VarSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8abs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8in; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8larger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8smaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8um; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Float8up; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Floor1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Floor2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Flt4MulCash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Flt8MulCash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FmgrCValidator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FmgrInternalValidator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FmgrSqlValidator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Format1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Format2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.FormatType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gb18030ToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GbkToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gcd1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gcd2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gcd3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GenRandomUuid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GenerateSeriesInt4Support; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GenerateSeriesInt8Support; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GetBit1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GetBit2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GetByte; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GetCurrentTsConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Getdatabaseencoding; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Getpgusername; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinCleanPendingList; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinCmpPrefix; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinCmpTslexeme; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinCompareJsonb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinConsistentJsonb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinConsistentJsonbPath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractJsonb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractJsonbPath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractJsonbQuery; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractJsonbQueryPath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractTsquery1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractTsquery2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractTsquery3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractTsvector1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinExtractTsvector2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinTriconsistentJsonb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinTriconsistentJsonbPath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinTsqueryConsistent1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinTsqueryConsistent2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinTsqueryConsistent3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GinTsqueryTriconsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ginarrayconsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ginarrayextract1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ginarrayextract2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ginarraytriconsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ginhandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ginqueryarrayextract; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistBoxConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistBoxDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistBoxPenalty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistBoxPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistBoxSame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistBoxUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistCircleCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistCircleConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistCircleDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPointCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPointConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPointDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPointFetch; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPointSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPolyCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPolyConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GistPolyDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gisthandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsqueryCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsqueryConsistent1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsqueryConsistent2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsqueryPenalty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsqueryPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsquerySame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsqueryUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorConsistent1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorConsistent2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorDecompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorOptions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorPenalty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorSame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.GtsvectorUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gtsvectorin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Gtsvectorout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasAnyColumnPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasAnyColumnPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasAnyColumnPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasAnyColumnPrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasAnyColumnPrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasAnyColumnPrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege11; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege12; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasColumnPrivilege9; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasDatabasePrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasDatabasePrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasDatabasePrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasDatabasePrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasDatabasePrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasDatabasePrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasForeignDataWrapperPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasForeignDataWrapperPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasForeignDataWrapperPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasForeignDataWrapperPrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasForeignDataWrapperPrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasForeignDataWrapperPrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasFunctionPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasFunctionPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasFunctionPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasFunctionPrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasFunctionPrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasFunctionPrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasLanguagePrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasLanguagePrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasLanguagePrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasLanguagePrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasLanguagePrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasLanguagePrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasParameterPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasParameterPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasParameterPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSchemaPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSchemaPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSchemaPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSchemaPrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSchemaPrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSchemaPrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSequencePrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSequencePrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSequencePrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSequencePrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSequencePrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasSequencePrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasServerPrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasServerPrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasServerPrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasServerPrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasServerPrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasServerPrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablePrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablePrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablePrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablePrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablePrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablePrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablespacePrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablespacePrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablespacePrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablespacePrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablespacePrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTablespacePrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTypePrivilege1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTypePrivilege2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTypePrivilege3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTypePrivilege4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTypePrivilege5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HasTypePrivilege6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashAclitem; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashAclitemExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashArray; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashArrayExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashMultirangeExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashNumeric; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashNumericExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashRangeExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HashRecordExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashbpchar; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashbpcharextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashchar; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashcharextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashenum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashenumextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashfloat4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashfloat4extended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashfloat8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashfloat8extended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashhandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashinet; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashinetextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashint2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashint2extended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashint4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashint4extended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashint8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashint8extended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashmacaddr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashmacaddr8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashmacaddr8extended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashmacaddrextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashname; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashnameextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashoid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashoidextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashoidvector; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashoidvectorextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashtext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashtextextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashtid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashtidextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashvarlena; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hashvarlenaextended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.HeapTableamHandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Height; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Host; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Hostmask; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Iclikejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Iclikesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Icnlikejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Icnlikesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Icregexeqjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Icregexeqsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Icregexnejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Icregexnesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange11; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange12; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange13; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange14; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange15; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange16; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InRange9; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IndexAmHandlerIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IndexAmHandlerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetClientAddr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetClientPort; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistFetch; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistPenalty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistSame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetGistUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetMerge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSameFamily; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetServerAddr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetServerPort; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSpgChoose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSpgConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSpgInnerConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSpgLeafConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetSpgPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Inetand; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Inetmi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InetmiInt8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Inetnot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Inetor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Inetpl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Initcap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int21; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int22; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int23; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int24pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int25; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int26; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int28pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2Accum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2AccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2AvgAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2AvgAccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2MulCash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2Sum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2abs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2and; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2in; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2int4Sum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2larger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2mod; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2not; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2or; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2shl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2shr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2smaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2um; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2up; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2vectorin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2vectorout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2vectorrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2vectorsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int2xor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int41; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int42pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int43; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int44; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int45; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int46; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int47; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int48pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int49; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4Accum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4AccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4AvgAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4AvgAccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4AvgCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4MulCash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4Sum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4abs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4and; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4in; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4inc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4larger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4mod; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4multirange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4multirange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4multirange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4not; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4or; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4range1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4range2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4rangeCanonical; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4rangeSubdiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4shl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4shr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4smaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4um; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4up; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int4xor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int81; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int82pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int83; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int84pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int85; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int86; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int87; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int88; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8Accum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8AccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8Avg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8AvgAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8AvgAccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8AvgCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8AvgDeserialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8AvgSerialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8MulCash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8Sum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8abs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8and; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8dec; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8decAny; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8div; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8in; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8inc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8incAny; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8incFloat8Float8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8incSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8larger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8mi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8mod; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8mul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8multirange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8multirange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8multirange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8not; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8or; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8pl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8plInet; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8range1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8range2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8rangeCanonical; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8rangeSubdiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8shl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8shr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8smaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8um; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8up; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Int8xor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntegerPlDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InterLb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InterSb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InterSl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InternalIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.InternalOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Interval1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Interval2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalAccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalAvg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalDiv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalMi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalMul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalPl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalPlDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalPlTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalPlTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalPlTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalPlTimetz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IntervalUm; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Intervaltypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Intervaltypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IsNormalized; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isclosed; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isempty1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isempty2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isfinite1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isfinite2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isfinite3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isfinite4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ishorizontal1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ishorizontal2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ishorizontal3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Iso8859ToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Iso8859_1ToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IsoToKoi8r; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IsoToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IsoToWin1251; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.IsoToWin866; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isopen; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isparallel1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isparallel2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isperp1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isperp2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isvertical1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isvertical2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Isvertical3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JohabToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonAgg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonAggStrict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonAggStrictTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonArrayElement; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonArrayElementText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonArrayLength; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonBuildArray1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonBuildArray2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonBuildObject1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonBuildObject2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonExtractPath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonExtractPathText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObject1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObject2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAgg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggStrict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggStrictTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggUnique; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggUniqueStrict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggUniqueStrictTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectAggUniqueTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectField; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonObjectFieldText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonPopulateRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonStripNulls; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonToRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonToTsvector1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonToTsvector2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonTypeof; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbAgg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbAggStrict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbAggStrictTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbArrayElement; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbArrayElementText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbArrayLength; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbBuildArray1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbBuildArray2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbBuildObject1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbBuildObject2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbConcat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbContained; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbContains; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbDelete1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbDelete2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbDelete3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbDeletePath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbExists; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbExistsAll; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbExistsAny; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbExtractPath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbExtractPathText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbInsert; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObject1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObject2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAgg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggStrict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggStrictTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggUnique; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggUniqueStrict; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggUniqueStrictTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectAggUniqueTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectField; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbObjectFieldText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathExists; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathExistsOpr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathExistsTz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathMatch; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathMatchOpr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathMatchTz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathQueryArray; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathQueryArrayTz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathQueryFirst; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPathQueryFirstTz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPopulateRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbPretty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbSet; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbSetLax; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbStripNulls; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbSubscriptHandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbToRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbToTsvector1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbToTsvector2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonbTypeof; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonpathIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonpathOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonpathRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JsonpathSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JustifyDays; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JustifyHours; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.JustifyInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Koi8rToIso; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Koi8rToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Koi8rToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Koi8rToWin1251; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Koi8rToWin866; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Koi8uToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lag1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lag2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lag3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LanguageHandlerIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LanguageHandlerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LastValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lastval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Latin1ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Latin2ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Latin2ToWin1250; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Latin3ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Latin4ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lcm1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lcm2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lcm3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lead1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lead2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lead3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Left; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Length8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Like1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Like2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Like3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LikeEscape1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LikeEscape2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Likejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Likesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Line; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineHorizontal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineInterpt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineIntersect; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineParallel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LinePerp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LineVertical; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ln1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ln2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoClose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoCreat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoCreate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoFromBytea; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoGet1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoGet2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoLseek; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoLseek64; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoOpen; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoPut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoTell; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoTell64; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoTruncate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoTruncate64; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LoUnlink; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Log1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Log101; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Log102; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Log2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Log3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Loread; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lower1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lower2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lower3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LowerInc1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LowerInc2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LowerInf1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LowerInf2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lowrite; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lpad1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lpad2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lseg1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Lseg2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegCenter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegHorizontal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegInterpt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegIntersect; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegLength; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegParallel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegPerp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.LsegVertical; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ltrim1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ltrim2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ltrim3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8And; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8In; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Not; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Or; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Macaddr8Set7bit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrAnd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrNot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrOr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MacaddrSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MakeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MakeInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MakeTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MakeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MakeTimestamptz1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MakeTimestamptz2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Makeaclitem; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Masklen; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Matchingjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Matchingsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max11; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max12; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max13; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max14; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max15; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max16; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max17; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max18; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max19; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max20; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max21; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max22; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Max9; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Md51; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Md52; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToBig5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToEucCn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToEucJp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToEucKr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToEucTw; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToIso; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToKoi8r; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToLatin1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToLatin2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToLatin3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToLatin4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToSjis; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToWin1250; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToWin1251; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MicToWin866; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min11; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min12; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min13; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min14; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min15; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min16; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min17; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min18; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min19; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min20; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min21; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min22; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Min9; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MinScale; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Mod1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Mod2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Mod3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Mod4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Mode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ModeFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Money1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Money2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Money3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MulDInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Multirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeAdjacentMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeAdjacentRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeAfterMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeAfterRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeBeforeMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeBeforeRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeContainedByMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeContainedByRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeContainsElem; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeContainsMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeContainsRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeGistCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeGistConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeIntersect; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeIntersectAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeMinus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOverlapsMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOverlapsRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOverleftMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOverleftRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOverrightMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeOverrightRange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeTypanalyze; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MultirangeUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Multirangesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.MxidAge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Name1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Name2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Name3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameconcatoid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameeqtext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namege; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namegetext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namegt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namegttext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameiclike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameicnlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameicregexeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameicregexne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namein; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namele; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameletext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namelike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namelt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namelttext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namene; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namenetext; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namenlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namerecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameregexeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nameregexne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Namesend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Neqjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Neqsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Netmask; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Network; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkOverlap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSub; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSubeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSubsetSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSup; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NetworkSupeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Networkjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Networksel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nextval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nlikejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nlikesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Normalize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Notlike1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Notlike2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Notlike3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Now; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Npoints1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Npoints2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NthValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Ntile; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumNonnulls; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumNulls; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numeric8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAbs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAccumInv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAdd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAvg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAvgAccum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAvgCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAvgDeserialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericAvgSerialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericDeserialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericDiv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericDivTrunc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericExp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericInc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericLn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericLog; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericMod; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericMul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPlPgLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyAvg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyCombine; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyDeserialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolySerialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyStddevPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyStddevSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolySum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyVarPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPolyVarSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericPower; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSerialize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSqrt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericStddevPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericStddevSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSub; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericUminus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericUplus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericVarPop; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumericVarSamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numerictypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numerictypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nummultirange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nummultirange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Nummultirange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numnode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numrange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Numrange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.NumrangeSubdiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ObjDescription1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ObjDescription2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OctetLength1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OctetLength2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OctetLength3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OctetLength4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oideq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidgt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidlarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidsmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectoreq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorgt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectorsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Oidvectortypes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OnPb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OnPl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OnPpath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OnPs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OnSb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OnSl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OrderedSetTransition; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.OrderedSetTransitionMulti; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps11; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps12; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps13; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlaps9; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlay1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlay2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlay3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlay4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlay5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Overlay6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ParseIdent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Path; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathAdd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathAddPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathContainPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathDivPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathInter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathLength; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathMulPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathNEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathNGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathNGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathNLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathNLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathNpoints; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PathSubPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Pclose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentRank1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentRank2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentRankFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileCont1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileCont2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileCont3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileCont4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileContFloat8Final; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileContFloat8MultiFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileContIntervalFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileContIntervalMultiFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileDisc1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileDisc2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileDiscFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PercentileDiscMultiFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryLock1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryLock2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryLockShared1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryLockShared2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryUnlock1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryUnlock2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryUnlockAll; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryUnlockShared1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryUnlockShared2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryXactLock1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryXactLock2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryXactLockShared1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgAdvisoryXactLockShared2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgBackendPid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgBlockingPids; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCancelBackend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCharToEncoding; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgClientEncoding; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCollationActualVersion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCollationFor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCollationIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgColumnCompression; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgColumnIsUpdatable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgColumnSize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgConfLoadTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgControlCheckpoint; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgControlInit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgControlRecovery; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgControlSystem; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgConversionIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCopyLogicalReplicationSlot1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCopyLogicalReplicationSlot2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCopyLogicalReplicationSlot3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCopyPhysicalReplicationSlot1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCopyPhysicalReplicationSlot2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCreateLogicalReplicationSlot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCreatePhysicalReplicationSlot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCurrentSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCurrentWalFlushLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCurrentWalInsertLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCurrentWalLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCurrentXactId; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgCurrentXactIdIfAssigned; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDatabaseCollationActualVersion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDatabaseSize1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDatabaseSize2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDdlCommandIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDdlCommandOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDdlCommandRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDdlCommandSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDependenciesIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDependenciesOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDependenciesRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDependenciesSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDescribeObject; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgDropReplicationSlot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgEncodingMaxLength; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgEncodingToChar; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgEventTriggerTableRewriteOid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgEventTriggerTableRewriteReason; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgExportSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgExtensionConfigDump; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgFilenodeRelation; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgFunctionIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetConstraintdef1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetConstraintdef2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetExpr1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetExpr2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetFunctionArgDefault; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetFunctionArguments; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetFunctionIdentityArguments; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetFunctionResult; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetFunctionSqlbody; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetFunctiondef; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetIndexdef1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetIndexdef2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetObjectAddress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetPartitionConstraintdef; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetPartkeydef; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetReplicaIdentityIndex; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetRuledef1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetRuledef2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetSerialSequence; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetStatisticsobjdef; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetStatisticsobjdefColumns; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetStatisticsobjdefExpressions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetTriggerdef1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetTriggerdef2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetUserbyid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetViewdef1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetViewdef2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetViewdef3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetViewdef4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetViewdef5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgGetWalReplayPauseState; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgHasRole1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgHasRole2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgHasRole3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgHasRole4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgHasRole5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgHasRole6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIdentifyObject; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIdentifyObjectAsAddress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgImportSystemCollations; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIndexColumnHasProperty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIndexHasProperty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIndexamHasProperty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIndexamProgressPhasename; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIndexesSize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIsInRecovery; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIsOtherTempSchema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIsWalReplayPaused; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgIsolationTestSessionIsBlocked; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgJitAvailable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLastCommittedXact; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLastWalReceiveLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLastWalReplayLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLastXactReplayTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLogicalEmitMessage1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLogicalEmitMessage2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnMi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnMii; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnPli; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgLsnSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgMcvListIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgMcvListOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgMcvListRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgMcvListSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgMyTempSchema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNdistinctIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNdistinctOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNdistinctRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNdistinctSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNextoid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNodeTreeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNodeTreeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNodeTreeRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNodeTreeSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNotificationQueueUsage; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgNotify; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgOpclassIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgOperatorIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgOpfamilyIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgPartitionRoot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgPostmasterStartTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgReadFileOld; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRelationFilenode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRelationFilepath; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRelationIsPublishable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRelationIsUpdatable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRelationSize1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRelationSize2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgReplicationSlotAdvance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgRotateLogfileOld; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSafeSnapshotBlockingPids; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSequenceLastValue; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSequenceParameters; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSettingsGetFlags; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSizeBytes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSizePretty1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSizePretty2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSleep; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSleepFor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSleepUntil; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSnapshotIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSnapshotOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSnapshotRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSnapshotSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSnapshotXmax; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgSnapshotXmin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatClearSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatForceNextFlush; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetAnalyzeCount; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetArchiver; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetAutoanalyzeCount; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetAutovacuumCount; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendActivity; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendActivityStart; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendClientAddr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendClientPort; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendDbid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendPid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendStart; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendUserid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendWaitEvent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendWaitEventType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBackendXactStart; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBgwriterBufWrittenCheckpoints; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBgwriterBufWrittenClean; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBgwriterMaxwrittenClean; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBgwriterRequestedCheckpoints; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBgwriterStatResetTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBgwriterTimedCheckpoints; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBlocksFetched; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBlocksHit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBufAlloc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBufFsyncBackend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetBufWrittenBackend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetCheckpointSyncTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetCheckpointWriteTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbActiveTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbBlkReadTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbBlkWriteTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbBlocksFetched; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbBlocksHit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbChecksumFailures; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbChecksumLastFailure; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbConflictAll; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbConflictBufferpin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbConflictLock; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbConflictSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbConflictStartupDeadlock; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbConflictTablespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbDeadlocks; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbIdleInTransactionTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbNumbackends; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbSessionTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbSessions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbSessionsAbandoned; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbSessionsFatal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbSessionsKilled; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbStatResetTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTempBytes; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTempFiles; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTuplesDeleted; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTuplesFetched; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTuplesInserted; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTuplesReturned; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbTuplesUpdated; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbXactCommit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDbXactRollback; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetDeadTuples; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetFunctionCalls; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetFunctionSelfTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetFunctionTotalTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetInsSinceVacuum; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetLastAnalyzeTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetLastAutoanalyzeTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetLastAutovacuumTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetLastVacuumTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetLiveTuples; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetModSinceAnalyze; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetNumscans; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetReplicationSlot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetSnapshotTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetSubscriptionStats; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetTuplesDeleted; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetTuplesFetched; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetTuplesHotUpdated; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetTuplesInserted; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetTuplesReturned; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetTuplesUpdated; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetVacuumCount; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetWal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetWalReceiver; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactBlocksFetched; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactBlocksHit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactFunctionCalls; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactFunctionSelfTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactFunctionTotalTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactNumscans; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactTuplesDeleted; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactTuplesFetched; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactTuplesHotUpdated; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactTuplesInserted; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactTuplesReturned; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatGetXactTuplesUpdated; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStatisticsObjIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgStopMakingPinnedObjects; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTableIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTableSize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTablespaceLocation; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTablespaceSize1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTablespaceSize2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTerminateBackend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTotalRelationSize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTriggerDepth; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryLock1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryLock2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryLockShared1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryLockShared2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryXactLock1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryXactLock2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryXactLockShared1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTryAdvisoryXactLockShared2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTsConfigIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTsDictIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTsParserIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTsTemplateIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTypeIsVisible; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgTypeof; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgVisibleInSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgWalLsnDiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgWalfileName; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgWalfileNameOffset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgXactCommitTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgXactCommitTimestampOrigin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgXactStatus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgproBuild; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgproEdition; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PgproVersion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PhrasetoTsquery1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PhrasetoTsquery2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Pi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PlaintoTsquery1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PlaintoTsquery2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PlpgsqlCallHandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PlpgsqlInlineHandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PlpgsqlValidator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Point1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Point2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Point3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Point4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Point5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointAbove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointAdd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointBelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointDiv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointHoriz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointLeft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointMul; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointRight; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointSub; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PointVert; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyAbove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyBelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyCenter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyContain; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyContainPt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyContained; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyDistance; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyLeft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyNpoints; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyOverabove; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyOverbelow; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyOverlap; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyOverleft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyOverright; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolyRight; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolySame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PolySend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Polygon1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Polygon2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Polygon3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Polygon4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Popen; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Position1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Position2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Position3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Positionjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Positionsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PostgresqlFdwValidator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Pow1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Pow2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Power1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Power2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Prefixjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Prefixsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PrsdEnd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PrsdHeadline; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PrsdLextype; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PrsdNexttoken; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PrsdStart; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PtContainedCircle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.PtContainedPoly; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QueryToXml; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QueryToXmlAndXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QueryToXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Querytree; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QuoteIdent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QuoteLiteral1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QuoteLiteral2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QuoteNullable1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.QuoteNullable2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Radians; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Radius; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Random; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAdjacent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAdjacentMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAfter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAfterMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAgg1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAgg2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeBefore; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeBeforeMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeContainedBy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeContainedByMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeContains; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeContainsElem; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeContainsMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGistConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGistPenalty; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGistPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGistSame; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGistUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeIntersect; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeIntersectAgg1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeIntersectAgg2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeIntersectAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeMerge1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeMerge2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeMinus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOverlaps; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOverlapsMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOverleft; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOverleftMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOverright; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeOverrightMultirange; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeTypanalyze; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RangeUnion; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rangesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rank1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rank2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RankFinal; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RawArraySubscriptHandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordImageEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordImageGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordImageGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordImageLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordImageLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordImageNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RecordSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regclass; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regclassin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regclassout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regclassrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regclasssend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regcollationin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regcollationout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regcollationrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regcollationsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regconfigin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regconfigout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regconfigrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regconfigsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regdictionaryin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regdictionaryout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regdictionaryrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regdictionarysend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regexeqjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regexeqsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regexnejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regexnesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpCount1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpCount2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpCount3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpInstr1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpInstr2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpInstr3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpInstr4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpInstr5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpInstr6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpLike1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpLike2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpMatch1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpMatch2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpReplace1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpReplace2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpReplace3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpReplace4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpReplace5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSplitToArray1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSplitToArray2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSubstr1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSubstr2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSubstr3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSubstr4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegexpSubstr5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regnamespacein; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regnamespaceout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regnamespacerecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regnamespacesend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperatorin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperatorout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperatorrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperatorsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regoperrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regopersend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocedurein; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocedureout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocedurerecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regproceduresend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprocsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprofilein; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprofileout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprofilerecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regprofilesend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrAvgx; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrAvgy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrCount; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrIntercept; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrR2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrSlope; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrSxx; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrSxy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RegrSyy; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regrolein; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regroleout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regrolerecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regrolesend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regtypein; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regtypeout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regtyperecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Regtypesend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Repeat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Replace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Reverse; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Right; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Round1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Round2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Round3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RowNumber; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RowSecurityActive1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RowSecurityActive2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RowToJson1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.RowToJson2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rpad1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rpad2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rtrim1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rtrim2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Rtrim3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SatisfiesHashPartition; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalargejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalargesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalargtjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalargtsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalarlejoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalarlesel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalarltjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scalarltsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Scale; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SchemaToXml; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SchemaToXmlAndXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SchemaToXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SessionUser; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SetBit1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SetBit2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SetByte; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SetConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SetMasklen1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SetMasklen2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Setseed; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Setval1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Setval2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Setweight1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Setweight2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sha224; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sha256; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sha384; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sha512; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ShellIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ShellOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ShiftJis_2004ToEucJis_2004; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ShiftJis_2004ToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ShobjDescription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sign1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sign2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SimilarEscape; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SimilarToEscape1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SimilarToEscape2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sind; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sinh; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SjisToEucJp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SjisToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SjisToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Slope; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgBboxQuadConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgBoxQuadChoose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgBoxQuadConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgBoxQuadInnerConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgBoxQuadLeafConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgBoxQuadPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgKdChoose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgKdConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgKdInnerConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgKdPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgPolyQuadCompress; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgQuadChoose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgQuadConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgQuadInnerConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgQuadLeafConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgQuadPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgRangeQuadChoose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgRangeQuadConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgRangeQuadInnerConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgRangeQuadLeafConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgRangeQuadPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgTextChoose; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgTextConfig; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgTextInnerConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgTextLeafConsistent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SpgTextPicksplit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Spghandler; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.SplitPart; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sqrt1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sqrt2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StartsWith; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StatementTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Stddev1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Stddev2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Stddev3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Stddev4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Stddev5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Stddev6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevPop1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevPop2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevPop3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevPop4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevPop5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevPop6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevSamp1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevSamp2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevSamp3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevSamp4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevSamp5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StddevSamp6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StringAgg1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StringAgg2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StringAggFinalfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StringAggTransfn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StringToArray1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.StringToArray2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Strip; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Strpos; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substr1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substr2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substr3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substr4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Substring8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Sum8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.System; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TableAmHandlerIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TableAmHandlerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TableToXml; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TableToXmlAndXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TableToXmlschema; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tan; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tand; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tanh; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Text1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Text2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Text3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Text4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Text5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Text6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextPatternGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextPatternGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextPatternLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextPatternLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextStartsWithSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textanycat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textcat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Texteq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Texteqname; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textgename; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textgtname; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Texticlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TexticlikeSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Texticnlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Texticregexeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TexticregexeqSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Texticregexne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textlen; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textlename; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextlikeSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textltname; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textnename; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textnlike; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textregexeq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TextregexeqSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textregexne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Textsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ThesaurusInit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ThesaurusLexize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tideq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidgt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidlarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tidsmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Time1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Time2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Time3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Time4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Time5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeMiInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeMiTime; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimePlInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimeSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimedatePl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timeofday; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamp1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamp2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamp3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamp4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampCmpDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampCmpTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampEqDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampEqTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampGeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampGeTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampGtDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampGtTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLeTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLtDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampLtTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampMi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampMiInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampNeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampNeTimestamptz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampPlInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestampSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptz1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptz2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptz3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptz4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptz5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzCmpDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzCmpTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzEqDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzEqTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzGeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzGeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzGtDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzGtTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLtDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzLtTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzMi; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzMiInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzNeDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzNeTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzPlInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimestamptzSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptztypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timestamptztypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetz1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetz2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetz3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzLarger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzMiInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzPlInterval; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzSmaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TimetzdatePl; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetztypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timetztypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timezone1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timezone2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timezone3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timezone4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timezone5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Timezone6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToAscii1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToAscii2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToAscii3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToChar8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToDate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToHex1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToHex2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToJson; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToJsonb; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToNumber; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegclass; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegcollation; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegnamespace; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegoper; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegoperator; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegproc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegprocedure; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegprofile; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegrole; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToRegtype; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTimestamp1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTimestamp2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsquery1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsquery2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsvector1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsvector2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsvector3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsvector4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsvector5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.ToTsvector6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TransactionTimestamp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Translate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TriggerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TrimArray; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TrimScale; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Trunc1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Trunc2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Trunc3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Trunc4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Trunc5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsDelete1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsDelete2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsFilter; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline10; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline11; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline12; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline7; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsHeadline9; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsLexize; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsMatchQv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsMatchTq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsMatchTt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsMatchVq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRank1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRank2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRank3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRank4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRankCd1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRankCd2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRankCd3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRankCd4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRewrite1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsRewrite2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsTypanalyze; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsmHandlerIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsmHandlerOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsmatchjoinsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsmatchsel; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsmultirange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsmultirange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsmultirange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqMcontained; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqMcontains; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryAnd; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryNot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryOr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryPhrase1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsqueryPhrase2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsqueryin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsqueryout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsqueryrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsquerysend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsrange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsrange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsrangeSubdiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tstzmultirange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tstzmultirange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tstzmultirange3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tstzrange1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tstzrange2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TstzrangeSubdiff; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorConcat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TsvectorToArray; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsvectorin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsvectorout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsvectorrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Tsvectorsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidCurrent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidCurrentIfAssigned; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidCurrentSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidSnapshotIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidSnapshotOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidSnapshotRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidSnapshotSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidSnapshotXmax; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidSnapshotXmin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidStatus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.TxidVisibleInSnapshot; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UhcToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Unistr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Unknownin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Unknownout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Unknownrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Unknownsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UpgradeCoveringNbtree; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Upper1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Upper2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Upper3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UpperInc1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UpperInc2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UpperInf1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UpperInf2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToBig5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToEucCn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToEucJis_2004; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToEucJp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToEucKr; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToEucTw; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToGb18030; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToGbk; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToIso8859; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToIso8859_1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToJohab; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToKoi8r; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToKoi8u; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToShiftJis_2004; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToSjis; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToUhc; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Utf8ToWin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidCmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidEq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidGe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidGt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidHash; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidHashExtended; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidLe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidLt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidNe; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.UuidSortsupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarPop1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarPop2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarPop3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarPop4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarPop5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarPop6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarSamp1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarSamp2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarSamp3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarSamp4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarSamp5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarSamp6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbit; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarbitIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarbitOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarbitRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarbitSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarbitSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbitcmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbiteq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbitge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbitgt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbitle; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbitlt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbitne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbittypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varbittypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varchar1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varchar2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VarcharSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varcharin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varcharout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varcharrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varcharsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varchartypmodin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Varchartypmodout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Variance1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Variance2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Variance3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Variance4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Variance5; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Variance6; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Version; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VoidIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VoidOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VoidRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.VoidSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WebsearchToTsquery1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WebsearchToTsquery2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Width; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WidthBucket1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WidthBucket2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WidthBucket3; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win1250ToLatin2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win1250ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win1251ToIso; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win1251ToKoi8r; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win1251ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win1251ToWin866; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win866ToIso; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win866ToKoi8r; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win866ToMic; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Win866ToWin1251; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WinToUtf8; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WindowDenseRankSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WindowRankSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.WindowRowNumberSupport; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8Larger; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8Smaller; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8cmp; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8eq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8ge; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8gt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8in; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8le; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8lt; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8ne; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8out; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8recv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xid8send; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xideq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xideqint4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xidin; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xidneq; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xidneqint4; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xidout; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xidrecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xidsend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xml; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlIn; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlIsWellFormed; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlIsWellFormedContent; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlIsWellFormedDocument; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlOut; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlRecv; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XmlSend; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xmlagg; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xmlcomment; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xmlconcat2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xmlexists; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xmlvalidate; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xpath1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.Xpath2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XpathExists1; +import ervu_secret.ervu_secret.db_beans.pg_catalog.routines.XpathExists2; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Aclexplode; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSeries; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.GenerateSubscripts; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElements; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonArrayElementsText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEach; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonEachText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonObjectKeys; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonPopulateRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonToRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElements; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbArrayElementsText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEach; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbEachText; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbObjectKeys; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQuery; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPathQueryTz; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbPopulateRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.JsonbToRecordset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgAvailableExtensionVersions; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgCursor; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDdlCommands; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgEventTriggerDroppedObjects; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgExtensionUpdatePaths; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetCatalogForeignKeys; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetKeywords; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetMultixactMembers; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetPublicationTables; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetReplicationSlots; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgGetWalResourceManagers; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgListeningChannels; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLockStatus; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetBinaryChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotGetChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekBinaryChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgLogicalSlotPeekChanges; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgMcvListItems; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgOptionsToTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionAncestors; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPartitionTree; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedStatement; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgPreparedXact; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgShowAllSettings; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgSnapshotXip; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetActivity; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetBackendIdset; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetProgressInfo; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetRecoveryPrefetch; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSlru; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetSubscription; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgStatGetWalSenders; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTablespaceDatabases; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.PgTimezoneAbbrevs; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpMatches; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.RegexpSplitToTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.StringToTable; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsDebug; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsParse; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsStat; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TsTokenType; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.TxidSnapshotXip; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.Unnest; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.AclexplodeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.GenerateSeriesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.GenerateSubscriptsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonArrayElementsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonArrayElementsTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonEachRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonEachTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonObjectKeysRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonPopulateRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonToRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbArrayElementsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbArrayElementsTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbEachRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbEachTextRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbObjectKeysRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbPathQueryRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbPathQueryTzRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbPopulateRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.JsonbToRecordsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgAvailableExtensionVersionsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgCursorRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgEventTriggerDdlCommandsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgEventTriggerDroppedObjectsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgExtensionUpdatePathsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetCatalogForeignKeysRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetKeywordsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetMultixactMembersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetPublicationTablesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetReplicationSlotsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgGetWalResourceManagersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgListeningChannelsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLockStatusRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotGetBinaryChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotGetChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotPeekBinaryChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgLogicalSlotPeekChangesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgMcvListItemsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgOptionsToTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPartitionAncestorsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPartitionTreeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPreparedStatementRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgPreparedXactRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgShowAllSettingsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgSnapshotXipRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetActivityRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetBackendIdsetRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetProgressInfoRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetRecoveryPrefetchRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetSlruRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetSubscriptionRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgStatGetWalSendersRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTablespaceDatabasesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.PgTimezoneAbbrevsRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.RegexpMatchesRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.RegexpSplitToTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.StringToTableRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsDebugRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsParseRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsStatRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TsTokenTypeRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.TxidSnapshotXipRecord; +import ervu_secret.ervu_secret.db_beans.pg_catalog.tables.records.UnnestRecord; + +import java.math.BigDecimal; +import java.sql.Date; +import java.sql.Time; +import java.sql.Timestamp; +import java.time.OffsetTime; +import java.util.UUID; + +import org.jooq.AggregateFunction; +import org.jooq.Configuration; +import org.jooq.Field; +import org.jooq.JSON; +import org.jooq.JSONB; +import org.jooq.Record; +import org.jooq.Result; +import org.jooq.XML; +import org.jooq.types.YearToSecond; + + +/** + * Convenience access to all stored procedures and functions in pg_catalog. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Routines { + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String abbrev1( + Configuration configuration + , Object __1 + ) { + Abbrev1 f = new Abbrev1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field abbrev1( + Object __1 + ) { + Abbrev1 f = new Abbrev1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field abbrev1( + Field __1 + ) { + Abbrev1 f = new Abbrev1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String abbrev2( + Configuration configuration + , Object __1 + ) { + Abbrev2 f = new Abbrev2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field abbrev2( + Object __1 + ) { + Abbrev2 f = new Abbrev2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field abbrev2( + Field __1 + ) { + Abbrev2 f = new Abbrev2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.abs + */ + public static Float abs1( + Configuration configuration + , Float __1 + ) { + Abs1 f = new Abs1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs1( + Float __1 + ) { + Abs1 f = new Abs1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs1( + Field __1 + ) { + Abs1 f = new Abs1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.abs + */ + public static Double abs2( + Configuration configuration + , Double __1 + ) { + Abs2 f = new Abs2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs2( + Double __1 + ) { + Abs2 f = new Abs2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs2( + Field __1 + ) { + Abs2 f = new Abs2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.abs + */ + public static Long abs3( + Configuration configuration + , Long __1 + ) { + Abs3 f = new Abs3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs3( + Long __1 + ) { + Abs3 f = new Abs3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs3( + Field __1 + ) { + Abs3 f = new Abs3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.abs + */ + public static Integer abs4( + Configuration configuration + , Integer __1 + ) { + Abs4 f = new Abs4(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs4( + Integer __1 + ) { + Abs4 f = new Abs4(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs4( + Field __1 + ) { + Abs4 f = new Abs4(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.abs + */ + public static Short abs5( + Configuration configuration + , Short __1 + ) { + Abs5 f = new Abs5(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs5( + Short __1 + ) { + Abs5 f = new Abs5(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs5( + Field __1 + ) { + Abs5 f = new Abs5(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.abs + */ + public static BigDecimal abs6( + Configuration configuration + , BigDecimal __1 + ) { + Abs6 f = new Abs6(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs6( + BigDecimal __1 + ) { + Abs6 f = new Abs6(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.abs as a field. + */ + public static Field abs6( + Field __1 + ) { + Abs6 f = new Abs6(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.aclcontains + */ + public static Boolean aclcontains( + Configuration configuration + , String[] __1 + , String __2 + ) { + Aclcontains f = new Aclcontains(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.aclcontains as a field. + */ + public static Field aclcontains( + String[] __1 + , String __2 + ) { + Aclcontains f = new Aclcontains(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.aclcontains as a field. + */ + public static Field aclcontains( + Field __1 + , Field __2 + ) { + Aclcontains f = new Aclcontains(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.acldefault + */ + public static String[] acldefault( + Configuration configuration + , String __1 + , Long __2 + ) { + Acldefault f = new Acldefault(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.acldefault as a field. + */ + public static Field acldefault( + String __1 + , Long __2 + ) { + Acldefault f = new Acldefault(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.acldefault as a field. + */ + public static Field acldefault( + Field __1 + , Field __2 + ) { + Acldefault f = new Acldefault(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.aclinsert + */ + public static String[] aclinsert( + Configuration configuration + , String[] __1 + , String __2 + ) { + Aclinsert f = new Aclinsert(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.aclinsert as a field. + */ + public static Field aclinsert( + String[] __1 + , String __2 + ) { + Aclinsert f = new Aclinsert(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.aclinsert as a field. + */ + public static Field aclinsert( + Field __1 + , Field __2 + ) { + Aclinsert f = new Aclinsert(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.aclitemeq + */ + public static Boolean aclitemeq( + Configuration configuration + , String __1 + , String __2 + ) { + Aclitemeq f = new Aclitemeq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.aclitemeq as a field. + */ + public static Field aclitemeq( + String __1 + , String __2 + ) { + Aclitemeq f = new Aclitemeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.aclitemeq as a field. + */ + public static Field aclitemeq( + Field __1 + , Field __2 + ) { + Aclitemeq f = new Aclitemeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String aclitemin( + Configuration configuration + , Object __1 + ) { + Aclitemin f = new Aclitemin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field aclitemin( + Object __1 + ) { + Aclitemin f = new Aclitemin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field aclitemin( + Field __1 + ) { + Aclitemin f = new Aclitemin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object aclitemout( + Configuration configuration + , String __1 + ) { + Aclitemout f = new Aclitemout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field aclitemout( + String __1 + ) { + Aclitemout f = new Aclitemout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field aclitemout( + Field __1 + ) { + Aclitemout f = new Aclitemout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.aclremove + */ + public static String[] aclremove( + Configuration configuration + , String[] __1 + , String __2 + ) { + Aclremove f = new Aclremove(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.aclremove as a field. + */ + public static Field aclremove( + String[] __1 + , String __2 + ) { + Aclremove f = new Aclremove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.aclremove as a field. + */ + public static Field aclremove( + Field __1 + , Field __2 + ) { + Aclremove f = new Aclremove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.acos + */ + public static Double acos( + Configuration configuration + , Double __1 + ) { + Acos f = new Acos(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.acos as a field. + */ + public static Field acos( + Double __1 + ) { + Acos f = new Acos(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.acos as a field. + */ + public static Field acos( + Field __1 + ) { + Acos f = new Acos(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.acosd + */ + public static Double acosd( + Configuration configuration + , Double __1 + ) { + Acosd f = new Acosd(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.acosd as a field. + */ + public static Field acosd( + Double __1 + ) { + Acosd f = new Acosd(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.acosd as a field. + */ + public static Field acosd( + Field __1 + ) { + Acosd f = new Acosd(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.acosh + */ + public static Double acosh( + Configuration configuration + , Double __1 + ) { + Acosh f = new Acosh(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.acosh as a field. + */ + public static Field acosh( + Double __1 + ) { + Acosh f = new Acosh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.acosh as a field. + */ + public static Field acosh( + Field __1 + ) { + Acosh f = new Acosh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.age + */ + public static Integer age1( + Configuration configuration + , Long __1 + ) { + Age1 f = new Age1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age1( + Long __1 + ) { + Age1 f = new Age1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age1( + Field __1 + ) { + Age1 f = new Age1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.age + */ + public static YearToSecond age2( + Configuration configuration + , Timestamp __1 + , Timestamp __2 + ) { + Age2 f = new Age2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age2( + Timestamp __1 + , Timestamp __2 + ) { + Age2 f = new Age2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age2( + Field __1 + , Field __2 + ) { + Age2 f = new Age2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.age + */ + public static YearToSecond age3( + Configuration configuration + , Timestamp __1 + ) { + Age3 f = new Age3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age3( + Timestamp __1 + ) { + Age3 f = new Age3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age3( + Field __1 + ) { + Age3 f = new Age3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.age + */ + public static YearToSecond age4( + Configuration configuration + , Timestamp __1 + , Timestamp __2 + ) { + Age4 f = new Age4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age4( + Timestamp __1 + , Timestamp __2 + ) { + Age4 f = new Age4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age4( + Field __1 + , Field __2 + ) { + Age4 f = new Age4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.age + */ + public static YearToSecond age5( + Configuration configuration + , Timestamp __1 + ) { + Age5 f = new Age5(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age5( + Timestamp __1 + ) { + Age5 f = new Age5(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.age as a field. + */ + public static Field age5( + Field __1 + ) { + Age5 f = new Age5(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.amvalidate + */ + public static Boolean amvalidate( + Configuration configuration + , Long __1 + ) { + Amvalidate f = new Amvalidate(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.amvalidate as a field. + */ + public static Field amvalidate( + Long __1 + ) { + Amvalidate f = new Amvalidate(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.amvalidate as a field. + */ + public static Field amvalidate( + Field __1 + ) { + Amvalidate f = new Amvalidate(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyIn( + Configuration configuration + , Object __1 + ) { + AnyIn f = new AnyIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyIn( + Object __1 + ) { + AnyIn f = new AnyIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyIn( + Field __1 + ) { + AnyIn f = new AnyIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyOut( + Configuration configuration + , Object __1 + ) { + AnyOut f = new AnyOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyOut( + Object __1 + ) { + AnyOut f = new AnyOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyOut( + Field __1 + ) { + AnyOut f = new AnyOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] anyarrayIn( + Configuration configuration + , Object __1 + ) { + AnyarrayIn f = new AnyarrayIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anyarrayIn( + Object __1 + ) { + AnyarrayIn f = new AnyarrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anyarrayIn( + Field __1 + ) { + AnyarrayIn f = new AnyarrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyarrayOut( + Configuration configuration + , Object[] __1 + ) { + AnyarrayOut f = new AnyarrayOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyarrayOut( + Object[] __1 + ) { + AnyarrayOut f = new AnyarrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyarrayOut( + Field __1 + ) { + AnyarrayOut f = new AnyarrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] anyarrayRecv( + Configuration configuration + , Object __1 + ) { + AnyarrayRecv f = new AnyarrayRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anyarrayRecv( + Object __1 + ) { + AnyarrayRecv f = new AnyarrayRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anyarrayRecv( + Field __1 + ) { + AnyarrayRecv f = new AnyarrayRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.anyarray_send + */ + public static byte[] anyarraySend( + Configuration configuration + , Object[] __1 + ) { + AnyarraySend f = new AnyarraySend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.anyarray_send as a field. + */ + public static Field anyarraySend( + Object[] __1 + ) { + AnyarraySend f = new AnyarraySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.anyarray_send as a field. + */ + public static Field anyarraySend( + Field __1 + ) { + AnyarraySend f = new AnyarraySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatibleIn( + Configuration configuration + , Object __1 + ) { + AnycompatibleIn f = new AnycompatibleIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatibleIn( + Object __1 + ) { + AnycompatibleIn f = new AnycompatibleIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatibleIn( + Field __1 + ) { + AnycompatibleIn f = new AnycompatibleIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatibleOut( + Configuration configuration + , Object __1 + ) { + AnycompatibleOut f = new AnycompatibleOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatibleOut( + Object __1 + ) { + AnycompatibleOut f = new AnycompatibleOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatibleOut( + Field __1 + ) { + AnycompatibleOut f = new AnycompatibleOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblearrayIn( + Configuration configuration + , Object __1 + ) { + AnycompatiblearrayIn f = new AnycompatiblearrayIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblearrayIn( + Object __1 + ) { + AnycompatiblearrayIn f = new AnycompatiblearrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblearrayIn( + Field __1 + ) { + AnycompatiblearrayIn f = new AnycompatiblearrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblearrayOut( + Configuration configuration + , Object __1 + ) { + AnycompatiblearrayOut f = new AnycompatiblearrayOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblearrayOut( + Object __1 + ) { + AnycompatiblearrayOut f = new AnycompatiblearrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblearrayOut( + Field __1 + ) { + AnycompatiblearrayOut f = new AnycompatiblearrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblearrayRecv( + Configuration configuration + , Object __1 + ) { + AnycompatiblearrayRecv f = new AnycompatiblearrayRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblearrayRecv( + Object __1 + ) { + AnycompatiblearrayRecv f = new AnycompatiblearrayRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblearrayRecv( + Field __1 + ) { + AnycompatiblearrayRecv f = new AnycompatiblearrayRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] anycompatiblearraySend( + Configuration configuration + , Object __1 + ) { + AnycompatiblearraySend f = new AnycompatiblearraySend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anycompatiblearraySend( + Object __1 + ) { + AnycompatiblearraySend f = new AnycompatiblearraySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anycompatiblearraySend( + Field __1 + ) { + AnycompatiblearraySend f = new AnycompatiblearraySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblemultirangeIn( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + AnycompatiblemultirangeIn f = new AnycompatiblemultirangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblemultirangeIn( + Object __1 + , Long __2 + , Integer __3 + ) { + AnycompatiblemultirangeIn f = new AnycompatiblemultirangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblemultirangeIn( + Field __1 + , Field __2 + , Field __3 + ) { + AnycompatiblemultirangeIn f = new AnycompatiblemultirangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblemultirangeOut( + Configuration configuration + , Object __1 + ) { + AnycompatiblemultirangeOut f = new AnycompatiblemultirangeOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblemultirangeOut( + Object __1 + ) { + AnycompatiblemultirangeOut f = new AnycompatiblemultirangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblemultirangeOut( + Field __1 + ) { + AnycompatiblemultirangeOut f = new AnycompatiblemultirangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblenonarrayIn( + Configuration configuration + , Object __1 + ) { + AnycompatiblenonarrayIn f = new AnycompatiblenonarrayIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblenonarrayIn( + Object __1 + ) { + AnycompatiblenonarrayIn f = new AnycompatiblenonarrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblenonarrayIn( + Field __1 + ) { + AnycompatiblenonarrayIn f = new AnycompatiblenonarrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblenonarrayOut( + Configuration configuration + , Object __1 + ) { + AnycompatiblenonarrayOut f = new AnycompatiblenonarrayOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblenonarrayOut( + Object __1 + ) { + AnycompatiblenonarrayOut f = new AnycompatiblenonarrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblenonarrayOut( + Field __1 + ) { + AnycompatiblenonarrayOut f = new AnycompatiblenonarrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblerangeIn( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + AnycompatiblerangeIn f = new AnycompatiblerangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblerangeIn( + Object __1 + , Long __2 + , Integer __3 + ) { + AnycompatiblerangeIn f = new AnycompatiblerangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblerangeIn( + Field __1 + , Field __2 + , Field __3 + ) { + AnycompatiblerangeIn f = new AnycompatiblerangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anycompatiblerangeOut( + Configuration configuration + , Object __1 + ) { + AnycompatiblerangeOut f = new AnycompatiblerangeOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblerangeOut( + Object __1 + ) { + AnycompatiblerangeOut f = new AnycompatiblerangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anycompatiblerangeOut( + Field __1 + ) { + AnycompatiblerangeOut f = new AnycompatiblerangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyelementIn( + Configuration configuration + , Object __1 + ) { + AnyelementIn f = new AnyelementIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyelementIn( + Object __1 + ) { + AnyelementIn f = new AnyelementIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyelementIn( + Field __1 + ) { + AnyelementIn f = new AnyelementIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyelementOut( + Configuration configuration + , Object __1 + ) { + AnyelementOut f = new AnyelementOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyelementOut( + Object __1 + ) { + AnyelementOut f = new AnyelementOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyelementOut( + Field __1 + ) { + AnyelementOut f = new AnyelementOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyenumIn( + Configuration configuration + , Object __1 + ) { + AnyenumIn f = new AnyenumIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyenumIn( + Object __1 + ) { + AnyenumIn f = new AnyenumIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyenumIn( + Field __1 + ) { + AnyenumIn f = new AnyenumIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyenumOut( + Configuration configuration + , Object __1 + ) { + AnyenumOut f = new AnyenumOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyenumOut( + Object __1 + ) { + AnyenumOut f = new AnyenumOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyenumOut( + Field __1 + ) { + AnyenumOut f = new AnyenumOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anymultirangeIn( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + AnymultirangeIn f = new AnymultirangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anymultirangeIn( + Object __1 + , Long __2 + , Integer __3 + ) { + AnymultirangeIn f = new AnymultirangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anymultirangeIn( + Field __1 + , Field __2 + , Field __3 + ) { + AnymultirangeIn f = new AnymultirangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anymultirangeOut( + Configuration configuration + , Object __1 + ) { + AnymultirangeOut f = new AnymultirangeOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anymultirangeOut( + Object __1 + ) { + AnymultirangeOut f = new AnymultirangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anymultirangeOut( + Field __1 + ) { + AnymultirangeOut f = new AnymultirangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anynonarrayIn( + Configuration configuration + , Object __1 + ) { + AnynonarrayIn f = new AnynonarrayIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anynonarrayIn( + Object __1 + ) { + AnynonarrayIn f = new AnynonarrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anynonarrayIn( + Field __1 + ) { + AnynonarrayIn f = new AnynonarrayIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anynonarrayOut( + Configuration configuration + , Object __1 + ) { + AnynonarrayOut f = new AnynonarrayOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anynonarrayOut( + Object __1 + ) { + AnynonarrayOut f = new AnynonarrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anynonarrayOut( + Field __1 + ) { + AnynonarrayOut f = new AnynonarrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyrangeIn( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + AnyrangeIn f = new AnyrangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyrangeIn( + Object __1 + , Long __2 + , Integer __3 + ) { + AnyrangeIn f = new AnyrangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyrangeIn( + Field __1 + , Field __2 + , Field __3 + ) { + AnyrangeIn f = new AnyrangeIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object anyrangeOut( + Configuration configuration + , Object __1 + ) { + AnyrangeOut f = new AnyrangeOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyrangeOut( + Object __1 + ) { + AnyrangeOut f = new AnyrangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field anyrangeOut( + Field __1 + ) { + AnyrangeOut f = new AnyrangeOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String anytextcat( + Configuration configuration + , Object __1 + , String __2 + ) { + Anytextcat f = new Anytextcat(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anytextcat( + Object __1 + , String __2 + ) { + Anytextcat f = new Anytextcat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field anytextcat( + Field __1 + , Field __2 + ) { + Anytextcat f = new Anytextcat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double area1( + Configuration configuration + , Object __1 + ) { + Area1 f = new Area1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field area1( + Object __1 + ) { + Area1 f = new Area1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field area1( + Field __1 + ) { + Area1 f = new Area1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double area2( + Configuration configuration + , Object __1 + ) { + Area2 f = new Area2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field area2( + Object __1 + ) { + Area2 f = new Area2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field area2( + Field __1 + ) { + Area2 f = new Area2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double area3( + Configuration configuration + , Object __1 + ) { + Area3 f = new Area3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field area3( + Object __1 + ) { + Area3 f = new Area3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field area3( + Field __1 + ) { + Area3 f = new Area3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double areajoinsel( + Configuration configuration + , Object __1 + , Long __2 + , Object __3 + , Short __4 + , Object __5 + ) { + Areajoinsel f = new Areajoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field areajoinsel( + Object __1 + , Long __2 + , Object __3 + , Short __4 + , Object __5 + ) { + Areajoinsel f = new Areajoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field areajoinsel( + Field __1 + , Field __2 + , Field __3 + , Field __4 + , Field __5 + ) { + Areajoinsel f = new Areajoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double areasel( + Configuration configuration + , Object __1 + , Long __2 + , Object __3 + , Integer __4 + ) { + Areasel f = new Areasel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field areasel( + Object __1 + , Long __2 + , Object __3 + , Integer __4 + ) { + Areasel f = new Areasel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field areasel( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + Areasel f = new Areasel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static AggregateFunction arrayAgg1( + Object __1 + ) { + ArrayAgg1 f = new ArrayAgg1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static AggregateFunction arrayAgg1( + Field __1 + ) { + ArrayAgg1 f = new ArrayAgg1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.array_agg as a field. + */ + public static AggregateFunction arrayAgg2( + Object[] __1 + ) { + ArrayAgg2 f = new ArrayAgg2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.array_agg as a field. + */ + public static AggregateFunction arrayAgg2( + Field __1 + ) { + ArrayAgg2 f = new ArrayAgg2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] arrayAggArrayFinalfn( + Configuration configuration + , Object __1 + , Object[] __2 + ) { + ArrayAggArrayFinalfn f = new ArrayAggArrayFinalfn(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayAggArrayFinalfn( + Object __1 + , Object[] __2 + ) { + ArrayAggArrayFinalfn f = new ArrayAggArrayFinalfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayAggArrayFinalfn( + Field __1 + , Field __2 + ) { + ArrayAggArrayFinalfn f = new ArrayAggArrayFinalfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayAggArrayTransfn( + Configuration configuration + , Object __1 + , Object[] __2 + ) { + ArrayAggArrayTransfn f = new ArrayAggArrayTransfn(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayAggArrayTransfn( + Object __1 + , Object[] __2 + ) { + ArrayAggArrayTransfn f = new ArrayAggArrayTransfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayAggArrayTransfn( + Field __1 + , Field __2 + ) { + ArrayAggArrayTransfn f = new ArrayAggArrayTransfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] arrayAggFinalfn( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayAggFinalfn f = new ArrayAggFinalfn(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayAggFinalfn( + Object __1 + , Object __2 + ) { + ArrayAggFinalfn f = new ArrayAggFinalfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayAggFinalfn( + Field __1 + , Field __2 + ) { + ArrayAggFinalfn f = new ArrayAggFinalfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayAggTransfn( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayAggTransfn f = new ArrayAggTransfn(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayAggTransfn( + Object __1 + , Object __2 + ) { + ArrayAggTransfn f = new ArrayAggTransfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayAggTransfn( + Field __1 + , Field __2 + ) { + ArrayAggTransfn f = new ArrayAggTransfn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayAppend( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayAppend f = new ArrayAppend(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayAppend( + Object __1 + , Object __2 + ) { + ArrayAppend f = new ArrayAppend(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayAppend( + Field __1 + , Field __2 + ) { + ArrayAppend f = new ArrayAppend(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayCat( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayCat f = new ArrayCat(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayCat( + Object __1 + , Object __2 + ) { + ArrayCat f = new ArrayCat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayCat( + Field __1 + , Field __2 + ) { + ArrayCat f = new ArrayCat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_dims + */ + public static String arrayDims( + Configuration configuration + , Object[] __1 + ) { + ArrayDims f = new ArrayDims(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_dims as a field. + */ + public static Field arrayDims( + Object[] __1 + ) { + ArrayDims f = new ArrayDims(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.array_dims as a field. + */ + public static Field arrayDims( + Field __1 + ) { + ArrayDims f = new ArrayDims(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.array_eq + */ + public static Boolean arrayEq( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayEq f = new ArrayEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_eq as a field. + */ + public static Field arrayEq( + Object[] __1 + , Object[] __2 + ) { + ArrayEq f = new ArrayEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_eq as a field. + */ + public static Field arrayEq( + Field __1 + , Field __2 + ) { + ArrayEq f = new ArrayEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] arrayFill1( + Configuration configuration + , Object __1 + , Integer[] __2 + ) { + ArrayFill1 f = new ArrayFill1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayFill1( + Object __1 + , Integer[] __2 + ) { + ArrayFill1 f = new ArrayFill1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayFill1( + Field __1 + , Field __2 + ) { + ArrayFill1 f = new ArrayFill1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] arrayFill2( + Configuration configuration + , Object __1 + , Integer[] __2 + , Integer[] __3 + ) { + ArrayFill2 f = new ArrayFill2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayFill2( + Object __1 + , Integer[] __2 + , Integer[] __3 + ) { + ArrayFill2 f = new ArrayFill2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayFill2( + Field __1 + , Field __2 + , Field __3 + ) { + ArrayFill2 f = new ArrayFill2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.array_ge + */ + public static Boolean arrayGe( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayGe f = new ArrayGe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_ge as a field. + */ + public static Field arrayGe( + Object[] __1 + , Object[] __2 + ) { + ArrayGe f = new ArrayGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_ge as a field. + */ + public static Field arrayGe( + Field __1 + , Field __2 + ) { + ArrayGe f = new ArrayGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_gt + */ + public static Boolean arrayGt( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayGt f = new ArrayGt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_gt as a field. + */ + public static Field arrayGt( + Object[] __1 + , Object[] __2 + ) { + ArrayGt f = new ArrayGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_gt as a field. + */ + public static Field arrayGt( + Field __1 + , Field __2 + ) { + ArrayGt f = new ArrayGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] arrayIn( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + ArrayIn f = new ArrayIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayIn( + Object __1 + , Long __2 + , Integer __3 + ) { + ArrayIn f = new ArrayIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayIn( + Field __1 + , Field __2 + , Field __3 + ) { + ArrayIn f = new ArrayIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.array_larger + */ + public static Object[] arrayLarger( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayLarger f = new ArrayLarger(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_larger as a field. + */ + public static Field arrayLarger( + Object[] __1 + , Object[] __2 + ) { + ArrayLarger f = new ArrayLarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_larger as a field. + */ + public static Field arrayLarger( + Field __1 + , Field __2 + ) { + ArrayLarger f = new ArrayLarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_le + */ + public static Boolean arrayLe( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayLe f = new ArrayLe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_le as a field. + */ + public static Field arrayLe( + Object[] __1 + , Object[] __2 + ) { + ArrayLe f = new ArrayLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_le as a field. + */ + public static Field arrayLe( + Field __1 + , Field __2 + ) { + ArrayLe f = new ArrayLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_length + */ + public static Integer arrayLength( + Configuration configuration + , Object[] __1 + , Integer __2 + ) { + ArrayLength f = new ArrayLength(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_length as a field. + */ + public static Field arrayLength( + Object[] __1 + , Integer __2 + ) { + ArrayLength f = new ArrayLength(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_length as a field. + */ + public static Field arrayLength( + Field __1 + , Field __2 + ) { + ArrayLength f = new ArrayLength(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_lower + */ + public static Integer arrayLower( + Configuration configuration + , Object[] __1 + , Integer __2 + ) { + ArrayLower f = new ArrayLower(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_lower as a field. + */ + public static Field arrayLower( + Object[] __1 + , Integer __2 + ) { + ArrayLower f = new ArrayLower(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_lower as a field. + */ + public static Field arrayLower( + Field __1 + , Field __2 + ) { + ArrayLower f = new ArrayLower(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_lt + */ + public static Boolean arrayLt( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayLt f = new ArrayLt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_lt as a field. + */ + public static Field arrayLt( + Object[] __1 + , Object[] __2 + ) { + ArrayLt f = new ArrayLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_lt as a field. + */ + public static Field arrayLt( + Field __1 + , Field __2 + ) { + ArrayLt f = new ArrayLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_ndims + */ + public static Integer arrayNdims( + Configuration configuration + , Object[] __1 + ) { + ArrayNdims f = new ArrayNdims(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_ndims as a field. + */ + public static Field arrayNdims( + Object[] __1 + ) { + ArrayNdims f = new ArrayNdims(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.array_ndims as a field. + */ + public static Field arrayNdims( + Field __1 + ) { + ArrayNdims f = new ArrayNdims(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.array_ne + */ + public static Boolean arrayNe( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArrayNe f = new ArrayNe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_ne as a field. + */ + public static Field arrayNe( + Object[] __1 + , Object[] __2 + ) { + ArrayNe f = new ArrayNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_ne as a field. + */ + public static Field arrayNe( + Field __1 + , Field __2 + ) { + ArrayNe f = new ArrayNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayOut( + Configuration configuration + , Object[] __1 + ) { + ArrayOut f = new ArrayOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayOut( + Object[] __1 + ) { + ArrayOut f = new ArrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayOut( + Field __1 + ) { + ArrayOut f = new ArrayOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer arrayPosition1( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayPosition1 f = new ArrayPosition1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayPosition1( + Object __1 + , Object __2 + ) { + ArrayPosition1 f = new ArrayPosition1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayPosition1( + Field __1 + , Field __2 + ) { + ArrayPosition1 f = new ArrayPosition1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer arrayPosition2( + Configuration configuration + , Object __1 + , Object __2 + , Integer __3 + ) { + ArrayPosition2 f = new ArrayPosition2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayPosition2( + Object __1 + , Object __2 + , Integer __3 + ) { + ArrayPosition2 f = new ArrayPosition2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayPosition2( + Field __1 + , Field __2 + , Field __3 + ) { + ArrayPosition2 f = new ArrayPosition2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer[] arrayPositions( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayPositions f = new ArrayPositions(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayPositions( + Object __1 + , Object __2 + ) { + ArrayPositions f = new ArrayPositions(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayPositions( + Field __1 + , Field __2 + ) { + ArrayPositions f = new ArrayPositions(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayPrepend( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayPrepend f = new ArrayPrepend(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayPrepend( + Object __1 + , Object __2 + ) { + ArrayPrepend f = new ArrayPrepend(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayPrepend( + Field __1 + , Field __2 + ) { + ArrayPrepend f = new ArrayPrepend(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Object[] arrayRecv( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + ArrayRecv f = new ArrayRecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayRecv( + Object __1 + , Long __2 + , Integer __3 + ) { + ArrayRecv f = new ArrayRecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayRecv( + Field __1 + , Field __2 + , Field __3 + ) { + ArrayRecv f = new ArrayRecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayRemove( + Configuration configuration + , Object __1 + , Object __2 + ) { + ArrayRemove f = new ArrayRemove(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayRemove( + Object __1 + , Object __2 + ) { + ArrayRemove f = new ArrayRemove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayRemove( + Field __1 + , Field __2 + ) { + ArrayRemove f = new ArrayRemove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayReplace( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + ArrayReplace f = new ArrayReplace(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayReplace( + Object __1 + , Object __2 + , Object __3 + ) { + ArrayReplace f = new ArrayReplace(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayReplace( + Field __1 + , Field __2 + , Field __3 + ) { + ArrayReplace f = new ArrayReplace(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.array_send + */ + public static byte[] arraySend( + Configuration configuration + , Object[] __1 + ) { + ArraySend f = new ArraySend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_send as a field. + */ + public static Field arraySend( + Object[] __1 + ) { + ArraySend f = new ArraySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.array_send as a field. + */ + public static Field arraySend( + Field __1 + ) { + ArraySend f = new ArraySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.array_smaller + */ + public static Object[] arraySmaller( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + ArraySmaller f = new ArraySmaller(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_smaller as a field. + */ + public static Field arraySmaller( + Object[] __1 + , Object[] __2 + ) { + ArraySmaller f = new ArraySmaller(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_smaller as a field. + */ + public static Field arraySmaller( + Field __1 + , Field __2 + ) { + ArraySmaller f = new ArraySmaller(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arraySubscriptHandler( + Configuration configuration + , Object __1 + ) { + ArraySubscriptHandler f = new ArraySubscriptHandler(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arraySubscriptHandler( + Object __1 + ) { + ArraySubscriptHandler f = new ArraySubscriptHandler(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arraySubscriptHandler( + Field __1 + ) { + ArraySubscriptHandler f = new ArraySubscriptHandler(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.array_to_json + */ + public static JSON arrayToJson1( + Configuration configuration + , Object[] __1 + ) { + ArrayToJson1 f = new ArrayToJson1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_to_json as a field. + */ + public static Field arrayToJson1( + Object[] __1 + ) { + ArrayToJson1 f = new ArrayToJson1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.array_to_json as a field. + */ + public static Field arrayToJson1( + Field __1 + ) { + ArrayToJson1 f = new ArrayToJson1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.array_to_json + */ + public static JSON arrayToJson2( + Configuration configuration + , Object[] __1 + , Boolean __2 + ) { + ArrayToJson2 f = new ArrayToJson2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_to_json as a field. + */ + public static Field arrayToJson2( + Object[] __1 + , Boolean __2 + ) { + ArrayToJson2 f = new ArrayToJson2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_to_json as a field. + */ + public static Field arrayToJson2( + Field __1 + , Field __2 + ) { + ArrayToJson2 f = new ArrayToJson2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.array_to_string + */ + public static String arrayToString1( + Configuration configuration + , Object[] __1 + , String __2 + , String __3 + ) { + ArrayToString1 f = new ArrayToString1(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_to_string as a field. + */ + public static Field arrayToString1( + Object[] __1 + , String __2 + , String __3 + ) { + ArrayToString1 f = new ArrayToString1(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Get pg_catalog.array_to_string as a field. + */ + public static Field arrayToString1( + Field __1 + , Field __2 + , Field __3 + ) { + ArrayToString1 f = new ArrayToString1(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.array_to_string + */ + public static String arrayToString2( + Configuration configuration + , Object[] __1 + , String __2 + ) { + ArrayToString2 f = new ArrayToString2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_to_string as a field. + */ + public static Field arrayToString2( + Object[] __1 + , String __2 + ) { + ArrayToString2 f = new ArrayToString2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_to_string as a field. + */ + public static Field arrayToString2( + Field __1 + , Field __2 + ) { + ArrayToString2 f = new ArrayToString2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayToTsvector( + Configuration configuration + , String[] __1 + ) { + ArrayToTsvector f = new ArrayToTsvector(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayToTsvector( + String[] __1 + ) { + ArrayToTsvector f = new ArrayToTsvector(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayToTsvector( + Field __1 + ) { + ArrayToTsvector f = new ArrayToTsvector(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean arrayTypanalyze( + Configuration configuration + , Object __1 + ) { + ArrayTypanalyze f = new ArrayTypanalyze(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayTypanalyze( + Object __1 + ) { + ArrayTypanalyze f = new ArrayTypanalyze(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arrayTypanalyze( + Field __1 + ) { + ArrayTypanalyze f = new ArrayTypanalyze(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object arrayUnnestSupport( + Configuration configuration + , Object __1 + ) { + ArrayUnnestSupport f = new ArrayUnnestSupport(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayUnnestSupport( + Object __1 + ) { + ArrayUnnestSupport f = new ArrayUnnestSupport(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field arrayUnnestSupport( + Field __1 + ) { + ArrayUnnestSupport f = new ArrayUnnestSupport(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.array_upper + */ + public static Integer arrayUpper( + Configuration configuration + , Object[] __1 + , Integer __2 + ) { + ArrayUpper f = new ArrayUpper(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.array_upper as a field. + */ + public static Field arrayUpper( + Object[] __1 + , Integer __2 + ) { + ArrayUpper f = new ArrayUpper(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.array_upper as a field. + */ + public static Field arrayUpper( + Field __1 + , Field __2 + ) { + ArrayUpper f = new ArrayUpper(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.arraycontained + */ + public static Boolean arraycontained( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + Arraycontained f = new Arraycontained(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.arraycontained as a field. + */ + public static Field arraycontained( + Object[] __1 + , Object[] __2 + ) { + Arraycontained f = new Arraycontained(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.arraycontained as a field. + */ + public static Field arraycontained( + Field __1 + , Field __2 + ) { + Arraycontained f = new Arraycontained(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.arraycontains + */ + public static Boolean arraycontains( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + Arraycontains f = new Arraycontains(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.arraycontains as a field. + */ + public static Field arraycontains( + Object[] __1 + , Object[] __2 + ) { + Arraycontains f = new Arraycontains(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.arraycontains as a field. + */ + public static Field arraycontains( + Field __1 + , Field __2 + ) { + Arraycontains f = new Arraycontains(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double arraycontjoinsel( + Configuration configuration + , Object __1 + , Long __2 + , Object __3 + , Short __4 + , Object __5 + ) { + Arraycontjoinsel f = new Arraycontjoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arraycontjoinsel( + Object __1 + , Long __2 + , Object __3 + , Short __4 + , Object __5 + ) { + Arraycontjoinsel f = new Arraycontjoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arraycontjoinsel( + Field __1 + , Field __2 + , Field __3 + , Field __4 + , Field __5 + ) { + Arraycontjoinsel f = new Arraycontjoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double arraycontsel( + Configuration configuration + , Object __1 + , Long __2 + , Object __3 + , Integer __4 + ) { + Arraycontsel f = new Arraycontsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arraycontsel( + Object __1 + , Long __2 + , Object __3 + , Integer __4 + ) { + Arraycontsel f = new Arraycontsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field arraycontsel( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + Arraycontsel f = new Arraycontsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * Call pg_catalog.arrayoverlap + */ + public static Boolean arrayoverlap( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + Arrayoverlap f = new Arrayoverlap(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.arrayoverlap as a field. + */ + public static Field arrayoverlap( + Object[] __1 + , Object[] __2 + ) { + Arrayoverlap f = new Arrayoverlap(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.arrayoverlap as a field. + */ + public static Field arrayoverlap( + Field __1 + , Field __2 + ) { + Arrayoverlap f = new Arrayoverlap(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.ascii + */ + public static Integer ascii( + Configuration configuration + , String __1 + ) { + Ascii f = new Ascii(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.ascii as a field. + */ + public static Field ascii( + String __1 + ) { + Ascii f = new Ascii(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.ascii as a field. + */ + public static Field ascii( + Field __1 + ) { + Ascii f = new Ascii(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.asin + */ + public static Double asin( + Configuration configuration + , Double __1 + ) { + Asin f = new Asin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.asin as a field. + */ + public static Field asin( + Double __1 + ) { + Asin f = new Asin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.asin as a field. + */ + public static Field asin( + Field __1 + ) { + Asin f = new Asin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.asind + */ + public static Double asind( + Configuration configuration + , Double __1 + ) { + Asind f = new Asind(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.asind as a field. + */ + public static Field asind( + Double __1 + ) { + Asind f = new Asind(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.asind as a field. + */ + public static Field asind( + Field __1 + ) { + Asind f = new Asind(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.asinh + */ + public static Double asinh( + Configuration configuration + , Double __1 + ) { + Asinh f = new Asinh(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.asinh as a field. + */ + public static Field asinh( + Double __1 + ) { + Asinh f = new Asinh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.asinh as a field. + */ + public static Field asinh( + Field __1 + ) { + Asinh f = new Asinh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.atan + */ + public static Double atan( + Configuration configuration + , Double __1 + ) { + Atan f = new Atan(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.atan as a field. + */ + public static Field atan( + Double __1 + ) { + Atan f = new Atan(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.atan as a field. + */ + public static Field atan( + Field __1 + ) { + Atan f = new Atan(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.atan2 + */ + public static Double atan2( + Configuration configuration + , Double __1 + , Double __2 + ) { + Atan2 f = new Atan2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.atan2 as a field. + */ + public static Field atan2( + Double __1 + , Double __2 + ) { + Atan2 f = new Atan2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.atan2 as a field. + */ + public static Field atan2( + Field __1 + , Field __2 + ) { + Atan2 f = new Atan2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.atan2d + */ + public static Double atan2d( + Configuration configuration + , Double __1 + , Double __2 + ) { + Atan2d f = new Atan2d(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.atan2d as a field. + */ + public static Field atan2d( + Double __1 + , Double __2 + ) { + Atan2d f = new Atan2d(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.atan2d as a field. + */ + public static Field atan2d( + Field __1 + , Field __2 + ) { + Atan2d f = new Atan2d(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.atand + */ + public static Double atand( + Configuration configuration + , Double __1 + ) { + Atand f = new Atand(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.atand as a field. + */ + public static Field atand( + Double __1 + ) { + Atand f = new Atand(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.atand as a field. + */ + public static Field atand( + Field __1 + ) { + Atand f = new Atand(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.atanh + */ + public static Double atanh( + Configuration configuration + , Double __1 + ) { + Atanh f = new Atanh(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.atanh as a field. + */ + public static Field atanh( + Double __1 + ) { + Atanh f = new Atanh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.atanh as a field. + */ + public static Field atanh( + Field __1 + ) { + Atanh f = new Atanh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg1( + Long __1 + ) { + Avg1 f = new Avg1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg1( + Field __1 + ) { + Avg1 f = new Avg1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg2( + Integer __1 + ) { + Avg2 f = new Avg2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg2( + Field __1 + ) { + Avg2 f = new Avg2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg3( + Short __1 + ) { + Avg3 f = new Avg3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg3( + Field __1 + ) { + Avg3 f = new Avg3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg4( + BigDecimal __1 + ) { + Avg4 f = new Avg4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg4( + Field __1 + ) { + Avg4 f = new Avg4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg5( + Float __1 + ) { + Avg5 f = new Avg5(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg5( + Field __1 + ) { + Avg5 f = new Avg5(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg6( + Double __1 + ) { + Avg6 f = new Avg6(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg6( + Field __1 + ) { + Avg6 f = new Avg6(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg7( + YearToSecond __1 + ) { + Avg7 f = new Avg7(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.avg as a field. + */ + public static AggregateFunction avg7( + Field __1 + ) { + Avg7 f = new Avg7(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object bernoulli( + Configuration configuration + , Object __1 + ) { + Bernoulli f = new Bernoulli(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bernoulli( + Object __1 + ) { + Bernoulli f = new Bernoulli(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bernoulli( + Field __1 + ) { + Bernoulli f = new Bernoulli(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer big5ToEucTw( + Configuration configuration + , Integer __1 + , Integer __2 + , Object __3 + , Object __4 + , Integer __5 + , Boolean __6 + ) { + Big5ToEucTw f = new Big5ToEucTw(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field big5ToEucTw( + Integer __1 + , Integer __2 + , Object __3 + , Object __4 + , Integer __5 + , Boolean __6 + ) { + Big5ToEucTw f = new Big5ToEucTw(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field big5ToEucTw( + Field __1 + , Field __2 + , Field __3 + , Field __4 + , Field __5 + , Field __6 + ) { + Big5ToEucTw f = new Big5ToEucTw(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer big5ToMic( + Configuration configuration + , Integer __1 + , Integer __2 + , Object __3 + , Object __4 + , Integer __5 + , Boolean __6 + ) { + Big5ToMic f = new Big5ToMic(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field big5ToMic( + Integer __1 + , Integer __2 + , Object __3 + , Object __4 + , Integer __5 + , Boolean __6 + ) { + Big5ToMic f = new Big5ToMic(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field big5ToMic( + Field __1 + , Field __2 + , Field __3 + , Field __4 + , Field __5 + , Field __6 + ) { + Big5ToMic f = new Big5ToMic(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer big5ToUtf8( + Configuration configuration + , Integer __1 + , Integer __2 + , Object __3 + , Object __4 + , Integer __5 + , Boolean __6 + ) { + Big5ToUtf8 f = new Big5ToUtf8(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field big5ToUtf8( + Integer __1 + , Integer __2 + , Object __3 + , Object __4 + , Integer __5 + , Boolean __6 + ) { + Big5ToUtf8 f = new Big5ToUtf8(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field big5ToUtf8( + Field __1 + , Field __2 + , Field __3 + , Field __4 + , Field __5 + , Field __6 + ) { + Big5ToUtf8 f = new Big5ToUtf8(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + f.set__6(__6); + + return f.asField(); + } + + /** + * Call pg_catalog.binary_upgrade_create_empty_extension + */ + public static void binaryUpgradeCreateEmptyExtension( + Configuration configuration + , String __1 + , String __2 + , Boolean __3 + , String __4 + , Long[] __5 + , String[] __6 + , String[] __7 + ) { + BinaryUpgradeCreateEmptyExtension p = new BinaryUpgradeCreateEmptyExtension(); + p.set__1(__1); + p.set__2(__2); + p.set__3(__3); + p.set__4(__4); + p.set__5(__5); + p.set__6(__6); + p.set__7(__7); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_missing_value + */ + public static void binaryUpgradeSetMissingValue( + Configuration configuration + , Long __1 + , String __2 + , String __3 + ) { + BinaryUpgradeSetMissingValue p = new BinaryUpgradeSetMissingValue(); + p.set__1(__1); + p.set__2(__2); + p.set__3(__3); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_array_pg_type_oid + */ + public static void binaryUpgradeSetNextArrayPgTypeOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextArrayPgTypeOid p = new BinaryUpgradeSetNextArrayPgTypeOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_heap_pg_class_oid + */ + public static void binaryUpgradeSetNextHeapPgClassOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextHeapPgClassOid p = new BinaryUpgradeSetNextHeapPgClassOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_heap_relfilenode + */ + public static void binaryUpgradeSetNextHeapRelfilenode( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextHeapRelfilenode p = new BinaryUpgradeSetNextHeapRelfilenode(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_index_pg_class_oid + */ + public static void binaryUpgradeSetNextIndexPgClassOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextIndexPgClassOid p = new BinaryUpgradeSetNextIndexPgClassOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_index_relfilenode + */ + public static void binaryUpgradeSetNextIndexRelfilenode( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextIndexRelfilenode p = new BinaryUpgradeSetNextIndexRelfilenode(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call + * pg_catalog.binary_upgrade_set_next_multirange_array_pg_type_oid + */ + public static void binaryUpgradeSetNextMultirangeArrayPgTypeOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextMultirangeArrayPgTypeOid p = new BinaryUpgradeSetNextMultirangeArrayPgTypeOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call + * pg_catalog.binary_upgrade_set_next_multirange_pg_type_oid + */ + public static void binaryUpgradeSetNextMultirangePgTypeOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextMultirangePgTypeOid p = new BinaryUpgradeSetNextMultirangePgTypeOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_pg_authid_oid + */ + public static void binaryUpgradeSetNextPgAuthidOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextPgAuthidOid p = new BinaryUpgradeSetNextPgAuthidOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_pg_enum_oid + */ + public static void binaryUpgradeSetNextPgEnumOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextPgEnumOid p = new BinaryUpgradeSetNextPgEnumOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_pg_tablespace_oid + */ + public static void binaryUpgradeSetNextPgTablespaceOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextPgTablespaceOid p = new BinaryUpgradeSetNextPgTablespaceOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_pg_type_oid + */ + public static void binaryUpgradeSetNextPgTypeOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextPgTypeOid p = new BinaryUpgradeSetNextPgTypeOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_toast_pg_class_oid + */ + public static void binaryUpgradeSetNextToastPgClassOid( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextToastPgClassOid p = new BinaryUpgradeSetNextToastPgClassOid(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_next_toast_relfilenode + */ + public static void binaryUpgradeSetNextToastRelfilenode( + Configuration configuration + , Long __1 + ) { + BinaryUpgradeSetNextToastRelfilenode p = new BinaryUpgradeSetNextToastRelfilenode(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.binary_upgrade_set_record_init_privs + */ + public static void binaryUpgradeSetRecordInitPrivs( + Configuration configuration + , Boolean __1 + ) { + BinaryUpgradeSetRecordInitPrivs p = new BinaryUpgradeSetRecordInitPrivs(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.bit + */ + public static String bit1( + Configuration configuration + , Integer __1 + , Integer __2 + ) { + Bit1 f = new Bit1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit as a field. + */ + public static Field bit1( + Integer __1 + , Integer __2 + ) { + Bit1 f = new Bit1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bit as a field. + */ + public static Field bit1( + Field __1 + , Field __2 + ) { + Bit1 f = new Bit1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bit + */ + public static String bit2( + Configuration configuration + , String __1 + , Integer __2 + , Boolean __3 + ) { + Bit2 f = new Bit2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit as a field. + */ + public static Field bit2( + String __1 + , Integer __2 + , Boolean __3 + ) { + Bit2 f = new Bit2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Get pg_catalog.bit as a field. + */ + public static Field bit2( + Field __1 + , Field __2 + , Field __3 + ) { + Bit2 f = new Bit2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.bit + */ + public static String bit3( + Configuration configuration + , Long __1 + , Integer __2 + ) { + Bit3 f = new Bit3(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit as a field. + */ + public static Field bit3( + Long __1 + , Integer __2 + ) { + Bit3 f = new Bit3(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bit as a field. + */ + public static Field bit3( + Field __1 + , Field __2 + ) { + Bit3 f = new Bit3(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd1( + Short __1 + ) { + BitAnd1 f = new BitAnd1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd1( + Field __1 + ) { + BitAnd1 f = new BitAnd1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd2( + Integer __1 + ) { + BitAnd2 f = new BitAnd2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd2( + Field __1 + ) { + BitAnd2 f = new BitAnd2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd3( + Long __1 + ) { + BitAnd3 f = new BitAnd3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd3( + Field __1 + ) { + BitAnd3 f = new BitAnd3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd4( + String __1 + ) { + BitAnd4 f = new BitAnd4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_and as a field. + */ + public static AggregateFunction bitAnd4( + Field __1 + ) { + BitAnd4 f = new BitAnd4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Call pg_catalog.bit_count + */ + public static Long bitCount1( + Configuration configuration + , String __1 + ) { + BitCount1 f = new BitCount1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit_count as a field. + */ + public static Field bitCount1( + String __1 + ) { + BitCount1 f = new BitCount1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_count as a field. + */ + public static Field bitCount1( + Field __1 + ) { + BitCount1 f = new BitCount1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bit_count + */ + public static Long bitCount2( + Configuration configuration + , byte[] __1 + ) { + BitCount2 f = new BitCount2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit_count as a field. + */ + public static Field bitCount2( + byte[] __1 + ) { + BitCount2 f = new BitCount2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_count as a field. + */ + public static Field bitCount2( + Field __1 + ) { + BitCount2 f = new BitCount2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String bitIn( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + BitIn f = new BitIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bitIn( + Object __1 + , Long __2 + , Integer __3 + ) { + BitIn f = new BitIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bitIn( + Field __1 + , Field __2 + , Field __3 + ) { + BitIn f = new BitIn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.bit_length + */ + public static Integer bitLength1( + Configuration configuration + , byte[] __1 + ) { + BitLength1 f = new BitLength1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit_length as a field. + */ + public static Field bitLength1( + byte[] __1 + ) { + BitLength1 f = new BitLength1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_length as a field. + */ + public static Field bitLength1( + Field __1 + ) { + BitLength1 f = new BitLength1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bit_length + */ + public static Integer bitLength2( + Configuration configuration + , String __1 + ) { + BitLength2 f = new BitLength2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit_length as a field. + */ + public static Field bitLength2( + String __1 + ) { + BitLength2 f = new BitLength2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_length as a field. + */ + public static Field bitLength2( + Field __1 + ) { + BitLength2 f = new BitLength2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bit_length + */ + public static Integer bitLength3( + Configuration configuration + , String __1 + ) { + BitLength3 f = new BitLength3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit_length as a field. + */ + public static Field bitLength3( + String __1 + ) { + BitLength3 f = new BitLength3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_length as a field. + */ + public static Field bitLength3( + Field __1 + ) { + BitLength3 f = new BitLength3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr1( + Short __1 + ) { + BitOr1 f = new BitOr1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr1( + Field __1 + ) { + BitOr1 f = new BitOr1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr2( + Integer __1 + ) { + BitOr2 f = new BitOr2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr2( + Field __1 + ) { + BitOr2 f = new BitOr2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr3( + Long __1 + ) { + BitOr3 f = new BitOr3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr3( + Field __1 + ) { + BitOr3 f = new BitOr3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr4( + String __1 + ) { + BitOr4 f = new BitOr4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_or as a field. + */ + public static AggregateFunction bitOr4( + Field __1 + ) { + BitOr4 f = new BitOr4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object bitOut( + Configuration configuration + , String __1 + ) { + BitOut f = new BitOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bitOut( + String __1 + ) { + BitOut f = new BitOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bitOut( + Field __1 + ) { + BitOut f = new BitOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String bitRecv( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + BitRecv f = new BitRecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bitRecv( + Object __1 + , Long __2 + , Integer __3 + ) { + BitRecv f = new BitRecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bitRecv( + Field __1 + , Field __2 + , Field __3 + ) { + BitRecv f = new BitRecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.bit_send + */ + public static byte[] bitSend( + Configuration configuration + , String __1 + ) { + BitSend f = new BitSend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bit_send as a field. + */ + public static Field bitSend( + String __1 + ) { + BitSend f = new BitSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_send as a field. + */ + public static Field bitSend( + Field __1 + ) { + BitSend f = new BitSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor1( + Short __1 + ) { + BitXor1 f = new BitXor1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor1( + Field __1 + ) { + BitXor1 f = new BitXor1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor2( + Integer __1 + ) { + BitXor2 f = new BitXor2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor2( + Field __1 + ) { + BitXor2 f = new BitXor2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor3( + Long __1 + ) { + BitXor3 f = new BitXor3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor3( + Field __1 + ) { + BitXor3 f = new BitXor3(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor4( + String __1 + ) { + BitXor4 f = new BitXor4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bit_xor as a field. + */ + public static AggregateFunction bitXor4( + Field __1 + ) { + BitXor4 f = new BitXor4(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Call pg_catalog.bitand + */ + public static String bitand( + Configuration configuration + , String __1 + , String __2 + ) { + Bitand f = new Bitand(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitand as a field. + */ + public static Field bitand( + String __1 + , String __2 + ) { + Bitand f = new Bitand(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitand as a field. + */ + public static Field bitand( + Field __1 + , Field __2 + ) { + Bitand f = new Bitand(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitcat + */ + public static String bitcat( + Configuration configuration + , String __1 + , String __2 + ) { + Bitcat f = new Bitcat(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitcat as a field. + */ + public static Field bitcat( + String __1 + , String __2 + ) { + Bitcat f = new Bitcat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitcat as a field. + */ + public static Field bitcat( + Field __1 + , Field __2 + ) { + Bitcat f = new Bitcat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitcmp + */ + public static Integer bitcmp( + Configuration configuration + , String __1 + , String __2 + ) { + Bitcmp f = new Bitcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitcmp as a field. + */ + public static Field bitcmp( + String __1 + , String __2 + ) { + Bitcmp f = new Bitcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitcmp as a field. + */ + public static Field bitcmp( + Field __1 + , Field __2 + ) { + Bitcmp f = new Bitcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.biteq + */ + public static Boolean biteq( + Configuration configuration + , String __1 + , String __2 + ) { + Biteq f = new Biteq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.biteq as a field. + */ + public static Field biteq( + String __1 + , String __2 + ) { + Biteq f = new Biteq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.biteq as a field. + */ + public static Field biteq( + Field __1 + , Field __2 + ) { + Biteq f = new Biteq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitge + */ + public static Boolean bitge( + Configuration configuration + , String __1 + , String __2 + ) { + Bitge f = new Bitge(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitge as a field. + */ + public static Field bitge( + String __1 + , String __2 + ) { + Bitge f = new Bitge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitge as a field. + */ + public static Field bitge( + Field __1 + , Field __2 + ) { + Bitge f = new Bitge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitgt + */ + public static Boolean bitgt( + Configuration configuration + , String __1 + , String __2 + ) { + Bitgt f = new Bitgt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitgt as a field. + */ + public static Field bitgt( + String __1 + , String __2 + ) { + Bitgt f = new Bitgt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitgt as a field. + */ + public static Field bitgt( + Field __1 + , Field __2 + ) { + Bitgt f = new Bitgt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitle + */ + public static Boolean bitle( + Configuration configuration + , String __1 + , String __2 + ) { + Bitle f = new Bitle(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitle as a field. + */ + public static Field bitle( + String __1 + , String __2 + ) { + Bitle f = new Bitle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitle as a field. + */ + public static Field bitle( + Field __1 + , Field __2 + ) { + Bitle f = new Bitle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitlt + */ + public static Boolean bitlt( + Configuration configuration + , String __1 + , String __2 + ) { + Bitlt f = new Bitlt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitlt as a field. + */ + public static Field bitlt( + String __1 + , String __2 + ) { + Bitlt f = new Bitlt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitlt as a field. + */ + public static Field bitlt( + Field __1 + , Field __2 + ) { + Bitlt f = new Bitlt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitne + */ + public static Boolean bitne( + Configuration configuration + , String __1 + , String __2 + ) { + Bitne f = new Bitne(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitne as a field. + */ + public static Field bitne( + String __1 + , String __2 + ) { + Bitne f = new Bitne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitne as a field. + */ + public static Field bitne( + Field __1 + , Field __2 + ) { + Bitne f = new Bitne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitnot + */ + public static String bitnot( + Configuration configuration + , String __1 + ) { + Bitnot f = new Bitnot(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitnot as a field. + */ + public static Field bitnot( + String __1 + ) { + Bitnot f = new Bitnot(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bitnot as a field. + */ + public static Field bitnot( + Field __1 + ) { + Bitnot f = new Bitnot(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bitor + */ + public static String bitor( + Configuration configuration + , String __1 + , String __2 + ) { + Bitor f = new Bitor(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitor as a field. + */ + public static Field bitor( + String __1 + , String __2 + ) { + Bitor f = new Bitor(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitor as a field. + */ + public static Field bitor( + Field __1 + , Field __2 + ) { + Bitor f = new Bitor(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitshiftleft + */ + public static String bitshiftleft( + Configuration configuration + , String __1 + , Integer __2 + ) { + Bitshiftleft f = new Bitshiftleft(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitshiftleft as a field. + */ + public static Field bitshiftleft( + String __1 + , Integer __2 + ) { + Bitshiftleft f = new Bitshiftleft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitshiftleft as a field. + */ + public static Field bitshiftleft( + Field __1 + , Field __2 + ) { + Bitshiftleft f = new Bitshiftleft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bitshiftright + */ + public static String bitshiftright( + Configuration configuration + , String __1 + , Integer __2 + ) { + Bitshiftright f = new Bitshiftright(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitshiftright as a field. + */ + public static Field bitshiftright( + String __1 + , Integer __2 + ) { + Bitshiftright f = new Bitshiftright(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitshiftright as a field. + */ + public static Field bitshiftright( + Field __1 + , Field __2 + ) { + Bitshiftright f = new Bitshiftright(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bittypmodin + */ + public static Integer bittypmodin( + Configuration configuration + , Object[] __1 + ) { + Bittypmodin f = new Bittypmodin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bittypmodin as a field. + */ + public static Field bittypmodin( + Object[] __1 + ) { + Bittypmodin f = new Bittypmodin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bittypmodin as a field. + */ + public static Field bittypmodin( + Field __1 + ) { + Bittypmodin f = new Bittypmodin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object bittypmodout( + Configuration configuration + , Integer __1 + ) { + Bittypmodout f = new Bittypmodout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bittypmodout( + Integer __1 + ) { + Bittypmodout f = new Bittypmodout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bittypmodout( + Field __1 + ) { + Bittypmodout f = new Bittypmodout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bitxor + */ + public static String bitxor( + Configuration configuration + , String __1 + , String __2 + ) { + Bitxor f = new Bitxor(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bitxor as a field. + */ + public static Field bitxor( + String __1 + , String __2 + ) { + Bitxor f = new Bitxor(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bitxor as a field. + */ + public static Field bitxor( + Field __1 + , Field __2 + ) { + Bitxor f = new Bitxor(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bool + */ + public static Boolean bool1( + Configuration configuration + , Integer __1 + ) { + Bool1 f = new Bool1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bool as a field. + */ + public static Field bool1( + Integer __1 + ) { + Bool1 f = new Bool1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bool as a field. + */ + public static Field bool1( + Field __1 + ) { + Bool1 f = new Bool1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bool + */ + public static Boolean bool2( + Configuration configuration + , JSONB __1 + ) { + Bool2 f = new Bool2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bool as a field. + */ + public static Field bool2( + JSONB __1 + ) { + Bool2 f = new Bool2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bool as a field. + */ + public static Field bool2( + Field __1 + ) { + Bool2 f = new Bool2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boolAccum( + Configuration configuration + , Object __1 + , Boolean __2 + ) { + BoolAccum f = new BoolAccum(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boolAccum( + Object __1 + , Boolean __2 + ) { + BoolAccum f = new BoolAccum(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boolAccum( + Field __1 + , Field __2 + ) { + BoolAccum f = new BoolAccum(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boolAccumInv( + Configuration configuration + , Object __1 + , Boolean __2 + ) { + BoolAccumInv f = new BoolAccumInv(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boolAccumInv( + Object __1 + , Boolean __2 + ) { + BoolAccumInv f = new BoolAccumInv(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boolAccumInv( + Field __1 + , Field __2 + ) { + BoolAccumInv f = new BoolAccumInv(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boolAlltrue( + Configuration configuration + , Object __1 + ) { + BoolAlltrue f = new BoolAlltrue(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolAlltrue( + Object __1 + ) { + BoolAlltrue f = new BoolAlltrue(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolAlltrue( + Field __1 + ) { + BoolAlltrue f = new BoolAlltrue(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bool_and as a field. + */ + public static AggregateFunction boolAnd( + Boolean __1 + ) { + BoolAnd f = new BoolAnd(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bool_and as a field. + */ + public static AggregateFunction boolAnd( + Field __1 + ) { + BoolAnd f = new BoolAnd(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boolAnytrue( + Configuration configuration + , Object __1 + ) { + BoolAnytrue f = new BoolAnytrue(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolAnytrue( + Object __1 + ) { + BoolAnytrue f = new BoolAnytrue(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolAnytrue( + Field __1 + ) { + BoolAnytrue f = new BoolAnytrue(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bool_or as a field. + */ + public static AggregateFunction boolOr( + Boolean __1 + ) { + BoolOr f = new BoolOr(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.bool_or as a field. + */ + public static AggregateFunction boolOr( + Field __1 + ) { + BoolOr f = new BoolOr(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Call pg_catalog.booland_statefunc + */ + public static Boolean boolandStatefunc( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + BoolandStatefunc f = new BoolandStatefunc(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.booland_statefunc as a field. + */ + public static Field boolandStatefunc( + Boolean __1 + , Boolean __2 + ) { + BoolandStatefunc f = new BoolandStatefunc(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.booland_statefunc as a field. + */ + public static Field boolandStatefunc( + Field __1 + , Field __2 + ) { + BoolandStatefunc f = new BoolandStatefunc(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.booleq + */ + public static Boolean booleq( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Booleq f = new Booleq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.booleq as a field. + */ + public static Field booleq( + Boolean __1 + , Boolean __2 + ) { + Booleq f = new Booleq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.booleq as a field. + */ + public static Field booleq( + Field __1 + , Field __2 + ) { + Booleq f = new Booleq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.boolge + */ + public static Boolean boolge( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Boolge f = new Boolge(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boolge as a field. + */ + public static Field boolge( + Boolean __1 + , Boolean __2 + ) { + Boolge f = new Boolge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.boolge as a field. + */ + public static Field boolge( + Field __1 + , Field __2 + ) { + Boolge f = new Boolge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.boolgt + */ + public static Boolean boolgt( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Boolgt f = new Boolgt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boolgt as a field. + */ + public static Field boolgt( + Boolean __1 + , Boolean __2 + ) { + Boolgt f = new Boolgt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.boolgt as a field. + */ + public static Field boolgt( + Field __1 + , Field __2 + ) { + Boolgt f = new Boolgt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boolin( + Configuration configuration + , Object __1 + ) { + Boolin f = new Boolin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolin( + Object __1 + ) { + Boolin f = new Boolin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolin( + Field __1 + ) { + Boolin f = new Boolin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.boolle + */ + public static Boolean boolle( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Boolle f = new Boolle(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boolle as a field. + */ + public static Field boolle( + Boolean __1 + , Boolean __2 + ) { + Boolle f = new Boolle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.boolle as a field. + */ + public static Field boolle( + Field __1 + , Field __2 + ) { + Boolle f = new Boolle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.boollt + */ + public static Boolean boollt( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Boollt f = new Boollt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boollt as a field. + */ + public static Field boollt( + Boolean __1 + , Boolean __2 + ) { + Boollt f = new Boollt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.boollt as a field. + */ + public static Field boollt( + Field __1 + , Field __2 + ) { + Boollt f = new Boollt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.boolne + */ + public static Boolean boolne( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Boolne f = new Boolne(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boolne as a field. + */ + public static Field boolne( + Boolean __1 + , Boolean __2 + ) { + Boolne f = new Boolne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.boolne as a field. + */ + public static Field boolne( + Field __1 + , Field __2 + ) { + Boolne f = new Boolne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.boolor_statefunc + */ + public static Boolean boolorStatefunc( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + BoolorStatefunc f = new BoolorStatefunc(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boolor_statefunc as a field. + */ + public static Field boolorStatefunc( + Boolean __1 + , Boolean __2 + ) { + BoolorStatefunc f = new BoolorStatefunc(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.boolor_statefunc as a field. + */ + public static Field boolorStatefunc( + Field __1 + , Field __2 + ) { + BoolorStatefunc f = new BoolorStatefunc(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boolout( + Configuration configuration + , Boolean __1 + ) { + Boolout f = new Boolout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boolout( + Boolean __1 + ) { + Boolout f = new Boolout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boolout( + Field __1 + ) { + Boolout f = new Boolout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boolrecv( + Configuration configuration + , Object __1 + ) { + Boolrecv f = new Boolrecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolrecv( + Object __1 + ) { + Boolrecv f = new Boolrecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boolrecv( + Field __1 + ) { + Boolrecv f = new Boolrecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.boolsend + */ + public static byte[] boolsend( + Configuration configuration + , Boolean __1 + ) { + Boolsend f = new Boolsend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.boolsend as a field. + */ + public static Field boolsend( + Boolean __1 + ) { + Boolsend f = new Boolsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.boolsend as a field. + */ + public static Field boolsend( + Field __1 + ) { + Boolsend f = new Boolsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boundBox( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoundBox f = new BoundBox(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boundBox( + Object __1 + , Object __2 + ) { + BoundBox f = new BoundBox(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boundBox( + Field __1 + , Field __2 + ) { + BoundBox f = new BoundBox(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object box1( + Configuration configuration + , Object __1 + , Object __2 + ) { + Box1 f = new Box1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box1( + Object __1 + , Object __2 + ) { + Box1 f = new Box1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box1( + Field __1 + , Field __2 + ) { + Box1 f = new Box1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object box2( + Configuration configuration + , Object __1 + ) { + Box2 f = new Box2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box2( + Object __1 + ) { + Box2 f = new Box2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box2( + Field __1 + ) { + Box2 f = new Box2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object box3( + Configuration configuration + , Object __1 + ) { + Box3 f = new Box3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box3( + Object __1 + ) { + Box3 f = new Box3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box3( + Field __1 + ) { + Box3 f = new Box3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object box4( + Configuration configuration + , Object __1 + ) { + Box4 f = new Box4(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box4( + Object __1 + ) { + Box4 f = new Box4(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field box4( + Field __1 + ) { + Box4 f = new Box4(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxAbove( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxAbove f = new BoxAbove(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxAbove( + Object __1 + , Object __2 + ) { + BoxAbove f = new BoxAbove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxAbove( + Field __1 + , Field __2 + ) { + BoxAbove f = new BoxAbove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxAboveEq( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxAboveEq f = new BoxAboveEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxAboveEq( + Object __1 + , Object __2 + ) { + BoxAboveEq f = new BoxAboveEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxAboveEq( + Field __1 + , Field __2 + ) { + BoxAboveEq f = new BoxAboveEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxAdd( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxAdd f = new BoxAdd(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxAdd( + Object __1 + , Object __2 + ) { + BoxAdd f = new BoxAdd(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxAdd( + Field __1 + , Field __2 + ) { + BoxAdd f = new BoxAdd(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxBelow( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxBelow f = new BoxBelow(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxBelow( + Object __1 + , Object __2 + ) { + BoxBelow f = new BoxBelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxBelow( + Field __1 + , Field __2 + ) { + BoxBelow f = new BoxBelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxBelowEq( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxBelowEq f = new BoxBelowEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxBelowEq( + Object __1 + , Object __2 + ) { + BoxBelowEq f = new BoxBelowEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxBelowEq( + Field __1 + , Field __2 + ) { + BoxBelowEq f = new BoxBelowEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxCenter( + Configuration configuration + , Object __1 + ) { + BoxCenter f = new BoxCenter(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxCenter( + Object __1 + ) { + BoxCenter f = new BoxCenter(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxCenter( + Field __1 + ) { + BoxCenter f = new BoxCenter(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxContain( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxContain f = new BoxContain(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxContain( + Object __1 + , Object __2 + ) { + BoxContain f = new BoxContain(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxContain( + Field __1 + , Field __2 + ) { + BoxContain f = new BoxContain(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxContainPt( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxContainPt f = new BoxContainPt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxContainPt( + Object __1 + , Object __2 + ) { + BoxContainPt f = new BoxContainPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxContainPt( + Field __1 + , Field __2 + ) { + BoxContainPt f = new BoxContainPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxContained( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxContained f = new BoxContained(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxContained( + Object __1 + , Object __2 + ) { + BoxContained f = new BoxContained(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxContained( + Field __1 + , Field __2 + ) { + BoxContained f = new BoxContained(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double boxDistance( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxDistance f = new BoxDistance(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxDistance( + Object __1 + , Object __2 + ) { + BoxDistance f = new BoxDistance(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxDistance( + Field __1 + , Field __2 + ) { + BoxDistance f = new BoxDistance(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxDiv( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxDiv f = new BoxDiv(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxDiv( + Object __1 + , Object __2 + ) { + BoxDiv f = new BoxDiv(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxDiv( + Field __1 + , Field __2 + ) { + BoxDiv f = new BoxDiv(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxEq( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxEq f = new BoxEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxEq( + Object __1 + , Object __2 + ) { + BoxEq f = new BoxEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxEq( + Field __1 + , Field __2 + ) { + BoxEq f = new BoxEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxGe( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxGe f = new BoxGe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxGe( + Object __1 + , Object __2 + ) { + BoxGe f = new BoxGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxGe( + Field __1 + , Field __2 + ) { + BoxGe f = new BoxGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxGt( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxGt f = new BoxGt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxGt( + Object __1 + , Object __2 + ) { + BoxGt f = new BoxGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxGt( + Field __1 + , Field __2 + ) { + BoxGt f = new BoxGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxIn( + Configuration configuration + , Object __1 + ) { + BoxIn f = new BoxIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxIn( + Object __1 + ) { + BoxIn f = new BoxIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxIn( + Field __1 + ) { + BoxIn f = new BoxIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxIntersect( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxIntersect f = new BoxIntersect(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxIntersect( + Object __1 + , Object __2 + ) { + BoxIntersect f = new BoxIntersect(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxIntersect( + Field __1 + , Field __2 + ) { + BoxIntersect f = new BoxIntersect(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxLe( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxLe f = new BoxLe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxLe( + Object __1 + , Object __2 + ) { + BoxLe f = new BoxLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxLe( + Field __1 + , Field __2 + ) { + BoxLe f = new BoxLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxLeft( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxLeft f = new BoxLeft(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxLeft( + Object __1 + , Object __2 + ) { + BoxLeft f = new BoxLeft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxLeft( + Field __1 + , Field __2 + ) { + BoxLeft f = new BoxLeft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxLt( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxLt f = new BoxLt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxLt( + Object __1 + , Object __2 + ) { + BoxLt f = new BoxLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxLt( + Field __1 + , Field __2 + ) { + BoxLt f = new BoxLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxMul( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxMul f = new BoxMul(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxMul( + Object __1 + , Object __2 + ) { + BoxMul f = new BoxMul(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxMul( + Field __1 + , Field __2 + ) { + BoxMul f = new BoxMul(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxOut( + Configuration configuration + , Object __1 + ) { + BoxOut f = new BoxOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxOut( + Object __1 + ) { + BoxOut f = new BoxOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxOut( + Field __1 + ) { + BoxOut f = new BoxOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxOverabove( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxOverabove f = new BoxOverabove(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverabove( + Object __1 + , Object __2 + ) { + BoxOverabove f = new BoxOverabove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverabove( + Field __1 + , Field __2 + ) { + BoxOverabove f = new BoxOverabove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxOverbelow( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxOverbelow f = new BoxOverbelow(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverbelow( + Object __1 + , Object __2 + ) { + BoxOverbelow f = new BoxOverbelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverbelow( + Field __1 + , Field __2 + ) { + BoxOverbelow f = new BoxOverbelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxOverlap( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxOverlap f = new BoxOverlap(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverlap( + Object __1 + , Object __2 + ) { + BoxOverlap f = new BoxOverlap(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverlap( + Field __1 + , Field __2 + ) { + BoxOverlap f = new BoxOverlap(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxOverleft( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxOverleft f = new BoxOverleft(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverleft( + Object __1 + , Object __2 + ) { + BoxOverleft f = new BoxOverleft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverleft( + Field __1 + , Field __2 + ) { + BoxOverleft f = new BoxOverleft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxOverright( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxOverright f = new BoxOverright(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverright( + Object __1 + , Object __2 + ) { + BoxOverright f = new BoxOverright(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxOverright( + Field __1 + , Field __2 + ) { + BoxOverright f = new BoxOverright(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxRecv( + Configuration configuration + , Object __1 + ) { + BoxRecv f = new BoxRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxRecv( + Object __1 + ) { + BoxRecv f = new BoxRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxRecv( + Field __1 + ) { + BoxRecv f = new BoxRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxRight( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxRight f = new BoxRight(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxRight( + Object __1 + , Object __2 + ) { + BoxRight f = new BoxRight(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxRight( + Field __1 + , Field __2 + ) { + BoxRight f = new BoxRight(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean boxSame( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxSame f = new BoxSame(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxSame( + Object __1 + , Object __2 + ) { + BoxSame f = new BoxSame(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxSame( + Field __1 + , Field __2 + ) { + BoxSame f = new BoxSame(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] boxSend( + Configuration configuration + , Object __1 + ) { + BoxSend f = new BoxSend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxSend( + Object __1 + ) { + BoxSend f = new BoxSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field boxSend( + Field __1 + ) { + BoxSend f = new BoxSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object boxSub( + Configuration configuration + , Object __1 + , Object __2 + ) { + BoxSub f = new BoxSub(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxSub( + Object __1 + , Object __2 + ) { + BoxSub f = new BoxSub(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field boxSub( + Field __1 + , Field __2 + ) { + BoxSub f = new BoxSub(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar + */ + public static String bpchar1( + Configuration configuration + , String __1 + ) { + Bpchar1 f = new Bpchar1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar as a field. + */ + public static Field bpchar1( + String __1 + ) { + Bpchar1 f = new Bpchar1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar as a field. + */ + public static Field bpchar1( + Field __1 + ) { + Bpchar1 f = new Bpchar1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar + */ + public static String bpchar2( + Configuration configuration + , String __1 + , Integer __2 + , Boolean __3 + ) { + Bpchar2 f = new Bpchar2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar as a field. + */ + public static Field bpchar2( + String __1 + , Integer __2 + , Boolean __3 + ) { + Bpchar2 f = new Bpchar2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar as a field. + */ + public static Field bpchar2( + Field __1 + , Field __2 + , Field __3 + ) { + Bpchar2 f = new Bpchar2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar + */ + public static String bpchar3( + Configuration configuration + , String __1 + ) { + Bpchar3 f = new Bpchar3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar as a field. + */ + public static Field bpchar3( + String __1 + ) { + Bpchar3 f = new Bpchar3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar as a field. + */ + public static Field bpchar3( + Field __1 + ) { + Bpchar3 f = new Bpchar3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar_larger + */ + public static String bpcharLarger( + Configuration configuration + , String __1 + , String __2 + ) { + BpcharLarger f = new BpcharLarger(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar_larger as a field. + */ + public static Field bpcharLarger( + String __1 + , String __2 + ) { + BpcharLarger f = new BpcharLarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar_larger as a field. + */ + public static Field bpcharLarger( + Field __1 + , Field __2 + ) { + BpcharLarger f = new BpcharLarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar_pattern_ge + */ + public static Boolean bpcharPatternGe( + Configuration configuration + , String __1 + , String __2 + ) { + BpcharPatternGe f = new BpcharPatternGe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar_pattern_ge as a field. + */ + public static Field bpcharPatternGe( + String __1 + , String __2 + ) { + BpcharPatternGe f = new BpcharPatternGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar_pattern_ge as a field. + */ + public static Field bpcharPatternGe( + Field __1 + , Field __2 + ) { + BpcharPatternGe f = new BpcharPatternGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar_pattern_gt + */ + public static Boolean bpcharPatternGt( + Configuration configuration + , String __1 + , String __2 + ) { + BpcharPatternGt f = new BpcharPatternGt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar_pattern_gt as a field. + */ + public static Field bpcharPatternGt( + String __1 + , String __2 + ) { + BpcharPatternGt f = new BpcharPatternGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar_pattern_gt as a field. + */ + public static Field bpcharPatternGt( + Field __1 + , Field __2 + ) { + BpcharPatternGt f = new BpcharPatternGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar_pattern_le + */ + public static Boolean bpcharPatternLe( + Configuration configuration + , String __1 + , String __2 + ) { + BpcharPatternLe f = new BpcharPatternLe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar_pattern_le as a field. + */ + public static Field bpcharPatternLe( + String __1 + , String __2 + ) { + BpcharPatternLe f = new BpcharPatternLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar_pattern_le as a field. + */ + public static Field bpcharPatternLe( + Field __1 + , Field __2 + ) { + BpcharPatternLe f = new BpcharPatternLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar_pattern_lt + */ + public static Boolean bpcharPatternLt( + Configuration configuration + , String __1 + , String __2 + ) { + BpcharPatternLt f = new BpcharPatternLt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar_pattern_lt as a field. + */ + public static Field bpcharPatternLt( + String __1 + , String __2 + ) { + BpcharPatternLt f = new BpcharPatternLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar_pattern_lt as a field. + */ + public static Field bpcharPatternLt( + Field __1 + , Field __2 + ) { + BpcharPatternLt f = new BpcharPatternLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchar_smaller + */ + public static String bpcharSmaller( + Configuration configuration + , String __1 + , String __2 + ) { + BpcharSmaller f = new BpcharSmaller(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchar_smaller as a field. + */ + public static Field bpcharSmaller( + String __1 + , String __2 + ) { + BpcharSmaller f = new BpcharSmaller(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchar_smaller as a field. + */ + public static Field bpcharSmaller( + Field __1 + , Field __2 + ) { + BpcharSmaller f = new BpcharSmaller(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void bpcharSortsupport( + Configuration configuration + , Object __1 + ) { + BpcharSortsupport p = new BpcharSortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.bpcharcmp + */ + public static Integer bpcharcmp( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharcmp f = new Bpcharcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharcmp as a field. + */ + public static Field bpcharcmp( + String __1 + , String __2 + ) { + Bpcharcmp f = new Bpcharcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharcmp as a field. + */ + public static Field bpcharcmp( + Field __1 + , Field __2 + ) { + Bpcharcmp f = new Bpcharcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchareq + */ + public static Boolean bpchareq( + Configuration configuration + , String __1 + , String __2 + ) { + Bpchareq f = new Bpchareq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchareq as a field. + */ + public static Field bpchareq( + String __1 + , String __2 + ) { + Bpchareq f = new Bpchareq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchareq as a field. + */ + public static Field bpchareq( + Field __1 + , Field __2 + ) { + Bpchareq f = new Bpchareq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharge + */ + public static Boolean bpcharge( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharge f = new Bpcharge(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharge as a field. + */ + public static Field bpcharge( + String __1 + , String __2 + ) { + Bpcharge f = new Bpcharge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharge as a field. + */ + public static Field bpcharge( + Field __1 + , Field __2 + ) { + Bpcharge f = new Bpcharge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchargt + */ + public static Boolean bpchargt( + Configuration configuration + , String __1 + , String __2 + ) { + Bpchargt f = new Bpchargt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchargt as a field. + */ + public static Field bpchargt( + String __1 + , String __2 + ) { + Bpchargt f = new Bpchargt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchargt as a field. + */ + public static Field bpchargt( + Field __1 + , Field __2 + ) { + Bpchargt f = new Bpchargt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchariclike + */ + public static Boolean bpchariclike( + Configuration configuration + , String __1 + , String __2 + ) { + Bpchariclike f = new Bpchariclike(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchariclike as a field. + */ + public static Field bpchariclike( + String __1 + , String __2 + ) { + Bpchariclike f = new Bpchariclike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchariclike as a field. + */ + public static Field bpchariclike( + Field __1 + , Field __2 + ) { + Bpchariclike f = new Bpchariclike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharicnlike + */ + public static Boolean bpcharicnlike( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharicnlike f = new Bpcharicnlike(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharicnlike as a field. + */ + public static Field bpcharicnlike( + String __1 + , String __2 + ) { + Bpcharicnlike f = new Bpcharicnlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharicnlike as a field. + */ + public static Field bpcharicnlike( + Field __1 + , Field __2 + ) { + Bpcharicnlike f = new Bpcharicnlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharicregexeq + */ + public static Boolean bpcharicregexeq( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharicregexeq f = new Bpcharicregexeq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharicregexeq as a field. + */ + public static Field bpcharicregexeq( + String __1 + , String __2 + ) { + Bpcharicregexeq f = new Bpcharicregexeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharicregexeq as a field. + */ + public static Field bpcharicregexeq( + Field __1 + , Field __2 + ) { + Bpcharicregexeq f = new Bpcharicregexeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharicregexne + */ + public static Boolean bpcharicregexne( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharicregexne f = new Bpcharicregexne(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharicregexne as a field. + */ + public static Field bpcharicregexne( + String __1 + , String __2 + ) { + Bpcharicregexne f = new Bpcharicregexne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharicregexne as a field. + */ + public static Field bpcharicregexne( + Field __1 + , Field __2 + ) { + Bpcharicregexne f = new Bpcharicregexne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String bpcharin( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + Bpcharin f = new Bpcharin(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bpcharin( + Object __1 + , Long __2 + , Integer __3 + ) { + Bpcharin f = new Bpcharin(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bpcharin( + Field __1 + , Field __2 + , Field __3 + ) { + Bpcharin f = new Bpcharin(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharle + */ + public static Boolean bpcharle( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharle f = new Bpcharle(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharle as a field. + */ + public static Field bpcharle( + String __1 + , String __2 + ) { + Bpcharle f = new Bpcharle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharle as a field. + */ + public static Field bpcharle( + Field __1 + , Field __2 + ) { + Bpcharle f = new Bpcharle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharlike + */ + public static Boolean bpcharlike( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharlike f = new Bpcharlike(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharlike as a field. + */ + public static Field bpcharlike( + String __1 + , String __2 + ) { + Bpcharlike f = new Bpcharlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharlike as a field. + */ + public static Field bpcharlike( + Field __1 + , Field __2 + ) { + Bpcharlike f = new Bpcharlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharlt + */ + public static Boolean bpcharlt( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharlt f = new Bpcharlt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharlt as a field. + */ + public static Field bpcharlt( + String __1 + , String __2 + ) { + Bpcharlt f = new Bpcharlt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharlt as a field. + */ + public static Field bpcharlt( + Field __1 + , Field __2 + ) { + Bpcharlt f = new Bpcharlt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharne + */ + public static Boolean bpcharne( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharne f = new Bpcharne(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharne as a field. + */ + public static Field bpcharne( + String __1 + , String __2 + ) { + Bpcharne f = new Bpcharne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharne as a field. + */ + public static Field bpcharne( + Field __1 + , Field __2 + ) { + Bpcharne f = new Bpcharne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharnlike + */ + public static Boolean bpcharnlike( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharnlike f = new Bpcharnlike(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharnlike as a field. + */ + public static Field bpcharnlike( + String __1 + , String __2 + ) { + Bpcharnlike f = new Bpcharnlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharnlike as a field. + */ + public static Field bpcharnlike( + Field __1 + , Field __2 + ) { + Bpcharnlike f = new Bpcharnlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object bpcharout( + Configuration configuration + , String __1 + ) { + Bpcharout f = new Bpcharout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bpcharout( + String __1 + ) { + Bpcharout f = new Bpcharout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bpcharout( + Field __1 + ) { + Bpcharout f = new Bpcharout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String bpcharrecv( + Configuration configuration + , Object __1 + , Long __2 + , Integer __3 + ) { + Bpcharrecv f = new Bpcharrecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bpcharrecv( + Object __1 + , Long __2 + , Integer __3 + ) { + Bpcharrecv f = new Bpcharrecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bpcharrecv( + Field __1 + , Field __2 + , Field __3 + ) { + Bpcharrecv f = new Bpcharrecv(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharregexeq + */ + public static Boolean bpcharregexeq( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharregexeq f = new Bpcharregexeq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharregexeq as a field. + */ + public static Field bpcharregexeq( + String __1 + , String __2 + ) { + Bpcharregexeq f = new Bpcharregexeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharregexeq as a field. + */ + public static Field bpcharregexeq( + Field __1 + , Field __2 + ) { + Bpcharregexeq f = new Bpcharregexeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharregexne + */ + public static Boolean bpcharregexne( + Configuration configuration + , String __1 + , String __2 + ) { + Bpcharregexne f = new Bpcharregexne(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharregexne as a field. + */ + public static Field bpcharregexne( + String __1 + , String __2 + ) { + Bpcharregexne f = new Bpcharregexne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharregexne as a field. + */ + public static Field bpcharregexne( + Field __1 + , Field __2 + ) { + Bpcharregexne f = new Bpcharregexne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bpcharsend + */ + public static byte[] bpcharsend( + Configuration configuration + , String __1 + ) { + Bpcharsend f = new Bpcharsend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpcharsend as a field. + */ + public static Field bpcharsend( + String __1 + ) { + Bpcharsend f = new Bpcharsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bpcharsend as a field. + */ + public static Field bpcharsend( + Field __1 + ) { + Bpcharsend f = new Bpcharsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bpchartypmodin + */ + public static Integer bpchartypmodin( + Configuration configuration + , Object[] __1 + ) { + Bpchartypmodin f = new Bpchartypmodin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bpchartypmodin as a field. + */ + public static Field bpchartypmodin( + Object[] __1 + ) { + Bpchartypmodin f = new Bpchartypmodin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.bpchartypmodin as a field. + */ + public static Field bpchartypmodin( + Field __1 + ) { + Bpchartypmodin f = new Bpchartypmodin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object bpchartypmodout( + Configuration configuration + , Integer __1 + ) { + Bpchartypmodout f = new Bpchartypmodout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bpchartypmodout( + Integer __1 + ) { + Bpchartypmodout f = new Bpchartypmodout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bpchartypmodout( + Field __1 + ) { + Bpchartypmodout f = new Bpchartypmodout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinBloomAddValue( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinBloomAddValue f = new BrinBloomAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomAddValue( + Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinBloomAddValue f = new BrinBloomAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomAddValue( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + BrinBloomAddValue f = new BrinBloomAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinBloomConsistent( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + , Integer __4 + ) { + BrinBloomConsistent f = new BrinBloomConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomConsistent( + Object __1 + , Object __2 + , Object __3 + , Integer __4 + ) { + BrinBloomConsistent f = new BrinBloomConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomConsistent( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + BrinBloomConsistent f = new BrinBloomConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinBloomOpcinfo( + Configuration configuration + , Object __1 + ) { + BrinBloomOpcinfo f = new BrinBloomOpcinfo(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomOpcinfo( + Object __1 + ) { + BrinBloomOpcinfo f = new BrinBloomOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomOpcinfo( + Field __1 + ) { + BrinBloomOpcinfo f = new BrinBloomOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void brinBloomOptions( + Configuration configuration + , Object __1 + ) { + BrinBloomOptions p = new BrinBloomOptions(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinBloomSummaryIn( + Configuration configuration + , Object __1 + ) { + BrinBloomSummaryIn f = new BrinBloomSummaryIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomSummaryIn( + Object __1 + ) { + BrinBloomSummaryIn f = new BrinBloomSummaryIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomSummaryIn( + Field __1 + ) { + BrinBloomSummaryIn f = new BrinBloomSummaryIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinBloomSummaryOut( + Configuration configuration + , Object __1 + ) { + BrinBloomSummaryOut f = new BrinBloomSummaryOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomSummaryOut( + Object __1 + ) { + BrinBloomSummaryOut f = new BrinBloomSummaryOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomSummaryOut( + Field __1 + ) { + BrinBloomSummaryOut f = new BrinBloomSummaryOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinBloomSummaryRecv( + Configuration configuration + , Object __1 + ) { + BrinBloomSummaryRecv f = new BrinBloomSummaryRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomSummaryRecv( + Object __1 + ) { + BrinBloomSummaryRecv f = new BrinBloomSummaryRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinBloomSummaryRecv( + Field __1 + ) { + BrinBloomSummaryRecv f = new BrinBloomSummaryRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] brinBloomSummarySend( + Configuration configuration + , Object __1 + ) { + BrinBloomSummarySend f = new BrinBloomSummarySend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomSummarySend( + Object __1 + ) { + BrinBloomSummarySend f = new BrinBloomSummarySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomSummarySend( + Field __1 + ) { + BrinBloomSummarySend f = new BrinBloomSummarySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinBloomUnion( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + BrinBloomUnion f = new BrinBloomUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomUnion( + Object __1 + , Object __2 + , Object __3 + ) { + BrinBloomUnion f = new BrinBloomUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinBloomUnion( + Field __1 + , Field __2 + , Field __3 + ) { + BrinBloomUnion f = new BrinBloomUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void brinDesummarizeRange( + Configuration configuration + , Object __1 + , Long __2 + ) { + BrinDesummarizeRange p = new BrinDesummarizeRange(); + p.set__1(__1); + p.set__2(__2); + + p.execute(configuration); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinInclusionAddValue( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinInclusionAddValue f = new BrinInclusionAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinInclusionAddValue( + Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinInclusionAddValue f = new BrinInclusionAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinInclusionAddValue( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + BrinInclusionAddValue f = new BrinInclusionAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinInclusionConsistent( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + BrinInclusionConsistent f = new BrinInclusionConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinInclusionConsistent( + Object __1 + , Object __2 + , Object __3 + ) { + BrinInclusionConsistent f = new BrinInclusionConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinInclusionConsistent( + Field __1 + , Field __2 + , Field __3 + ) { + BrinInclusionConsistent f = new BrinInclusionConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinInclusionOpcinfo( + Configuration configuration + , Object __1 + ) { + BrinInclusionOpcinfo f = new BrinInclusionOpcinfo(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinInclusionOpcinfo( + Object __1 + ) { + BrinInclusionOpcinfo f = new BrinInclusionOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinInclusionOpcinfo( + Field __1 + ) { + BrinInclusionOpcinfo f = new BrinInclusionOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinInclusionUnion( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + BrinInclusionUnion f = new BrinInclusionUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinInclusionUnion( + Object __1 + , Object __2 + , Object __3 + ) { + BrinInclusionUnion f = new BrinInclusionUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinInclusionUnion( + Field __1 + , Field __2 + , Field __3 + ) { + BrinInclusionUnion f = new BrinInclusionUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinMinmaxAddValue( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinMinmaxAddValue f = new BrinMinmaxAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxAddValue( + Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinMinmaxAddValue f = new BrinMinmaxAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxAddValue( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + BrinMinmaxAddValue f = new BrinMinmaxAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinMinmaxConsistent( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + BrinMinmaxConsistent f = new BrinMinmaxConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxConsistent( + Object __1 + , Object __2 + , Object __3 + ) { + BrinMinmaxConsistent f = new BrinMinmaxConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxConsistent( + Field __1 + , Field __2 + , Field __3 + ) { + BrinMinmaxConsistent f = new BrinMinmaxConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinMinmaxMultiAddValue( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinMinmaxMultiAddValue f = new BrinMinmaxMultiAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiAddValue( + Object __1 + , Object __2 + , Object __3 + , Object __4 + ) { + BrinMinmaxMultiAddValue f = new BrinMinmaxMultiAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiAddValue( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + BrinMinmaxMultiAddValue f = new BrinMinmaxMultiAddValue(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinMinmaxMultiConsistent( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + , Integer __4 + ) { + BrinMinmaxMultiConsistent f = new BrinMinmaxMultiConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiConsistent( + Object __1 + , Object __2 + , Object __3 + , Integer __4 + ) { + BrinMinmaxMultiConsistent f = new BrinMinmaxMultiConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiConsistent( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + BrinMinmaxMultiConsistent f = new BrinMinmaxMultiConsistent(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceDate( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceDate f = new BrinMinmaxMultiDistanceDate(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceDate( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceDate f = new BrinMinmaxMultiDistanceDate(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceDate( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceDate f = new BrinMinmaxMultiDistanceDate(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceFloat4( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceFloat4 f = new BrinMinmaxMultiDistanceFloat4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceFloat4( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceFloat4 f = new BrinMinmaxMultiDistanceFloat4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceFloat4( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceFloat4 f = new BrinMinmaxMultiDistanceFloat4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceFloat8( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceFloat8 f = new BrinMinmaxMultiDistanceFloat8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceFloat8( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceFloat8 f = new BrinMinmaxMultiDistanceFloat8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceFloat8( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceFloat8 f = new BrinMinmaxMultiDistanceFloat8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceInet( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInet f = new BrinMinmaxMultiDistanceInet(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInet( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInet f = new BrinMinmaxMultiDistanceInet(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInet( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceInet f = new BrinMinmaxMultiDistanceInet(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceInt2( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInt2 f = new BrinMinmaxMultiDistanceInt2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInt2( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInt2 f = new BrinMinmaxMultiDistanceInt2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInt2( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceInt2 f = new BrinMinmaxMultiDistanceInt2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceInt4( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInt4 f = new BrinMinmaxMultiDistanceInt4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInt4( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInt4 f = new BrinMinmaxMultiDistanceInt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInt4( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceInt4 f = new BrinMinmaxMultiDistanceInt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceInt8( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInt8 f = new BrinMinmaxMultiDistanceInt8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInt8( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInt8 f = new BrinMinmaxMultiDistanceInt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInt8( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceInt8 f = new BrinMinmaxMultiDistanceInt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceInterval( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInterval f = new BrinMinmaxMultiDistanceInterval(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInterval( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceInterval f = new BrinMinmaxMultiDistanceInterval(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceInterval( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceInterval f = new BrinMinmaxMultiDistanceInterval(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceMacaddr( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceMacaddr f = new BrinMinmaxMultiDistanceMacaddr(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceMacaddr( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceMacaddr f = new BrinMinmaxMultiDistanceMacaddr(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceMacaddr( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceMacaddr f = new BrinMinmaxMultiDistanceMacaddr(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceMacaddr8( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceMacaddr8 f = new BrinMinmaxMultiDistanceMacaddr8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceMacaddr8( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceMacaddr8 f = new BrinMinmaxMultiDistanceMacaddr8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceMacaddr8( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceMacaddr8 f = new BrinMinmaxMultiDistanceMacaddr8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceNumeric( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceNumeric f = new BrinMinmaxMultiDistanceNumeric(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceNumeric( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceNumeric f = new BrinMinmaxMultiDistanceNumeric(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceNumeric( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceNumeric f = new BrinMinmaxMultiDistanceNumeric(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistancePgLsn( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistancePgLsn f = new BrinMinmaxMultiDistancePgLsn(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistancePgLsn( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistancePgLsn f = new BrinMinmaxMultiDistancePgLsn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistancePgLsn( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistancePgLsn f = new BrinMinmaxMultiDistancePgLsn(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceTid( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTid f = new BrinMinmaxMultiDistanceTid(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTid( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTid f = new BrinMinmaxMultiDistanceTid(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTid( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceTid f = new BrinMinmaxMultiDistanceTid(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceTime( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTime f = new BrinMinmaxMultiDistanceTime(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTime( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTime f = new BrinMinmaxMultiDistanceTime(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTime( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceTime f = new BrinMinmaxMultiDistanceTime(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceTimestamp( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTimestamp f = new BrinMinmaxMultiDistanceTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTimestamp( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTimestamp f = new BrinMinmaxMultiDistanceTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTimestamp( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceTimestamp f = new BrinMinmaxMultiDistanceTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceTimetz( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTimetz f = new BrinMinmaxMultiDistanceTimetz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTimetz( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceTimetz f = new BrinMinmaxMultiDistanceTimetz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceTimetz( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceTimetz f = new BrinMinmaxMultiDistanceTimetz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double brinMinmaxMultiDistanceUuid( + Configuration configuration + , Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceUuid f = new BrinMinmaxMultiDistanceUuid(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceUuid( + Object __1 + , Object __2 + ) { + BrinMinmaxMultiDistanceUuid f = new BrinMinmaxMultiDistanceUuid(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiDistanceUuid( + Field __1 + , Field __2 + ) { + BrinMinmaxMultiDistanceUuid f = new BrinMinmaxMultiDistanceUuid(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinMinmaxMultiOpcinfo( + Configuration configuration + , Object __1 + ) { + BrinMinmaxMultiOpcinfo f = new BrinMinmaxMultiOpcinfo(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiOpcinfo( + Object __1 + ) { + BrinMinmaxMultiOpcinfo f = new BrinMinmaxMultiOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiOpcinfo( + Field __1 + ) { + BrinMinmaxMultiOpcinfo f = new BrinMinmaxMultiOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void brinMinmaxMultiOptions( + Configuration configuration + , Object __1 + ) { + BrinMinmaxMultiOptions p = new BrinMinmaxMultiOptions(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinMinmaxMultiSummaryIn( + Configuration configuration + , Object __1 + ) { + BrinMinmaxMultiSummaryIn f = new BrinMinmaxMultiSummaryIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummaryIn( + Object __1 + ) { + BrinMinmaxMultiSummaryIn f = new BrinMinmaxMultiSummaryIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummaryIn( + Field __1 + ) { + BrinMinmaxMultiSummaryIn f = new BrinMinmaxMultiSummaryIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinMinmaxMultiSummaryOut( + Configuration configuration + , Object __1 + ) { + BrinMinmaxMultiSummaryOut f = new BrinMinmaxMultiSummaryOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummaryOut( + Object __1 + ) { + BrinMinmaxMultiSummaryOut f = new BrinMinmaxMultiSummaryOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummaryOut( + Field __1 + ) { + BrinMinmaxMultiSummaryOut f = new BrinMinmaxMultiSummaryOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinMinmaxMultiSummaryRecv( + Configuration configuration + , Object __1 + ) { + BrinMinmaxMultiSummaryRecv f = new BrinMinmaxMultiSummaryRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummaryRecv( + Object __1 + ) { + BrinMinmaxMultiSummaryRecv f = new BrinMinmaxMultiSummaryRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummaryRecv( + Field __1 + ) { + BrinMinmaxMultiSummaryRecv f = new BrinMinmaxMultiSummaryRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] brinMinmaxMultiSummarySend( + Configuration configuration + , Object __1 + ) { + BrinMinmaxMultiSummarySend f = new BrinMinmaxMultiSummarySend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummarySend( + Object __1 + ) { + BrinMinmaxMultiSummarySend f = new BrinMinmaxMultiSummarySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiSummarySend( + Field __1 + ) { + BrinMinmaxMultiSummarySend f = new BrinMinmaxMultiSummarySend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinMinmaxMultiUnion( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + BrinMinmaxMultiUnion f = new BrinMinmaxMultiUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiUnion( + Object __1 + , Object __2 + , Object __3 + ) { + BrinMinmaxMultiUnion f = new BrinMinmaxMultiUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxMultiUnion( + Field __1 + , Field __2 + , Field __3 + ) { + BrinMinmaxMultiUnion f = new BrinMinmaxMultiUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinMinmaxOpcinfo( + Configuration configuration + , Object __1 + ) { + BrinMinmaxOpcinfo f = new BrinMinmaxOpcinfo(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxOpcinfo( + Object __1 + ) { + BrinMinmaxOpcinfo f = new BrinMinmaxOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinMinmaxOpcinfo( + Field __1 + ) { + BrinMinmaxOpcinfo f = new BrinMinmaxOpcinfo(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean brinMinmaxUnion( + Configuration configuration + , Object __1 + , Object __2 + , Object __3 + ) { + BrinMinmaxUnion f = new BrinMinmaxUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxUnion( + Object __1 + , Object __2 + , Object __3 + ) { + BrinMinmaxUnion f = new BrinMinmaxUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinMinmaxUnion( + Field __1 + , Field __2 + , Field __3 + ) { + BrinMinmaxUnion f = new BrinMinmaxUnion(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer brinSummarizeNewValues( + Configuration configuration + , Object __1 + ) { + BrinSummarizeNewValues f = new BrinSummarizeNewValues(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinSummarizeNewValues( + Object __1 + ) { + BrinSummarizeNewValues f = new BrinSummarizeNewValues(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinSummarizeNewValues( + Field __1 + ) { + BrinSummarizeNewValues f = new BrinSummarizeNewValues(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer brinSummarizeRange( + Configuration configuration + , Object __1 + , Long __2 + ) { + BrinSummarizeRange f = new BrinSummarizeRange(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinSummarizeRange( + Object __1 + , Long __2 + ) { + BrinSummarizeRange f = new BrinSummarizeRange(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field brinSummarizeRange( + Field __1 + , Field __2 + ) { + BrinSummarizeRange f = new BrinSummarizeRange(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object brinhandler( + Configuration configuration + , Object __1 + ) { + Brinhandler f = new Brinhandler(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinhandler( + Object __1 + ) { + Brinhandler f = new Brinhandler(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field brinhandler( + Field __1 + ) { + Brinhandler f = new Brinhandler(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object broadcast( + Configuration configuration + , Object __1 + ) { + Broadcast f = new Broadcast(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field broadcast( + Object __1 + ) { + Broadcast f = new Broadcast(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field broadcast( + Field __1 + ) { + Broadcast f = new Broadcast(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.btarraycmp + */ + public static Integer btarraycmp( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + Btarraycmp f = new Btarraycmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btarraycmp as a field. + */ + public static Field btarraycmp( + Object[] __1 + , Object[] __2 + ) { + Btarraycmp f = new Btarraycmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btarraycmp as a field. + */ + public static Field btarraycmp( + Field __1 + , Field __2 + ) { + Btarraycmp f = new Btarraycmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btboolcmp + */ + public static Integer btboolcmp( + Configuration configuration + , Boolean __1 + , Boolean __2 + ) { + Btboolcmp f = new Btboolcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btboolcmp as a field. + */ + public static Field btboolcmp( + Boolean __1 + , Boolean __2 + ) { + Btboolcmp f = new Btboolcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btboolcmp as a field. + */ + public static Field btboolcmp( + Field __1 + , Field __2 + ) { + Btboolcmp f = new Btboolcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btbpchar_pattern_cmp + */ + public static Integer btbpcharPatternCmp( + Configuration configuration + , String __1 + , String __2 + ) { + BtbpcharPatternCmp f = new BtbpcharPatternCmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btbpchar_pattern_cmp as a field. + */ + public static Field btbpcharPatternCmp( + String __1 + , String __2 + ) { + BtbpcharPatternCmp f = new BtbpcharPatternCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btbpchar_pattern_cmp as a field. + */ + public static Field btbpcharPatternCmp( + Field __1 + , Field __2 + ) { + BtbpcharPatternCmp f = new BtbpcharPatternCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btbpcharPatternSortsupport( + Configuration configuration + , Object __1 + ) { + BtbpcharPatternSortsupport p = new BtbpcharPatternSortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btcharcmp + */ + public static Integer btcharcmp( + Configuration configuration + , String __1 + , String __2 + ) { + Btcharcmp f = new Btcharcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btcharcmp as a field. + */ + public static Field btcharcmp( + String __1 + , String __2 + ) { + Btcharcmp f = new Btcharcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btcharcmp as a field. + */ + public static Field btcharcmp( + Field __1 + , Field __2 + ) { + Btcharcmp f = new Btcharcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btequalimage + */ + public static Boolean btequalimage( + Configuration configuration + , Long __1 + ) { + Btequalimage f = new Btequalimage(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btequalimage as a field. + */ + public static Field btequalimage( + Long __1 + ) { + Btequalimage f = new Btequalimage(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.btequalimage as a field. + */ + public static Field btequalimage( + Field __1 + ) { + Btequalimage f = new Btequalimage(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.btfloat48cmp + */ + public static Integer btfloat48cmp( + Configuration configuration + , Float __1 + , Double __2 + ) { + Btfloat48cmp f = new Btfloat48cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btfloat48cmp as a field. + */ + public static Field btfloat48cmp( + Float __1 + , Double __2 + ) { + Btfloat48cmp f = new Btfloat48cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btfloat48cmp as a field. + */ + public static Field btfloat48cmp( + Field __1 + , Field __2 + ) { + Btfloat48cmp f = new Btfloat48cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btfloat4cmp + */ + public static Integer btfloat4cmp( + Configuration configuration + , Float __1 + , Float __2 + ) { + Btfloat4cmp f = new Btfloat4cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btfloat4cmp as a field. + */ + public static Field btfloat4cmp( + Float __1 + , Float __2 + ) { + Btfloat4cmp f = new Btfloat4cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btfloat4cmp as a field. + */ + public static Field btfloat4cmp( + Field __1 + , Field __2 + ) { + Btfloat4cmp f = new Btfloat4cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btfloat4sortsupport( + Configuration configuration + , Object __1 + ) { + Btfloat4sortsupport p = new Btfloat4sortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btfloat84cmp + */ + public static Integer btfloat84cmp( + Configuration configuration + , Double __1 + , Float __2 + ) { + Btfloat84cmp f = new Btfloat84cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btfloat84cmp as a field. + */ + public static Field btfloat84cmp( + Double __1 + , Float __2 + ) { + Btfloat84cmp f = new Btfloat84cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btfloat84cmp as a field. + */ + public static Field btfloat84cmp( + Field __1 + , Field __2 + ) { + Btfloat84cmp f = new Btfloat84cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btfloat8cmp + */ + public static Integer btfloat8cmp( + Configuration configuration + , Double __1 + , Double __2 + ) { + Btfloat8cmp f = new Btfloat8cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btfloat8cmp as a field. + */ + public static Field btfloat8cmp( + Double __1 + , Double __2 + ) { + Btfloat8cmp f = new Btfloat8cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btfloat8cmp as a field. + */ + public static Field btfloat8cmp( + Field __1 + , Field __2 + ) { + Btfloat8cmp f = new Btfloat8cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btfloat8sortsupport( + Configuration configuration + , Object __1 + ) { + Btfloat8sortsupport p = new Btfloat8sortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object bthandler( + Configuration configuration + , Object __1 + ) { + Bthandler f = new Bthandler(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bthandler( + Object __1 + ) { + Bthandler f = new Bthandler(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field bthandler( + Field __1 + ) { + Bthandler f = new Bthandler(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.btint24cmp + */ + public static Integer btint24cmp( + Configuration configuration + , Short __1 + , Integer __2 + ) { + Btint24cmp f = new Btint24cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint24cmp as a field. + */ + public static Field btint24cmp( + Short __1 + , Integer __2 + ) { + Btint24cmp f = new Btint24cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint24cmp as a field. + */ + public static Field btint24cmp( + Field __1 + , Field __2 + ) { + Btint24cmp f = new Btint24cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btint28cmp + */ + public static Integer btint28cmp( + Configuration configuration + , Short __1 + , Long __2 + ) { + Btint28cmp f = new Btint28cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint28cmp as a field. + */ + public static Field btint28cmp( + Short __1 + , Long __2 + ) { + Btint28cmp f = new Btint28cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint28cmp as a field. + */ + public static Field btint28cmp( + Field __1 + , Field __2 + ) { + Btint28cmp f = new Btint28cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btint2cmp + */ + public static Integer btint2cmp( + Configuration configuration + , Short __1 + , Short __2 + ) { + Btint2cmp f = new Btint2cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint2cmp as a field. + */ + public static Field btint2cmp( + Short __1 + , Short __2 + ) { + Btint2cmp f = new Btint2cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint2cmp as a field. + */ + public static Field btint2cmp( + Field __1 + , Field __2 + ) { + Btint2cmp f = new Btint2cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btint2sortsupport( + Configuration configuration + , Object __1 + ) { + Btint2sortsupport p = new Btint2sortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btint42cmp + */ + public static Integer btint42cmp( + Configuration configuration + , Integer __1 + , Short __2 + ) { + Btint42cmp f = new Btint42cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint42cmp as a field. + */ + public static Field btint42cmp( + Integer __1 + , Short __2 + ) { + Btint42cmp f = new Btint42cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint42cmp as a field. + */ + public static Field btint42cmp( + Field __1 + , Field __2 + ) { + Btint42cmp f = new Btint42cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btint48cmp + */ + public static Integer btint48cmp( + Configuration configuration + , Integer __1 + , Long __2 + ) { + Btint48cmp f = new Btint48cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint48cmp as a field. + */ + public static Field btint48cmp( + Integer __1 + , Long __2 + ) { + Btint48cmp f = new Btint48cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint48cmp as a field. + */ + public static Field btint48cmp( + Field __1 + , Field __2 + ) { + Btint48cmp f = new Btint48cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btint4cmp + */ + public static Integer btint4cmp( + Configuration configuration + , Integer __1 + , Integer __2 + ) { + Btint4cmp f = new Btint4cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint4cmp as a field. + */ + public static Field btint4cmp( + Integer __1 + , Integer __2 + ) { + Btint4cmp f = new Btint4cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint4cmp as a field. + */ + public static Field btint4cmp( + Field __1 + , Field __2 + ) { + Btint4cmp f = new Btint4cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btint4sortsupport( + Configuration configuration + , Object __1 + ) { + Btint4sortsupport p = new Btint4sortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btint82cmp + */ + public static Integer btint82cmp( + Configuration configuration + , Long __1 + , Short __2 + ) { + Btint82cmp f = new Btint82cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint82cmp as a field. + */ + public static Field btint82cmp( + Long __1 + , Short __2 + ) { + Btint82cmp f = new Btint82cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint82cmp as a field. + */ + public static Field btint82cmp( + Field __1 + , Field __2 + ) { + Btint82cmp f = new Btint82cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btint84cmp + */ + public static Integer btint84cmp( + Configuration configuration + , Long __1 + , Integer __2 + ) { + Btint84cmp f = new Btint84cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint84cmp as a field. + */ + public static Field btint84cmp( + Long __1 + , Integer __2 + ) { + Btint84cmp f = new Btint84cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint84cmp as a field. + */ + public static Field btint84cmp( + Field __1 + , Field __2 + ) { + Btint84cmp f = new Btint84cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btint8cmp + */ + public static Integer btint8cmp( + Configuration configuration + , Long __1 + , Long __2 + ) { + Btint8cmp f = new Btint8cmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btint8cmp as a field. + */ + public static Field btint8cmp( + Long __1 + , Long __2 + ) { + Btint8cmp f = new Btint8cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btint8cmp as a field. + */ + public static Field btint8cmp( + Field __1 + , Field __2 + ) { + Btint8cmp f = new Btint8cmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btint8sortsupport( + Configuration configuration + , Object __1 + ) { + Btint8sortsupport p = new Btint8sortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btnamecmp + */ + public static Integer btnamecmp( + Configuration configuration + , String __1 + , String __2 + ) { + Btnamecmp f = new Btnamecmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btnamecmp as a field. + */ + public static Field btnamecmp( + String __1 + , String __2 + ) { + Btnamecmp f = new Btnamecmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btnamecmp as a field. + */ + public static Field btnamecmp( + Field __1 + , Field __2 + ) { + Btnamecmp f = new Btnamecmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btnamesortsupport( + Configuration configuration + , Object __1 + ) { + Btnamesortsupport p = new Btnamesortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btnametextcmp + */ + public static Integer btnametextcmp( + Configuration configuration + , String __1 + , String __2 + ) { + Btnametextcmp f = new Btnametextcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btnametextcmp as a field. + */ + public static Field btnametextcmp( + String __1 + , String __2 + ) { + Btnametextcmp f = new Btnametextcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btnametextcmp as a field. + */ + public static Field btnametextcmp( + Field __1 + , Field __2 + ) { + Btnametextcmp f = new Btnametextcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btoidcmp + */ + public static Integer btoidcmp( + Configuration configuration + , Long __1 + , Long __2 + ) { + Btoidcmp f = new Btoidcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btoidcmp as a field. + */ + public static Field btoidcmp( + Long __1 + , Long __2 + ) { + Btoidcmp f = new Btoidcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btoidcmp as a field. + */ + public static Field btoidcmp( + Field __1 + , Field __2 + ) { + Btoidcmp f = new Btoidcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void btoidsortsupport( + Configuration configuration + , Object __1 + ) { + Btoidsortsupport p = new Btoidsortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.btoidvectorcmp + */ + public static Integer btoidvectorcmp( + Configuration configuration + , Object[] __1 + , Object[] __2 + ) { + Btoidvectorcmp f = new Btoidvectorcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btoidvectorcmp as a field. + */ + public static Field btoidvectorcmp( + Object[] __1 + , Object[] __2 + ) { + Btoidvectorcmp f = new Btoidvectorcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btoidvectorcmp as a field. + */ + public static Field btoidvectorcmp( + Field __1 + , Field __2 + ) { + Btoidvectorcmp f = new Btoidvectorcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btrecordcmp + */ + public static Integer btrecordcmp( + Configuration configuration + , Record __1 + , Record __2 + ) { + Btrecordcmp f = new Btrecordcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btrecordcmp as a field. + */ + public static Field btrecordcmp( + Record __1 + , Record __2 + ) { + Btrecordcmp f = new Btrecordcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btrecordcmp as a field. + */ + public static Field btrecordcmp( + Field __1 + , Field __2 + ) { + Btrecordcmp f = new Btrecordcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btrecordimagecmp + */ + public static Integer btrecordimagecmp( + Configuration configuration + , Record __1 + , Record __2 + ) { + Btrecordimagecmp f = new Btrecordimagecmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btrecordimagecmp as a field. + */ + public static Field btrecordimagecmp( + Record __1 + , Record __2 + ) { + Btrecordimagecmp f = new Btrecordimagecmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btrecordimagecmp as a field. + */ + public static Field btrecordimagecmp( + Field __1 + , Field __2 + ) { + Btrecordimagecmp f = new Btrecordimagecmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btrim + */ + public static byte[] btrim1( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Btrim1 f = new Btrim1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btrim as a field. + */ + public static Field btrim1( + byte[] __1 + , byte[] __2 + ) { + Btrim1 f = new Btrim1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btrim as a field. + */ + public static Field btrim1( + Field __1 + , Field __2 + ) { + Btrim1 f = new Btrim1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btrim + */ + public static String btrim2( + Configuration configuration + , String __1 + , String __2 + ) { + Btrim2 f = new Btrim2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btrim as a field. + */ + public static Field btrim2( + String __1 + , String __2 + ) { + Btrim2 f = new Btrim2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.btrim as a field. + */ + public static Field btrim2( + Field __1 + , Field __2 + ) { + Btrim2 f = new Btrim2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btrim + */ + public static String btrim3( + Configuration configuration + , String __1 + ) { + Btrim3 f = new Btrim3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btrim as a field. + */ + public static Field btrim3( + String __1 + ) { + Btrim3 f = new Btrim3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.btrim as a field. + */ + public static Field btrim3( + Field __1 + ) { + Btrim3 f = new Btrim3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.bttext_pattern_cmp + */ + public static Integer bttextPatternCmp( + Configuration configuration + , String __1 + , String __2 + ) { + BttextPatternCmp f = new BttextPatternCmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bttext_pattern_cmp as a field. + */ + public static Field bttextPatternCmp( + String __1 + , String __2 + ) { + BttextPatternCmp f = new BttextPatternCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bttext_pattern_cmp as a field. + */ + public static Field bttextPatternCmp( + Field __1 + , Field __2 + ) { + BttextPatternCmp f = new BttextPatternCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void bttextPatternSortsupport( + Configuration configuration + , Object __1 + ) { + BttextPatternSortsupport p = new BttextPatternSortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.bttextcmp + */ + public static Integer bttextcmp( + Configuration configuration + , String __1 + , String __2 + ) { + Bttextcmp f = new Bttextcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bttextcmp as a field. + */ + public static Field bttextcmp( + String __1 + , String __2 + ) { + Bttextcmp f = new Bttextcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bttextcmp as a field. + */ + public static Field bttextcmp( + Field __1 + , Field __2 + ) { + Bttextcmp f = new Bttextcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bttextnamecmp + */ + public static Integer bttextnamecmp( + Configuration configuration + , String __1 + , String __2 + ) { + Bttextnamecmp f = new Bttextnamecmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bttextnamecmp as a field. + */ + public static Field bttextnamecmp( + String __1 + , String __2 + ) { + Bttextnamecmp f = new Bttextnamecmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bttextnamecmp as a field. + */ + public static Field bttextnamecmp( + Field __1 + , Field __2 + ) { + Bttextnamecmp f = new Bttextnamecmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void bttextsortsupport( + Configuration configuration + , Object __1 + ) { + Bttextsortsupport p = new Bttextsortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * Call pg_catalog.bttidcmp + */ + public static Integer bttidcmp( + Configuration configuration + , Long __1 + , Long __2 + ) { + Bttidcmp f = new Bttidcmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bttidcmp as a field. + */ + public static Field bttidcmp( + Long __1 + , Long __2 + ) { + Bttidcmp f = new Bttidcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bttidcmp as a field. + */ + public static Field bttidcmp( + Field __1 + , Field __2 + ) { + Bttidcmp f = new Bttidcmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.btvarstrequalimage + */ + public static Boolean btvarstrequalimage( + Configuration configuration + , Long __1 + ) { + Btvarstrequalimage f = new Btvarstrequalimage(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.btvarstrequalimage as a field. + */ + public static Field btvarstrequalimage( + Long __1 + ) { + Btvarstrequalimage f = new Btvarstrequalimage(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.btvarstrequalimage as a field. + */ + public static Field btvarstrequalimage( + Field __1 + ) { + Btvarstrequalimage f = new Btvarstrequalimage(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static void byteaSortsupport( + Configuration configuration + , Object __1 + ) { + ByteaSortsupport p = new ByteaSortsupport(); + p.set__1(__1); + + p.execute(configuration); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] byteaStringAggFinalfn( + Configuration configuration + , Object __1 + ) { + ByteaStringAggFinalfn f = new ByteaStringAggFinalfn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field byteaStringAggFinalfn( + Object __1 + ) { + ByteaStringAggFinalfn f = new ByteaStringAggFinalfn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field byteaStringAggFinalfn( + Field __1 + ) { + ByteaStringAggFinalfn f = new ByteaStringAggFinalfn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object byteaStringAggTransfn( + Configuration configuration + , Object __1 + , byte[] __2 + , byte[] __3 + ) { + ByteaStringAggTransfn f = new ByteaStringAggTransfn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field byteaStringAggTransfn( + Object __1 + , byte[] __2 + , byte[] __3 + ) { + ByteaStringAggTransfn f = new ByteaStringAggTransfn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field byteaStringAggTransfn( + Field __1 + , Field __2 + , Field __3 + ) { + ByteaStringAggTransfn f = new ByteaStringAggTransfn(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.byteacat + */ + public static byte[] byteacat( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteacat f = new Byteacat(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteacat as a field. + */ + public static Field byteacat( + byte[] __1 + , byte[] __2 + ) { + Byteacat f = new Byteacat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteacat as a field. + */ + public static Field byteacat( + Field __1 + , Field __2 + ) { + Byteacat f = new Byteacat(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.byteacmp + */ + public static Integer byteacmp( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteacmp f = new Byteacmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteacmp as a field. + */ + public static Field byteacmp( + byte[] __1 + , byte[] __2 + ) { + Byteacmp f = new Byteacmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteacmp as a field. + */ + public static Field byteacmp( + Field __1 + , Field __2 + ) { + Byteacmp f = new Byteacmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.byteaeq + */ + public static Boolean byteaeq( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteaeq f = new Byteaeq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteaeq as a field. + */ + public static Field byteaeq( + byte[] __1 + , byte[] __2 + ) { + Byteaeq f = new Byteaeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteaeq as a field. + */ + public static Field byteaeq( + Field __1 + , Field __2 + ) { + Byteaeq f = new Byteaeq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.byteage + */ + public static Boolean byteage( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteage f = new Byteage(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteage as a field. + */ + public static Field byteage( + byte[] __1 + , byte[] __2 + ) { + Byteage f = new Byteage(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteage as a field. + */ + public static Field byteage( + Field __1 + , Field __2 + ) { + Byteage f = new Byteage(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.byteagt + */ + public static Boolean byteagt( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteagt f = new Byteagt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteagt as a field. + */ + public static Field byteagt( + byte[] __1 + , byte[] __2 + ) { + Byteagt f = new Byteagt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteagt as a field. + */ + public static Field byteagt( + Field __1 + , Field __2 + ) { + Byteagt f = new Byteagt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] byteain( + Configuration configuration + , Object __1 + ) { + Byteain f = new Byteain(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field byteain( + Object __1 + ) { + Byteain f = new Byteain(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field byteain( + Field __1 + ) { + Byteain f = new Byteain(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.byteale + */ + public static Boolean byteale( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteale f = new Byteale(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteale as a field. + */ + public static Field byteale( + byte[] __1 + , byte[] __2 + ) { + Byteale f = new Byteale(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteale as a field. + */ + public static Field byteale( + Field __1 + , Field __2 + ) { + Byteale f = new Byteale(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bytealike + */ + public static Boolean bytealike( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Bytealike f = new Bytealike(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bytealike as a field. + */ + public static Field bytealike( + byte[] __1 + , byte[] __2 + ) { + Bytealike f = new Bytealike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bytealike as a field. + */ + public static Field bytealike( + Field __1 + , Field __2 + ) { + Bytealike f = new Bytealike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.bytealt + */ + public static Boolean bytealt( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Bytealt f = new Bytealt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.bytealt as a field. + */ + public static Field bytealt( + byte[] __1 + , byte[] __2 + ) { + Bytealt f = new Bytealt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.bytealt as a field. + */ + public static Field bytealt( + Field __1 + , Field __2 + ) { + Bytealt f = new Bytealt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.byteane + */ + public static Boolean byteane( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteane f = new Byteane(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteane as a field. + */ + public static Field byteane( + byte[] __1 + , byte[] __2 + ) { + Byteane f = new Byteane(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteane as a field. + */ + public static Field byteane( + Field __1 + , Field __2 + ) { + Byteane f = new Byteane(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.byteanlike + */ + public static Boolean byteanlike( + Configuration configuration + , byte[] __1 + , byte[] __2 + ) { + Byteanlike f = new Byteanlike(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteanlike as a field. + */ + public static Field byteanlike( + byte[] __1 + , byte[] __2 + ) { + Byteanlike f = new Byteanlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.byteanlike as a field. + */ + public static Field byteanlike( + Field __1 + , Field __2 + ) { + Byteanlike f = new Byteanlike(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object byteaout( + Configuration configuration + , byte[] __1 + ) { + Byteaout f = new Byteaout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field byteaout( + byte[] __1 + ) { + Byteaout f = new Byteaout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field byteaout( + Field __1 + ) { + Byteaout f = new Byteaout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] bytearecv( + Configuration configuration + , Object __1 + ) { + Bytearecv f = new Bytearecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bytearecv( + Object __1 + ) { + Bytearecv f = new Bytearecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field bytearecv( + Field __1 + ) { + Bytearecv f = new Bytearecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.byteasend + */ + public static byte[] byteasend( + Configuration configuration + , byte[] __1 + ) { + Byteasend f = new Byteasend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.byteasend as a field. + */ + public static Field byteasend( + byte[] __1 + ) { + Byteasend f = new Byteasend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.byteasend as a field. + */ + public static Field byteasend( + Field __1 + ) { + Byteasend f = new Byteasend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cardinality + */ + public static Integer cardinality( + Configuration configuration + , Object[] __1 + ) { + Cardinality f = new Cardinality(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cardinality as a field. + */ + public static Field cardinality( + Object[] __1 + ) { + Cardinality f = new Cardinality(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cardinality as a field. + */ + public static Field cardinality( + Field __1 + ) { + Cardinality f = new Cardinality(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Integer cashCmp( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashCmp f = new CashCmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashCmp( + Object __1 + , Object __2 + ) { + CashCmp f = new CashCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashCmp( + Field __1 + , Field __2 + ) { + CashCmp f = new CashCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double cashDivCash( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashDivCash f = new CashDivCash(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashDivCash( + Object __1 + , Object __2 + ) { + CashDivCash f = new CashDivCash(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashDivCash( + Field __1 + , Field __2 + ) { + CashDivCash f = new CashDivCash(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashDivFlt4( + Configuration configuration + , Object __1 + , Float __2 + ) { + CashDivFlt4 f = new CashDivFlt4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivFlt4( + Object __1 + , Float __2 + ) { + CashDivFlt4 f = new CashDivFlt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivFlt4( + Field __1 + , Field __2 + ) { + CashDivFlt4 f = new CashDivFlt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashDivFlt8( + Configuration configuration + , Object __1 + , Double __2 + ) { + CashDivFlt8 f = new CashDivFlt8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivFlt8( + Object __1 + , Double __2 + ) { + CashDivFlt8 f = new CashDivFlt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivFlt8( + Field __1 + , Field __2 + ) { + CashDivFlt8 f = new CashDivFlt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashDivInt2( + Configuration configuration + , Object __1 + , Short __2 + ) { + CashDivInt2 f = new CashDivInt2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivInt2( + Object __1 + , Short __2 + ) { + CashDivInt2 f = new CashDivInt2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivInt2( + Field __1 + , Field __2 + ) { + CashDivInt2 f = new CashDivInt2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashDivInt4( + Configuration configuration + , Object __1 + , Integer __2 + ) { + CashDivInt4 f = new CashDivInt4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivInt4( + Object __1 + , Integer __2 + ) { + CashDivInt4 f = new CashDivInt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivInt4( + Field __1 + , Field __2 + ) { + CashDivInt4 f = new CashDivInt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashDivInt8( + Configuration configuration + , Object __1 + , Long __2 + ) { + CashDivInt8 f = new CashDivInt8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivInt8( + Object __1 + , Long __2 + ) { + CashDivInt8 f = new CashDivInt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashDivInt8( + Field __1 + , Field __2 + ) { + CashDivInt8 f = new CashDivInt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean cashEq( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashEq f = new CashEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashEq( + Object __1 + , Object __2 + ) { + CashEq f = new CashEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashEq( + Field __1 + , Field __2 + ) { + CashEq f = new CashEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean cashGe( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashGe f = new CashGe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashGe( + Object __1 + , Object __2 + ) { + CashGe f = new CashGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashGe( + Field __1 + , Field __2 + ) { + CashGe f = new CashGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean cashGt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashGt f = new CashGt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashGt( + Object __1 + , Object __2 + ) { + CashGt f = new CashGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashGt( + Field __1 + , Field __2 + ) { + CashGt f = new CashGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashIn( + Configuration configuration + , Object __1 + ) { + CashIn f = new CashIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashIn( + Object __1 + ) { + CashIn f = new CashIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashIn( + Field __1 + ) { + CashIn f = new CashIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean cashLe( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashLe f = new CashLe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashLe( + Object __1 + , Object __2 + ) { + CashLe f = new CashLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashLe( + Field __1 + , Field __2 + ) { + CashLe f = new CashLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean cashLt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashLt f = new CashLt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashLt( + Object __1 + , Object __2 + ) { + CashLt f = new CashLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashLt( + Field __1 + , Field __2 + ) { + CashLt f = new CashLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashMi( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashMi f = new CashMi(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMi( + Object __1 + , Object __2 + ) { + CashMi f = new CashMi(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMi( + Field __1 + , Field __2 + ) { + CashMi f = new CashMi(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashMulFlt4( + Configuration configuration + , Object __1 + , Float __2 + ) { + CashMulFlt4 f = new CashMulFlt4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulFlt4( + Object __1 + , Float __2 + ) { + CashMulFlt4 f = new CashMulFlt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulFlt4( + Field __1 + , Field __2 + ) { + CashMulFlt4 f = new CashMulFlt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashMulFlt8( + Configuration configuration + , Object __1 + , Double __2 + ) { + CashMulFlt8 f = new CashMulFlt8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulFlt8( + Object __1 + , Double __2 + ) { + CashMulFlt8 f = new CashMulFlt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulFlt8( + Field __1 + , Field __2 + ) { + CashMulFlt8 f = new CashMulFlt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashMulInt2( + Configuration configuration + , Object __1 + , Short __2 + ) { + CashMulInt2 f = new CashMulInt2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulInt2( + Object __1 + , Short __2 + ) { + CashMulInt2 f = new CashMulInt2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulInt2( + Field __1 + , Field __2 + ) { + CashMulInt2 f = new CashMulInt2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashMulInt4( + Configuration configuration + , Object __1 + , Integer __2 + ) { + CashMulInt4 f = new CashMulInt4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulInt4( + Object __1 + , Integer __2 + ) { + CashMulInt4 f = new CashMulInt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulInt4( + Field __1 + , Field __2 + ) { + CashMulInt4 f = new CashMulInt4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashMulInt8( + Configuration configuration + , Object __1 + , Long __2 + ) { + CashMulInt8 f = new CashMulInt8(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulInt8( + Object __1 + , Long __2 + ) { + CashMulInt8 f = new CashMulInt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashMulInt8( + Field __1 + , Field __2 + ) { + CashMulInt8 f = new CashMulInt8(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean cashNe( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashNe f = new CashNe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashNe( + Object __1 + , Object __2 + ) { + CashNe f = new CashNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashNe( + Field __1 + , Field __2 + ) { + CashNe f = new CashNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashOut( + Configuration configuration + , Object __1 + ) { + CashOut f = new CashOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashOut( + Object __1 + ) { + CashOut f = new CashOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashOut( + Field __1 + ) { + CashOut f = new CashOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashPl( + Configuration configuration + , Object __1 + , Object __2 + ) { + CashPl f = new CashPl(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashPl( + Object __1 + , Object __2 + ) { + CashPl f = new CashPl(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashPl( + Field __1 + , Field __2 + ) { + CashPl f = new CashPl(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashRecv( + Configuration configuration + , Object __1 + ) { + CashRecv f = new CashRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashRecv( + Object __1 + ) { + CashRecv f = new CashRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashRecv( + Field __1 + ) { + CashRecv f = new CashRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] cashSend( + Configuration configuration + , Object __1 + ) { + CashSend f = new CashSend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashSend( + Object __1 + ) { + CashSend f = new CashSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashSend( + Field __1 + ) { + CashSend f = new CashSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String cashWords( + Configuration configuration + , Object __1 + ) { + CashWords f = new CashWords(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashWords( + Object __1 + ) { + CashWords f = new CashWords(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cashWords( + Field __1 + ) { + CashWords f = new CashWords(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashlarger( + Configuration configuration + , Object __1 + , Object __2 + ) { + Cashlarger f = new Cashlarger(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashlarger( + Object __1 + , Object __2 + ) { + Cashlarger f = new Cashlarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashlarger( + Field __1 + , Field __2 + ) { + Cashlarger f = new Cashlarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cashsmaller( + Configuration configuration + , Object __1 + , Object __2 + ) { + Cashsmaller f = new Cashsmaller(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashsmaller( + Object __1 + , Object __2 + ) { + Cashsmaller f = new Cashsmaller(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cashsmaller( + Field __1 + , Field __2 + ) { + Cashsmaller f = new Cashsmaller(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.cbrt + */ + public static Double cbrt( + Configuration configuration + , Double __1 + ) { + Cbrt f = new Cbrt(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cbrt as a field. + */ + public static Field cbrt( + Double __1 + ) { + Cbrt f = new Cbrt(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cbrt as a field. + */ + public static Field cbrt( + Field __1 + ) { + Cbrt f = new Cbrt(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.ceil + */ + public static BigDecimal ceil1( + Configuration configuration + , BigDecimal __1 + ) { + Ceil1 f = new Ceil1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.ceil as a field. + */ + public static Field ceil1( + BigDecimal __1 + ) { + Ceil1 f = new Ceil1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.ceil as a field. + */ + public static Field ceil1( + Field __1 + ) { + Ceil1 f = new Ceil1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.ceil + */ + public static Double ceil2( + Configuration configuration + , Double __1 + ) { + Ceil2 f = new Ceil2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.ceil as a field. + */ + public static Field ceil2( + Double __1 + ) { + Ceil2 f = new Ceil2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.ceil as a field. + */ + public static Field ceil2( + Field __1 + ) { + Ceil2 f = new Ceil2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.ceiling + */ + public static BigDecimal ceiling1( + Configuration configuration + , BigDecimal __1 + ) { + Ceiling1 f = new Ceiling1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.ceiling as a field. + */ + public static Field ceiling1( + BigDecimal __1 + ) { + Ceiling1 f = new Ceiling1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.ceiling as a field. + */ + public static Field ceiling1( + Field __1 + ) { + Ceiling1 f = new Ceiling1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.ceiling + */ + public static Double ceiling2( + Configuration configuration + , Double __1 + ) { + Ceiling2 f = new Ceiling2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.ceiling as a field. + */ + public static Field ceiling2( + Double __1 + ) { + Ceiling2 f = new Ceiling2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.ceiling as a field. + */ + public static Field ceiling2( + Field __1 + ) { + Ceiling2 f = new Ceiling2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object center1( + Configuration configuration + , Object __1 + ) { + Center1 f = new Center1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field center1( + Object __1 + ) { + Center1 f = new Center1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field center1( + Field __1 + ) { + Center1 f = new Center1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object center2( + Configuration configuration + , Object __1 + ) { + Center2 f = new Center2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field center2( + Object __1 + ) { + Center2 f = new Center2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field center2( + Field __1 + ) { + Center2 f = new Center2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.char + */ + public static String char1( + Configuration configuration + , Integer __1 + ) { + Char1 f = new Char1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.char as a field. + */ + public static Field char1( + Integer __1 + ) { + Char1 f = new Char1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.char as a field. + */ + public static Field char1( + Field __1 + ) { + Char1 f = new Char1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.char + */ + public static String char2( + Configuration configuration + , String __1 + ) { + Char2 f = new Char2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.char as a field. + */ + public static Field char2( + String __1 + ) { + Char2 f = new Char2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.char as a field. + */ + public static Field char2( + Field __1 + ) { + Char2 f = new Char2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.char_length + */ + public static Integer charLength1( + Configuration configuration + , String __1 + ) { + CharLength1 f = new CharLength1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.char_length as a field. + */ + public static Field charLength1( + String __1 + ) { + CharLength1 f = new CharLength1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.char_length as a field. + */ + public static Field charLength1( + Field __1 + ) { + CharLength1 f = new CharLength1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.char_length + */ + public static Integer charLength2( + Configuration configuration + , String __1 + ) { + CharLength2 f = new CharLength2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.char_length as a field. + */ + public static Field charLength2( + String __1 + ) { + CharLength2 f = new CharLength2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.char_length as a field. + */ + public static Field charLength2( + Field __1 + ) { + CharLength2 f = new CharLength2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.character_length + */ + public static Integer characterLength1( + Configuration configuration + , String __1 + ) { + CharacterLength1 f = new CharacterLength1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.character_length as a field. + */ + public static Field characterLength1( + String __1 + ) { + CharacterLength1 f = new CharacterLength1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.character_length as a field. + */ + public static Field characterLength1( + Field __1 + ) { + CharacterLength1 f = new CharacterLength1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.character_length + */ + public static Integer characterLength2( + Configuration configuration + , String __1 + ) { + CharacterLength2 f = new CharacterLength2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.character_length as a field. + */ + public static Field characterLength2( + String __1 + ) { + CharacterLength2 f = new CharacterLength2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.character_length as a field. + */ + public static Field characterLength2( + Field __1 + ) { + CharacterLength2 f = new CharacterLength2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.chareq + */ + public static Boolean chareq( + Configuration configuration + , String __1 + , String __2 + ) { + Chareq f = new Chareq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.chareq as a field. + */ + public static Field chareq( + String __1 + , String __2 + ) { + Chareq f = new Chareq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.chareq as a field. + */ + public static Field chareq( + Field __1 + , Field __2 + ) { + Chareq f = new Chareq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.charge + */ + public static Boolean charge( + Configuration configuration + , String __1 + , String __2 + ) { + Charge f = new Charge(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.charge as a field. + */ + public static Field charge( + String __1 + , String __2 + ) { + Charge f = new Charge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.charge as a field. + */ + public static Field charge( + Field __1 + , Field __2 + ) { + Charge f = new Charge(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.chargt + */ + public static Boolean chargt( + Configuration configuration + , String __1 + , String __2 + ) { + Chargt f = new Chargt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.chargt as a field. + */ + public static Field chargt( + String __1 + , String __2 + ) { + Chargt f = new Chargt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.chargt as a field. + */ + public static Field chargt( + Field __1 + , Field __2 + ) { + Chargt f = new Chargt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String charin( + Configuration configuration + , Object __1 + ) { + Charin f = new Charin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field charin( + Object __1 + ) { + Charin f = new Charin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field charin( + Field __1 + ) { + Charin f = new Charin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.charle + */ + public static Boolean charle( + Configuration configuration + , String __1 + , String __2 + ) { + Charle f = new Charle(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.charle as a field. + */ + public static Field charle( + String __1 + , String __2 + ) { + Charle f = new Charle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.charle as a field. + */ + public static Field charle( + Field __1 + , Field __2 + ) { + Charle f = new Charle(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.charlt + */ + public static Boolean charlt( + Configuration configuration + , String __1 + , String __2 + ) { + Charlt f = new Charlt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.charlt as a field. + */ + public static Field charlt( + String __1 + , String __2 + ) { + Charlt f = new Charlt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.charlt as a field. + */ + public static Field charlt( + Field __1 + , Field __2 + ) { + Charlt f = new Charlt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.charne + */ + public static Boolean charne( + Configuration configuration + , String __1 + , String __2 + ) { + Charne f = new Charne(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.charne as a field. + */ + public static Field charne( + String __1 + , String __2 + ) { + Charne f = new Charne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.charne as a field. + */ + public static Field charne( + Field __1 + , Field __2 + ) { + Charne f = new Charne(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object charout( + Configuration configuration + , String __1 + ) { + Charout f = new Charout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field charout( + String __1 + ) { + Charout f = new Charout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field charout( + Field __1 + ) { + Charout f = new Charout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String charrecv( + Configuration configuration + , Object __1 + ) { + Charrecv f = new Charrecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field charrecv( + Object __1 + ) { + Charrecv f = new Charrecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field charrecv( + Field __1 + ) { + Charrecv f = new Charrecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.charsend + */ + public static byte[] charsend( + Configuration configuration + , String __1 + ) { + Charsend f = new Charsend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.charsend as a field. + */ + public static Field charsend( + String __1 + ) { + Charsend f = new Charsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.charsend as a field. + */ + public static Field charsend( + Field __1 + ) { + Charsend f = new Charsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.chr + */ + public static String chr( + Configuration configuration + , Integer __1 + ) { + Chr f = new Chr(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.chr as a field. + */ + public static Field chr( + Integer __1 + ) { + Chr f = new Chr(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.chr as a field. + */ + public static Field chr( + Field __1 + ) { + Chr f = new Chr(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cideq + */ + public static Boolean cideq( + Configuration configuration + , Long __1 + , Long __2 + ) { + Cideq f = new Cideq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cideq as a field. + */ + public static Field cideq( + Long __1 + , Long __2 + ) { + Cideq f = new Cideq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.cideq as a field. + */ + public static Field cideq( + Field __1 + , Field __2 + ) { + Cideq f = new Cideq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Long cidin( + Configuration configuration + , Object __1 + ) { + Cidin f = new Cidin(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cidin( + Object __1 + ) { + Cidin f = new Cidin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cidin( + Field __1 + ) { + Cidin f = new Cidin(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cidout( + Configuration configuration + , Long __1 + ) { + Cidout f = new Cidout(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidout( + Long __1 + ) { + Cidout f = new Cidout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidout( + Field __1 + ) { + Cidout f = new Cidout(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cidr( + Configuration configuration + , Object __1 + ) { + Cidr f = new Cidr(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidr( + Object __1 + ) { + Cidr f = new Cidr(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidr( + Field __1 + ) { + Cidr f = new Cidr(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cidrIn( + Configuration configuration + , Object __1 + ) { + CidrIn f = new CidrIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidrIn( + Object __1 + ) { + CidrIn f = new CidrIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidrIn( + Field __1 + ) { + CidrIn f = new CidrIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cidrOut( + Configuration configuration + , Object __1 + ) { + CidrOut f = new CidrOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidrOut( + Object __1 + ) { + CidrOut f = new CidrOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidrOut( + Field __1 + ) { + CidrOut f = new CidrOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cidrRecv( + Configuration configuration + , Object __1 + ) { + CidrRecv f = new CidrRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidrRecv( + Object __1 + ) { + CidrRecv f = new CidrRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cidrRecv( + Field __1 + ) { + CidrRecv f = new CidrRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] cidrSend( + Configuration configuration + , Object __1 + ) { + CidrSend f = new CidrSend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cidrSend( + Object __1 + ) { + CidrSend f = new CidrSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cidrSend( + Field __1 + ) { + CidrSend f = new CidrSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Long cidrecv( + Configuration configuration + , Object __1 + ) { + Cidrecv f = new Cidrecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cidrecv( + Object __1 + ) { + Cidrecv f = new Cidrecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cidrecv( + Field __1 + ) { + Cidrecv f = new Cidrecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cidsend + */ + public static byte[] cidsend( + Configuration configuration + , Long __1 + ) { + Cidsend f = new Cidsend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cidsend as a field. + */ + public static Field cidsend( + Long __1 + ) { + Cidsend f = new Cidsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cidsend as a field. + */ + public static Field cidsend( + Field __1 + ) { + Cidsend f = new Cidsend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circle1( + Configuration configuration + , Object __1 + , Double __2 + ) { + Circle1 f = new Circle1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circle1( + Object __1 + , Double __2 + ) { + Circle1 f = new Circle1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circle1( + Field __1 + , Field __2 + ) { + Circle1 f = new Circle1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circle2( + Configuration configuration + , Object __1 + ) { + Circle2 f = new Circle2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circle2( + Object __1 + ) { + Circle2 f = new Circle2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circle2( + Field __1 + ) { + Circle2 f = new Circle2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circle3( + Configuration configuration + , Object __1 + ) { + Circle3 f = new Circle3(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circle3( + Object __1 + ) { + Circle3 f = new Circle3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circle3( + Field __1 + ) { + Circle3 f = new Circle3(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleAbove( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleAbove f = new CircleAbove(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleAbove( + Object __1 + , Object __2 + ) { + CircleAbove f = new CircleAbove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleAbove( + Field __1 + , Field __2 + ) { + CircleAbove f = new CircleAbove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleAddPt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleAddPt f = new CircleAddPt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleAddPt( + Object __1 + , Object __2 + ) { + CircleAddPt f = new CircleAddPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleAddPt( + Field __1 + , Field __2 + ) { + CircleAddPt f = new CircleAddPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleBelow( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleBelow f = new CircleBelow(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleBelow( + Object __1 + , Object __2 + ) { + CircleBelow f = new CircleBelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleBelow( + Field __1 + , Field __2 + ) { + CircleBelow f = new CircleBelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleCenter( + Configuration configuration + , Object __1 + ) { + CircleCenter f = new CircleCenter(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleCenter( + Object __1 + ) { + CircleCenter f = new CircleCenter(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleCenter( + Field __1 + ) { + CircleCenter f = new CircleCenter(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleContain( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleContain f = new CircleContain(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleContain( + Object __1 + , Object __2 + ) { + CircleContain f = new CircleContain(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleContain( + Field __1 + , Field __2 + ) { + CircleContain f = new CircleContain(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleContainPt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleContainPt f = new CircleContainPt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleContainPt( + Object __1 + , Object __2 + ) { + CircleContainPt f = new CircleContainPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleContainPt( + Field __1 + , Field __2 + ) { + CircleContainPt f = new CircleContainPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleContained( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleContained f = new CircleContained(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleContained( + Object __1 + , Object __2 + ) { + CircleContained f = new CircleContained(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleContained( + Field __1 + , Field __2 + ) { + CircleContained f = new CircleContained(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double circleDistance( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleDistance f = new CircleDistance(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleDistance( + Object __1 + , Object __2 + ) { + CircleDistance f = new CircleDistance(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleDistance( + Field __1 + , Field __2 + ) { + CircleDistance f = new CircleDistance(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleDivPt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleDivPt f = new CircleDivPt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleDivPt( + Object __1 + , Object __2 + ) { + CircleDivPt f = new CircleDivPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleDivPt( + Field __1 + , Field __2 + ) { + CircleDivPt f = new CircleDivPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleEq( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleEq f = new CircleEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleEq( + Object __1 + , Object __2 + ) { + CircleEq f = new CircleEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleEq( + Field __1 + , Field __2 + ) { + CircleEq f = new CircleEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleGe( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleGe f = new CircleGe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleGe( + Object __1 + , Object __2 + ) { + CircleGe f = new CircleGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleGe( + Field __1 + , Field __2 + ) { + CircleGe f = new CircleGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleGt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleGt f = new CircleGt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleGt( + Object __1 + , Object __2 + ) { + CircleGt f = new CircleGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleGt( + Field __1 + , Field __2 + ) { + CircleGt f = new CircleGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleIn( + Configuration configuration + , Object __1 + ) { + CircleIn f = new CircleIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleIn( + Object __1 + ) { + CircleIn f = new CircleIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleIn( + Field __1 + ) { + CircleIn f = new CircleIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleLe( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleLe f = new CircleLe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleLe( + Object __1 + , Object __2 + ) { + CircleLe f = new CircleLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleLe( + Field __1 + , Field __2 + ) { + CircleLe f = new CircleLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleLeft( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleLeft f = new CircleLeft(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleLeft( + Object __1 + , Object __2 + ) { + CircleLeft f = new CircleLeft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleLeft( + Field __1 + , Field __2 + ) { + CircleLeft f = new CircleLeft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleLt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleLt f = new CircleLt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleLt( + Object __1 + , Object __2 + ) { + CircleLt f = new CircleLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleLt( + Field __1 + , Field __2 + ) { + CircleLt f = new CircleLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleMulPt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleMulPt f = new CircleMulPt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleMulPt( + Object __1 + , Object __2 + ) { + CircleMulPt f = new CircleMulPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleMulPt( + Field __1 + , Field __2 + ) { + CircleMulPt f = new CircleMulPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleNe( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleNe f = new CircleNe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleNe( + Object __1 + , Object __2 + ) { + CircleNe f = new CircleNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleNe( + Field __1 + , Field __2 + ) { + CircleNe f = new CircleNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleOut( + Configuration configuration + , Object __1 + ) { + CircleOut f = new CircleOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleOut( + Object __1 + ) { + CircleOut f = new CircleOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleOut( + Field __1 + ) { + CircleOut f = new CircleOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleOverabove( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleOverabove f = new CircleOverabove(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverabove( + Object __1 + , Object __2 + ) { + CircleOverabove f = new CircleOverabove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverabove( + Field __1 + , Field __2 + ) { + CircleOverabove f = new CircleOverabove(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleOverbelow( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleOverbelow f = new CircleOverbelow(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverbelow( + Object __1 + , Object __2 + ) { + CircleOverbelow f = new CircleOverbelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverbelow( + Field __1 + , Field __2 + ) { + CircleOverbelow f = new CircleOverbelow(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleOverlap( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleOverlap f = new CircleOverlap(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverlap( + Object __1 + , Object __2 + ) { + CircleOverlap f = new CircleOverlap(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverlap( + Field __1 + , Field __2 + ) { + CircleOverlap f = new CircleOverlap(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleOverleft( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleOverleft f = new CircleOverleft(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverleft( + Object __1 + , Object __2 + ) { + CircleOverleft f = new CircleOverleft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverleft( + Field __1 + , Field __2 + ) { + CircleOverleft f = new CircleOverleft(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleOverright( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleOverright f = new CircleOverright(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverright( + Object __1 + , Object __2 + ) { + CircleOverright f = new CircleOverright(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleOverright( + Field __1 + , Field __2 + ) { + CircleOverright f = new CircleOverright(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleRecv( + Configuration configuration + , Object __1 + ) { + CircleRecv f = new CircleRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleRecv( + Object __1 + ) { + CircleRecv f = new CircleRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleRecv( + Field __1 + ) { + CircleRecv f = new CircleRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleRight( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleRight f = new CircleRight(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleRight( + Object __1 + , Object __2 + ) { + CircleRight f = new CircleRight(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleRight( + Field __1 + , Field __2 + ) { + CircleRight f = new CircleRight(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Boolean circleSame( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleSame f = new CircleSame(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleSame( + Object __1 + , Object __2 + ) { + CircleSame f = new CircleSame(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleSame( + Field __1 + , Field __2 + ) { + CircleSame f = new CircleSame(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] circleSend( + Configuration configuration + , Object __1 + ) { + CircleSend f = new CircleSend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleSend( + Object __1 + ) { + CircleSend f = new CircleSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field circleSend( + Field __1 + ) { + CircleSend f = new CircleSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object circleSubPt( + Configuration configuration + , Object __1 + , Object __2 + ) { + CircleSubPt f = new CircleSubPt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleSubPt( + Object __1 + , Object __2 + ) { + CircleSubPt f = new CircleSubPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field circleSubPt( + Field __1 + , Field __2 + ) { + CircleSubPt f = new CircleSubPt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.clock_timestamp + */ + public static Timestamp clockTimestamp( + Configuration configuration + ) { + ClockTimestamp f = new ClockTimestamp(); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.clock_timestamp as a field. + */ + public static Field clockTimestamp() { + ClockTimestamp f = new ClockTimestamp(); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object closeLs( + Configuration configuration + , Object __1 + , Object __2 + ) { + CloseLs f = new CloseLs(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closeLs( + Object __1 + , Object __2 + ) { + CloseLs f = new CloseLs(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closeLs( + Field __1 + , Field __2 + ) { + CloseLs f = new CloseLs(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object closeLseg( + Configuration configuration + , Object __1 + , Object __2 + ) { + CloseLseg f = new CloseLseg(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closeLseg( + Object __1 + , Object __2 + ) { + CloseLseg f = new CloseLseg(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closeLseg( + Field __1 + , Field __2 + ) { + CloseLseg f = new CloseLseg(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object closePb( + Configuration configuration + , Object __1 + , Object __2 + ) { + ClosePb f = new ClosePb(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closePb( + Object __1 + , Object __2 + ) { + ClosePb f = new ClosePb(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closePb( + Field __1 + , Field __2 + ) { + ClosePb f = new ClosePb(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object closePl( + Configuration configuration + , Object __1 + , Object __2 + ) { + ClosePl f = new ClosePl(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closePl( + Object __1 + , Object __2 + ) { + ClosePl f = new ClosePl(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closePl( + Field __1 + , Field __2 + ) { + ClosePl f = new ClosePl(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object closePs( + Configuration configuration + , Object __1 + , Object __2 + ) { + ClosePs f = new ClosePs(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closePs( + Object __1 + , Object __2 + ) { + ClosePs f = new ClosePs(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closePs( + Field __1 + , Field __2 + ) { + ClosePs f = new ClosePs(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object closeSb( + Configuration configuration + , Object __1 + , Object __2 + ) { + CloseSb f = new CloseSb(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closeSb( + Object __1 + , Object __2 + ) { + CloseSb f = new CloseSb(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field closeSb( + Field __1 + , Field __2 + ) { + CloseSb f = new CloseSb(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.col_description + */ + public static String colDescription( + Configuration configuration + , Long __1 + , Integer __2 + ) { + ColDescription f = new ColDescription(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.col_description as a field. + */ + public static Field colDescription( + Long __1 + , Integer __2 + ) { + ColDescription f = new ColDescription(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.col_description as a field. + */ + public static Field colDescription( + Field __1 + , Field __2 + ) { + ColDescription f = new ColDescription(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String concat( + Configuration configuration + , Object __1 + ) { + Concat f = new Concat(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field concat( + Object __1 + ) { + Concat f = new Concat(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field concat( + Field __1 + ) { + Concat f = new Concat(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static String concatWs( + Configuration configuration + , String __1 + , Object __2 + ) { + ConcatWs f = new ConcatWs(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field concatWs( + String __1 + , Object __2 + ) { + ConcatWs f = new ConcatWs(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field concatWs( + Field __1 + , Field __2 + ) { + ConcatWs f = new ConcatWs(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double contjoinsel( + Configuration configuration + , Object __1 + , Long __2 + , Object __3 + , Short __4 + , Object __5 + ) { + Contjoinsel f = new Contjoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field contjoinsel( + Object __1 + , Long __2 + , Object __3 + , Short __4 + , Object __5 + ) { + Contjoinsel f = new Contjoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field contjoinsel( + Field __1 + , Field __2 + , Field __3 + , Field __4 + , Field __5 + ) { + Contjoinsel f = new Contjoinsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + f.set__5(__5); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double contsel( + Configuration configuration + , Object __1 + , Long __2 + , Object __3 + , Integer __4 + ) { + Contsel f = new Contsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field contsel( + Object __1 + , Long __2 + , Object __3 + , Integer __4 + ) { + Contsel f = new Contsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field contsel( + Field __1 + , Field __2 + , Field __3 + , Field __4 + ) { + Contsel f = new Contsel(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + f.set__4(__4); + + return f.asField(); + } + + /** + * Call pg_catalog.convert + */ + public static byte[] convert( + Configuration configuration + , byte[] __1 + , String __2 + , String __3 + ) { + Convert f = new Convert(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.convert as a field. + */ + public static Field convert( + byte[] __1 + , String __2 + , String __3 + ) { + Convert f = new Convert(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Get pg_catalog.convert as a field. + */ + public static Field convert( + Field __1 + , Field __2 + , Field __3 + ) { + Convert f = new Convert(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.convert_from + */ + public static String convertFrom( + Configuration configuration + , byte[] __1 + , String __2 + ) { + ConvertFrom f = new ConvertFrom(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.convert_from as a field. + */ + public static Field convertFrom( + byte[] __1 + , String __2 + ) { + ConvertFrom f = new ConvertFrom(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.convert_from as a field. + */ + public static Field convertFrom( + Field __1 + , Field __2 + ) { + ConvertFrom f = new ConvertFrom(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.convert_to + */ + public static byte[] convertTo( + Configuration configuration + , String __1 + , String __2 + ) { + ConvertTo f = new ConvertTo(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.convert_to as a field. + */ + public static Field convertTo( + String __1 + , String __2 + ) { + ConvertTo f = new ConvertTo(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.convert_to as a field. + */ + public static Field convertTo( + Field __1 + , Field __2 + ) { + ConvertTo f = new ConvertTo(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.corr as a field. + */ + public static AggregateFunction corr( + Double __1 + , Double __2 + ) { + Corr f = new Corr(); + f.set__1(__1); + f.set__2(__2); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.corr as a field. + */ + public static AggregateFunction corr( + Field __1 + , Field __2 + ) { + Corr f = new Corr(); + f.set__1(__1); + f.set__2(__2); + + return f.asAggregateFunction(); + } + + /** + * Call pg_catalog.cos + */ + public static Double cos( + Configuration configuration + , Double __1 + ) { + Cos f = new Cos(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cos as a field. + */ + public static Field cos( + Double __1 + ) { + Cos f = new Cos(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cos as a field. + */ + public static Field cos( + Field __1 + ) { + Cos f = new Cos(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cosd + */ + public static Double cosd( + Configuration configuration + , Double __1 + ) { + Cosd f = new Cosd(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cosd as a field. + */ + public static Field cosd( + Double __1 + ) { + Cosd f = new Cosd(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cosd as a field. + */ + public static Field cosd( + Field __1 + ) { + Cosd f = new Cosd(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cosh + */ + public static Double cosh( + Configuration configuration + , Double __1 + ) { + Cosh f = new Cosh(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cosh as a field. + */ + public static Field cosh( + Double __1 + ) { + Cosh f = new Cosh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cosh as a field. + */ + public static Field cosh( + Field __1 + ) { + Cosh f = new Cosh(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cot + */ + public static Double cot( + Configuration configuration + , Double __1 + ) { + Cot f = new Cot(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cot as a field. + */ + public static Field cot( + Double __1 + ) { + Cot f = new Cot(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cot as a field. + */ + public static Field cot( + Field __1 + ) { + Cot f = new Cot(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cotd + */ + public static Double cotd( + Configuration configuration + , Double __1 + ) { + Cotd f = new Cotd(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cotd as a field. + */ + public static Field cotd( + Double __1 + ) { + Cotd f = new Cotd(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.cotd as a field. + */ + public static Field cotd( + Field __1 + ) { + Cotd f = new Cotd(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static AggregateFunction count1( + Object __1 + ) { + Count1 f = new Count1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static AggregateFunction count1( + Field __1 + ) { + Count1 f = new Count1(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.count as a field. + */ + public static AggregateFunction count2() { + Count2 f = new Count2(); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.covar_pop as a field. + */ + public static AggregateFunction covarPop( + Double __1 + , Double __2 + ) { + CovarPop f = new CovarPop(); + f.set__1(__1); + f.set__2(__2); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.covar_pop as a field. + */ + public static AggregateFunction covarPop( + Field __1 + , Field __2 + ) { + CovarPop f = new CovarPop(); + f.set__1(__1); + f.set__2(__2); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.covar_samp as a field. + */ + public static AggregateFunction covarSamp( + Double __1 + , Double __2 + ) { + CovarSamp f = new CovarSamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asAggregateFunction(); + } + + /** + * Get pg_catalog.covar_samp as a field. + */ + public static AggregateFunction covarSamp( + Field __1 + , Field __2 + ) { + CovarSamp f = new CovarSamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cstringIn( + Configuration configuration + , Object __1 + ) { + CstringIn f = new CstringIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cstringIn( + Object __1 + ) { + CstringIn f = new CstringIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cstringIn( + Field __1 + ) { + CstringIn f = new CstringIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cstringOut( + Configuration configuration + , Object __1 + ) { + CstringOut f = new CstringOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cstringOut( + Object __1 + ) { + CstringOut f = new CstringOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cstringOut( + Field __1 + ) { + CstringOut f = new CstringOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object cstringRecv( + Configuration configuration + , Object __1 + ) { + CstringRecv f = new CstringRecv(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cstringRecv( + Object __1 + ) { + CstringRecv f = new CstringRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field cstringRecv( + Field __1 + ) { + CstringRecv f = new CstringRecv(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static byte[] cstringSend( + Configuration configuration + , Object __1 + ) { + CstringSend f = new CstringSend(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cstringSend( + Object __1 + ) { + CstringSend f = new CstringSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cstringSend( + Field __1 + ) { + CstringSend f = new CstringSend(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cume_dist + */ + public static Double cumeDist1( + Configuration configuration + ) { + CumeDist1 f = new CumeDist1(); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cume_dist as a field. + */ + public static Field cumeDist1() { + CumeDist1 f = new CumeDist1(); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static AggregateFunction cumeDist2( + Object __1 + ) { + CumeDist2 f = new CumeDist2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static AggregateFunction cumeDist2( + Field __1 + ) { + CumeDist2 f = new CumeDist2(); + f.set__1(__1); + + return f.asAggregateFunction(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Double cumeDistFinal( + Configuration configuration + , Object __1 + , Object __2 + ) { + CumeDistFinal f = new CumeDistFinal(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cumeDistFinal( + Object __1 + , Object __2 + ) { + CumeDistFinal f = new CumeDistFinal(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field cumeDistFinal( + Field __1 + , Field __2 + ) { + CumeDistFinal f = new CumeDistFinal(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.current_database + */ + public static String currentDatabase( + Configuration configuration + ) { + CurrentDatabase f = new CurrentDatabase(); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_database as a field. + */ + public static Field currentDatabase() { + CurrentDatabase f = new CurrentDatabase(); + + return f.asField(); + } + + /** + * Call pg_catalog.current_query + */ + public static String currentQuery( + Configuration configuration + ) { + CurrentQuery f = new CurrentQuery(); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_query as a field. + */ + public static Field currentQuery() { + CurrentQuery f = new CurrentQuery(); + + return f.asField(); + } + + /** + * Call pg_catalog.current_schema + */ + public static String currentSchema( + Configuration configuration + ) { + CurrentSchema f = new CurrentSchema(); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_schema as a field. + */ + public static Field currentSchema() { + CurrentSchema f = new CurrentSchema(); + + return f.asField(); + } + + /** + * Call pg_catalog.current_schemas + */ + public static String[] currentSchemas( + Configuration configuration + , Boolean __1 + ) { + CurrentSchemas f = new CurrentSchemas(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_schemas as a field. + */ + public static Field currentSchemas( + Boolean __1 + ) { + CurrentSchemas f = new CurrentSchemas(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.current_schemas as a field. + */ + public static Field currentSchemas( + Field __1 + ) { + CurrentSchemas f = new CurrentSchemas(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.current_setting + */ + public static String currentSetting1( + Configuration configuration + , String __1 + ) { + CurrentSetting1 f = new CurrentSetting1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_setting as a field. + */ + public static Field currentSetting1( + String __1 + ) { + CurrentSetting1 f = new CurrentSetting1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.current_setting as a field. + */ + public static Field currentSetting1( + Field __1 + ) { + CurrentSetting1 f = new CurrentSetting1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.current_setting + */ + public static String currentSetting2( + Configuration configuration + , String __1 + , Boolean __2 + ) { + CurrentSetting2 f = new CurrentSetting2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_setting as a field. + */ + public static Field currentSetting2( + String __1 + , Boolean __2 + ) { + CurrentSetting2 f = new CurrentSetting2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.current_setting as a field. + */ + public static Field currentSetting2( + Field __1 + , Field __2 + ) { + CurrentSetting2 f = new CurrentSetting2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.current_user + */ + public static String currentUser( + Configuration configuration + ) { + CurrentUser f = new CurrentUser(); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.current_user as a field. + */ + public static Field currentUser() { + CurrentUser f = new CurrentUser(); + + return f.asField(); + } + + /** + * Call pg_catalog.currtid2 + */ + public static Long currtid2( + Configuration configuration + , String __1 + , Long __2 + ) { + Currtid2 f = new Currtid2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.currtid2 as a field. + */ + public static Field currtid2( + String __1 + , Long __2 + ) { + Currtid2 f = new Currtid2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.currtid2 as a field. + */ + public static Field currtid2( + Field __1 + , Field __2 + ) { + Currtid2 f = new Currtid2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Long currval( + Configuration configuration + , Object __1 + ) { + Currval f = new Currval(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field currval( + Object __1 + ) { + Currval f = new Currval(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field currval( + Field __1 + ) { + Currval f = new Currval(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.cursor_to_xml + */ + public static XML cursorToXml( + Configuration configuration + , Result cursor + , Integer count + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + CursorToXml f = new CursorToXml(); + f.setCursor(cursor); + f.setCount(count); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cursor_to_xml as a field. + */ + public static Field cursorToXml( + Result cursor + , Integer count + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + CursorToXml f = new CursorToXml(); + f.setCursor(cursor); + f.setCount(count); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Get pg_catalog.cursor_to_xml as a field. + */ + public static Field cursorToXml( + Field> cursor + , Field count + , Field nulls + , Field tableforest + , Field targetns + ) { + CursorToXml f = new CursorToXml(); + f.setCursor(cursor); + f.setCount(count); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Call pg_catalog.cursor_to_xmlschema + */ + public static XML cursorToXmlschema( + Configuration configuration + , Result cursor + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + CursorToXmlschema f = new CursorToXmlschema(); + f.setCursor(cursor); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.cursor_to_xmlschema as a field. + */ + public static Field cursorToXmlschema( + Result cursor + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + CursorToXmlschema f = new CursorToXmlschema(); + f.setCursor(cursor); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Get pg_catalog.cursor_to_xmlschema as a field. + */ + public static Field cursorToXmlschema( + Field> cursor + , Field nulls + , Field tableforest + , Field targetns + ) { + CursorToXmlschema f = new CursorToXmlschema(); + f.setCursor(cursor); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Call pg_catalog.database_to_xml + */ + public static XML databaseToXml( + Configuration configuration + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + DatabaseToXml f = new DatabaseToXml(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.database_to_xml as a field. + */ + public static Field databaseToXml( + Boolean nulls + , Boolean tableforest + , String targetns + ) { + DatabaseToXml f = new DatabaseToXml(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Get pg_catalog.database_to_xml as a field. + */ + public static Field databaseToXml( + Field nulls + , Field tableforest + , Field targetns + ) { + DatabaseToXml f = new DatabaseToXml(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Call pg_catalog.database_to_xml_and_xmlschema + */ + public static XML databaseToXmlAndXmlschema( + Configuration configuration + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + DatabaseToXmlAndXmlschema f = new DatabaseToXmlAndXmlschema(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.database_to_xml_and_xmlschema as a field. + */ + public static Field databaseToXmlAndXmlschema( + Boolean nulls + , Boolean tableforest + , String targetns + ) { + DatabaseToXmlAndXmlschema f = new DatabaseToXmlAndXmlschema(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Get pg_catalog.database_to_xml_and_xmlschema as a field. + */ + public static Field databaseToXmlAndXmlschema( + Field nulls + , Field tableforest + , Field targetns + ) { + DatabaseToXmlAndXmlschema f = new DatabaseToXmlAndXmlschema(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Call pg_catalog.database_to_xmlschema + */ + public static XML databaseToXmlschema( + Configuration configuration + , Boolean nulls + , Boolean tableforest + , String targetns + ) { + DatabaseToXmlschema f = new DatabaseToXmlschema(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.database_to_xmlschema as a field. + */ + public static Field databaseToXmlschema( + Boolean nulls + , Boolean tableforest + , String targetns + ) { + DatabaseToXmlschema f = new DatabaseToXmlschema(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Get pg_catalog.database_to_xmlschema as a field. + */ + public static Field databaseToXmlschema( + Field nulls + , Field tableforest + , Field targetns + ) { + DatabaseToXmlschema f = new DatabaseToXmlschema(); + f.setNulls(nulls); + f.setTableforest(tableforest); + f.setTargetns(targetns); + + return f.asField(); + } + + /** + * Call pg_catalog.date + */ + public static Date date1( + Configuration configuration + , Timestamp __1 + ) { + Date1 f = new Date1(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date as a field. + */ + public static Field date1( + Timestamp __1 + ) { + Date1 f = new Date1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.date as a field. + */ + public static Field date1( + Field __1 + ) { + Date1 f = new Date1(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.date + */ + public static Date date2( + Configuration configuration + , Timestamp __1 + ) { + Date2 f = new Date2(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date as a field. + */ + public static Field date2( + Timestamp __1 + ) { + Date2 f = new Date2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Get pg_catalog.date as a field. + */ + public static Field date2( + Field __1 + ) { + Date2 f = new Date2(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.date_bin + */ + public static Timestamp dateBin1( + Configuration configuration + , YearToSecond __1 + , Timestamp __2 + , Timestamp __3 + ) { + DateBin1 f = new DateBin1(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_bin as a field. + */ + public static Field dateBin1( + YearToSecond __1 + , Timestamp __2 + , Timestamp __3 + ) { + DateBin1 f = new DateBin1(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Get pg_catalog.date_bin as a field. + */ + public static Field dateBin1( + Field __1 + , Field __2 + , Field __3 + ) { + DateBin1 f = new DateBin1(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.date_bin + */ + public static Timestamp dateBin2( + Configuration configuration + , YearToSecond __1 + , Timestamp __2 + , Timestamp __3 + ) { + DateBin2 f = new DateBin2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_bin as a field. + */ + public static Field dateBin2( + YearToSecond __1 + , Timestamp __2 + , Timestamp __3 + ) { + DateBin2 f = new DateBin2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Get pg_catalog.date_bin as a field. + */ + public static Field dateBin2( + Field __1 + , Field __2 + , Field __3 + ) { + DateBin2 f = new DateBin2(); + f.set__1(__1); + f.set__2(__2); + f.set__3(__3); + + return f.asField(); + } + + /** + * Call pg_catalog.date_cmp + */ + public static Integer dateCmp( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateCmp f = new DateCmp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_cmp as a field. + */ + public static Field dateCmp( + Date __1 + , Date __2 + ) { + DateCmp f = new DateCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_cmp as a field. + */ + public static Field dateCmp( + Field __1 + , Field __2 + ) { + DateCmp f = new DateCmp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_cmp_timestamp + */ + public static Integer dateCmpTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateCmpTimestamp f = new DateCmpTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_cmp_timestamp as a field. + */ + public static Field dateCmpTimestamp( + Date __1 + , Timestamp __2 + ) { + DateCmpTimestamp f = new DateCmpTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_cmp_timestamp as a field. + */ + public static Field dateCmpTimestamp( + Field __1 + , Field __2 + ) { + DateCmpTimestamp f = new DateCmpTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_cmp_timestamptz + */ + public static Integer dateCmpTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateCmpTimestamptz f = new DateCmpTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_cmp_timestamptz as a field. + */ + public static Field dateCmpTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateCmpTimestamptz f = new DateCmpTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_cmp_timestamptz as a field. + */ + public static Field dateCmpTimestamptz( + Field __1 + , Field __2 + ) { + DateCmpTimestamptz f = new DateCmpTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_eq + */ + public static Boolean dateEq( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateEq f = new DateEq(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_eq as a field. + */ + public static Field dateEq( + Date __1 + , Date __2 + ) { + DateEq f = new DateEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_eq as a field. + */ + public static Field dateEq( + Field __1 + , Field __2 + ) { + DateEq f = new DateEq(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_eq_timestamp + */ + public static Boolean dateEqTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateEqTimestamp f = new DateEqTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_eq_timestamp as a field. + */ + public static Field dateEqTimestamp( + Date __1 + , Timestamp __2 + ) { + DateEqTimestamp f = new DateEqTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_eq_timestamp as a field. + */ + public static Field dateEqTimestamp( + Field __1 + , Field __2 + ) { + DateEqTimestamp f = new DateEqTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_eq_timestamptz + */ + public static Boolean dateEqTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateEqTimestamptz f = new DateEqTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_eq_timestamptz as a field. + */ + public static Field dateEqTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateEqTimestamptz f = new DateEqTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_eq_timestamptz as a field. + */ + public static Field dateEqTimestamptz( + Field __1 + , Field __2 + ) { + DateEqTimestamptz f = new DateEqTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_ge + */ + public static Boolean dateGe( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateGe f = new DateGe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_ge as a field. + */ + public static Field dateGe( + Date __1 + , Date __2 + ) { + DateGe f = new DateGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_ge as a field. + */ + public static Field dateGe( + Field __1 + , Field __2 + ) { + DateGe f = new DateGe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_ge_timestamp + */ + public static Boolean dateGeTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateGeTimestamp f = new DateGeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_ge_timestamp as a field. + */ + public static Field dateGeTimestamp( + Date __1 + , Timestamp __2 + ) { + DateGeTimestamp f = new DateGeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_ge_timestamp as a field. + */ + public static Field dateGeTimestamp( + Field __1 + , Field __2 + ) { + DateGeTimestamp f = new DateGeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_ge_timestamptz + */ + public static Boolean dateGeTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateGeTimestamptz f = new DateGeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_ge_timestamptz as a field. + */ + public static Field dateGeTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateGeTimestamptz f = new DateGeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_ge_timestamptz as a field. + */ + public static Field dateGeTimestamptz( + Field __1 + , Field __2 + ) { + DateGeTimestamptz f = new DateGeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_gt + */ + public static Boolean dateGt( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateGt f = new DateGt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_gt as a field. + */ + public static Field dateGt( + Date __1 + , Date __2 + ) { + DateGt f = new DateGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_gt as a field. + */ + public static Field dateGt( + Field __1 + , Field __2 + ) { + DateGt f = new DateGt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_gt_timestamp + */ + public static Boolean dateGtTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateGtTimestamp f = new DateGtTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_gt_timestamp as a field. + */ + public static Field dateGtTimestamp( + Date __1 + , Timestamp __2 + ) { + DateGtTimestamp f = new DateGtTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_gt_timestamp as a field. + */ + public static Field dateGtTimestamp( + Field __1 + , Field __2 + ) { + DateGtTimestamp f = new DateGtTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_gt_timestamptz + */ + public static Boolean dateGtTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateGtTimestamptz f = new DateGtTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_gt_timestamptz as a field. + */ + public static Field dateGtTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateGtTimestamptz f = new DateGtTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_gt_timestamptz as a field. + */ + public static Field dateGtTimestamptz( + Field __1 + , Field __2 + ) { + DateGtTimestamptz f = new DateGtTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Date dateIn( + Configuration configuration + , Object __1 + ) { + DateIn f = new DateIn(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field dateIn( + Object __1 + ) { + DateIn f = new DateIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. Parameter type or return type is unknown. + * If this is a qualified, user-defined type, it may have been excluded from + * code generation. If this is a built-in type, you can define an explicit + * {@link org.jooq.Binding} to specify how this type should be handled. + * Deprecation can be turned off using {@literal + * } in your code generator configuration. + */ + @Deprecated + public static Field dateIn( + Field __1 + ) { + DateIn f = new DateIn(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.date_larger + */ + public static Date dateLarger( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateLarger f = new DateLarger(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_larger as a field. + */ + public static Field dateLarger( + Date __1 + , Date __2 + ) { + DateLarger f = new DateLarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_larger as a field. + */ + public static Field dateLarger( + Field __1 + , Field __2 + ) { + DateLarger f = new DateLarger(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_le + */ + public static Boolean dateLe( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateLe f = new DateLe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_le as a field. + */ + public static Field dateLe( + Date __1 + , Date __2 + ) { + DateLe f = new DateLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_le as a field. + */ + public static Field dateLe( + Field __1 + , Field __2 + ) { + DateLe f = new DateLe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_le_timestamp + */ + public static Boolean dateLeTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateLeTimestamp f = new DateLeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_le_timestamp as a field. + */ + public static Field dateLeTimestamp( + Date __1 + , Timestamp __2 + ) { + DateLeTimestamp f = new DateLeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_le_timestamp as a field. + */ + public static Field dateLeTimestamp( + Field __1 + , Field __2 + ) { + DateLeTimestamp f = new DateLeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_le_timestamptz + */ + public static Boolean dateLeTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateLeTimestamptz f = new DateLeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_le_timestamptz as a field. + */ + public static Field dateLeTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateLeTimestamptz f = new DateLeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_le_timestamptz as a field. + */ + public static Field dateLeTimestamptz( + Field __1 + , Field __2 + ) { + DateLeTimestamptz f = new DateLeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_lt + */ + public static Boolean dateLt( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateLt f = new DateLt(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_lt as a field. + */ + public static Field dateLt( + Date __1 + , Date __2 + ) { + DateLt f = new DateLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_lt as a field. + */ + public static Field dateLt( + Field __1 + , Field __2 + ) { + DateLt f = new DateLt(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_lt_timestamp + */ + public static Boolean dateLtTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateLtTimestamp f = new DateLtTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_lt_timestamp as a field. + */ + public static Field dateLtTimestamp( + Date __1 + , Timestamp __2 + ) { + DateLtTimestamp f = new DateLtTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_lt_timestamp as a field. + */ + public static Field dateLtTimestamp( + Field __1 + , Field __2 + ) { + DateLtTimestamp f = new DateLtTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_lt_timestamptz + */ + public static Boolean dateLtTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateLtTimestamptz f = new DateLtTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_lt_timestamptz as a field. + */ + public static Field dateLtTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateLtTimestamptz f = new DateLtTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_lt_timestamptz as a field. + */ + public static Field dateLtTimestamptz( + Field __1 + , Field __2 + ) { + DateLtTimestamptz f = new DateLtTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_mi + */ + public static Integer dateMi( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateMi f = new DateMi(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_mi as a field. + */ + public static Field dateMi( + Date __1 + , Date __2 + ) { + DateMi f = new DateMi(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_mi as a field. + */ + public static Field dateMi( + Field __1 + , Field __2 + ) { + DateMi f = new DateMi(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_mi_interval + */ + public static Timestamp dateMiInterval( + Configuration configuration + , Date __1 + , YearToSecond __2 + ) { + DateMiInterval f = new DateMiInterval(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_mi_interval as a field. + */ + public static Field dateMiInterval( + Date __1 + , YearToSecond __2 + ) { + DateMiInterval f = new DateMiInterval(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_mi_interval as a field. + */ + public static Field dateMiInterval( + Field __1 + , Field __2 + ) { + DateMiInterval f = new DateMiInterval(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_mii + */ + public static Date dateMii( + Configuration configuration + , Date __1 + , Integer __2 + ) { + DateMii f = new DateMii(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_mii as a field. + */ + public static Field dateMii( + Date __1 + , Integer __2 + ) { + DateMii f = new DateMii(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_mii as a field. + */ + public static Field dateMii( + Field __1 + , Field __2 + ) { + DateMii f = new DateMii(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_ne + */ + public static Boolean dateNe( + Configuration configuration + , Date __1 + , Date __2 + ) { + DateNe f = new DateNe(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_ne as a field. + */ + public static Field dateNe( + Date __1 + , Date __2 + ) { + DateNe f = new DateNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_ne as a field. + */ + public static Field dateNe( + Field __1 + , Field __2 + ) { + DateNe f = new DateNe(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_ne_timestamp + */ + public static Boolean dateNeTimestamp( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateNeTimestamp f = new DateNeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_ne_timestamp as a field. + */ + public static Field dateNeTimestamp( + Date __1 + , Timestamp __2 + ) { + DateNeTimestamp f = new DateNeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_ne_timestamp as a field. + */ + public static Field dateNeTimestamp( + Field __1 + , Field __2 + ) { + DateNeTimestamp f = new DateNeTimestamp(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_ne_timestamptz + */ + public static Boolean dateNeTimestamptz( + Configuration configuration + , Date __1 + , Timestamp __2 + ) { + DateNeTimestamptz f = new DateNeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_ne_timestamptz as a field. + */ + public static Field dateNeTimestamptz( + Date __1 + , Timestamp __2 + ) { + DateNeTimestamptz f = new DateNeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_ne_timestamptz as a field. + */ + public static Field dateNeTimestamptz( + Field __1 + , Field __2 + ) { + DateNeTimestamptz f = new DateNeTimestamptz(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Object dateOut( + Configuration configuration + , Date __1 + ) { + DateOut f = new DateOut(); + f.set__1(__1); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field dateOut( + Date __1 + ) { + DateOut f = new DateOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * @deprecated Unknown data type. If this is a qualified, user-defined type, + * it may have been excluded from code generation. If this is a built-in + * type, you can define an explicit {@link org.jooq.Binding} to specify how + * this type should be handled. Deprecation can be turned off using + * {@literal } in your code generator + * configuration. + */ + @Deprecated + public static Field dateOut( + Field __1 + ) { + DateOut f = new DateOut(); + f.set__1(__1); + + return f.asField(); + } + + /** + * Call pg_catalog.date_part + */ + public static Double datePart1( + Configuration configuration + , String __1 + , Timestamp __2 + ) { + DatePart1 f = new DatePart1(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart1( + String __1 + , Timestamp __2 + ) { + DatePart1 f = new DatePart1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart1( + Field __1 + , Field __2 + ) { + DatePart1 f = new DatePart1(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_part + */ + public static Double datePart2( + Configuration configuration + , String __1 + , YearToSecond __2 + ) { + DatePart2 f = new DatePart2(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart2( + String __1 + , YearToSecond __2 + ) { + DatePart2 f = new DatePart2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart2( + Field __1 + , Field __2 + ) { + DatePart2 f = new DatePart2(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_part + */ + public static Double datePart3( + Configuration configuration + , String __1 + , OffsetTime __2 + ) { + DatePart3 f = new DatePart3(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart3( + String __1 + , OffsetTime __2 + ) { + DatePart3 f = new DatePart3(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart3( + Field __1 + , Field __2 + ) { + DatePart3 f = new DatePart3(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_part + */ + public static Double datePart4( + Configuration configuration + , String __1 + , Date __2 + ) { + DatePart4 f = new DatePart4(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart4( + String __1 + , Date __2 + ) { + DatePart4 f = new DatePart4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart4( + Field __1 + , Field __2 + ) { + DatePart4 f = new DatePart4(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Call pg_catalog.date_part + */ + public static Double datePart5( + Configuration configuration + , String __1 + , Time __2 + ) { + DatePart5 f = new DatePart5(); + f.set__1(__1); + f.set__2(__2); + + f.execute(configuration); + return f.getReturnValue(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart5( + String __1 + , Time __2 + ) { + DatePart5 f = new DatePart5(); + f.set__1(__1); + f.set__2(__2); + + return f.asField(); + } + + /** + * Get pg_catalog.date_part as a field. + */ + public static Field datePart5( + Field __1 + , Field