diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..3b299cc --- /dev/null +++ b/.env.example @@ -0,0 +1,25 @@ +DB_USER= +DB_PASSWORD= + +# Optional: Default DB names for local development +ORDER_DB=ECommerce-Order-Service +PRODUCT_DB=ECommerce-Product-Service +INVENTORY_DB=ECommerce-Inventory-Service +NOTIFICATION_DB=ECommerce-Notification-Service + + +#Maitrap credentials +MAILTRAP_USERNAME= +MAILTRAP_PASSWORD= +MAIL_PORT= +MAIL_HOST=smtp.mailtrap.io + +#Twilio credentials +TWILIO_ACCOUNT_SID= +TWILIO_AUTH_TOKEN= +TWILIO_FROM_NUMBER= + + + +#CUSTOM app config +MAIL_FROM= \ No newline at end of file diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 20a191a..1cb1d41 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -5,24 +5,33 @@ on: branches: - master jobs: + #first job builds all modules and skips tests build: name: Build All Modules (skip tests) runs-on: ubuntu-latest + env: + FIREBASE_CONFIG_BASE64: ${{ secrets.FIREBASE_CONFIG_BASE64 }} steps: - name: Check out the repository uses: actions/checkout@v4 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: java-version: '17' distribution: 'temurin' cache: maven + + - name: Decode and save Firebase config + run: echo $FIREBASE_CONFIG_BASE64 | base64 > firebase-service-account.json + - name: Build all modules (skipping tests) run: mvn --batch-mode clean install -DskipTests outputs: build-status-key: ${{ steps.cache.outputs.cache-hit }} + #second job runs tests on the built modules test: name: Run Tests runs-on: ubuntu-latest @@ -39,35 +48,3 @@ jobs: - name: Run tests run: mvn --batch-mode test - - - -# pull_request: -# branches: -# - master -#jobs: -# build-and-test: -# runs-on: ubuntu-latest -# -# strategy: -# matrix: -# service: [product-service, -# order-service, -# inventory-service, -# api-gateway, -# config-server, -# eureka-server] -# steps: -# - name: Check out the repository -# uses: actions/checkout@v4 -# - name: Set up JDK 17 -# uses: actions/setup-java@v3 -# with: -# java-version: '17' -# distribution: 'temurin' -# cache: maven -# -# -# - name: Build and test ${matrix.service} -# working-directory: ./${{ matrix.service }} -# run: mvn --batch-mode package diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91feb0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +#ignore the environment variable file +.env +#firebase service account file +firebase-service-account.json + +#ignore .idea folder +.idea/ +.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53.xml +.idea/dataSources/dbb0ccd9-06dd-407f-b700-8142fac9bbbd.xml +#ignore node modules +node_modules/ +#ignore build folder +build/ +#ignore logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +#ignore Mac system files +.DS_Store +#ignore coverage folder +coverage/ +#ignore .next folder +.next/ +cls \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 852d099..6ba4c51 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -15,8 +15,18 @@ + + + + + + + + + + @@ -31,9 +41,11 @@ + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.agent.xml b/.idea/copilot.data.migration.agent.xml new file mode 100644 index 0000000..4ea72a9 --- /dev/null +++ b/.idea/copilot.data.migration.agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.ask.xml b/.idea/copilot.data.migration.ask.xml new file mode 100644 index 0000000..7ef04e2 --- /dev/null +++ b/.idea/copilot.data.migration.ask.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.ask2agent.xml b/.idea/copilot.data.migration.ask2agent.xml new file mode 100644 index 0000000..1f2ea11 --- /dev/null +++ b/.idea/copilot.data.migration.ask2agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.edit.xml b/.idea/copilot.data.migration.edit.xml new file mode 100644 index 0000000..8648f94 --- /dev/null +++ b/.idea/copilot.data.migration.edit.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/dataSources.local.xml b/.idea/dataSources.local.xml index 0551690..574a8e7 100644 --- a/.idea/dataSources.local.xml +++ b/.idea/dataSources.local.xml @@ -2,7 +2,7 @@ - + master_key no-auth @@ -57,5 +57,20 @@ + + + " + + + master_key + postgres + + + + + + + + \ No newline at end of file diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml index d34fdb6..d8a78b6 100644 --- a/.idea/dataSources.xml +++ b/.idea/dataSources.xml @@ -29,5 +29,12 @@ jdbc:postgresql://localhost:5432/ECommerce-Inventory-Service $ProjectFileDir$ + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/ECommerce-Notification-Service + $ProjectFileDir$ + \ No newline at end of file diff --git a/.idea/dataSources/1e58db9f-f780-4249-a06a-585b65d5b800.xml b/.idea/dataSources/1e58db9f-f780-4249-a06a-585b65d5b800.xml index 8a8d9de..f3c929f 100644 --- a/.idea/dataSources/1e58db9f-f780-4249-a06a-585b65d5b800.xml +++ b/.idea/dataSources/1e58db9f-f780-4249-a06a-585b65d5b800.xml @@ -2,25 +2,25 @@ - 7.4.1 + 8.2.1 1 - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53.xml b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53.xml new file mode 100644 index 0000000..46f3127 --- /dev/null +++ b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53.xml @@ -0,0 +1,4365 @@ + + + + + dmy + 1||-9223372036854775808|c|G +1||10|c|G +1||10|C|G +1||10|T|G +4||-9223372036854775808|c|G +4||10|c|G +4||10|C|G +4||10|T|G + 1373 + 16.1 + 1756652656 + true ACDT +true ACSST +false ACST +false ACT +false ACWST +true ADT +true AEDT +true AESST +false AEST +false AFT +true AKDT +false AKST +true ALMST +false ALMT +false AMST +false AMT +false ANAST +false ANAT +false ARST +false ART +false AST +true AWSST +false AWST +true AZOST +false AZOT +false AZST +false AZT +false Africa/Abidjan +false Africa/Accra +false Africa/Addis_Ababa +false Africa/Algiers +false Africa/Asmara +false Africa/Asmera +false Africa/Bamako +false Africa/Bangui +false Africa/Banjul +false Africa/Bissau +false Africa/Blantyre +false Africa/Brazzaville +false Africa/Bujumbura +true Africa/Cairo +false Africa/Casablanca +true Africa/Ceuta +false Africa/Conakry +false Africa/Dakar +false Africa/Dar_es_Salaam +false Africa/Djibouti +false Africa/Douala +false Africa/El_Aaiun +false Africa/Freetown +false Africa/Gaborone +false Africa/Harare +false Africa/Johannesburg +false Africa/Juba +false Africa/Kampala +false Africa/Khartoum +false Africa/Kigali +false Africa/Kinshasa +false Africa/Lagos +false Africa/Libreville +false Africa/Lome +false Africa/Luanda +false Africa/Lubumbashi +false Africa/Lusaka +false Africa/Malabo +false Africa/Maputo +false Africa/Maseru +false Africa/Mbabane +false Africa/Mogadishu +false Africa/Monrovia +false Africa/Nairobi +false Africa/Ndjamena +false Africa/Niamey +false Africa/Nouakchott +false Africa/Ouagadougou +false Africa/Porto-Novo +false Africa/Sao_Tome +false Africa/Timbuktu +false Africa/Tripoli +false Africa/Tunis +false Africa/Windhoek +true America/Adak +true America/Anchorage +false America/Anguilla +false America/Antigua +false America/Araguaina +false America/Argentina/Buenos_Aires +false America/Argentina/Catamarca +false America/Argentina/ComodRivadavia +false America/Argentina/Cordoba +false America/Argentina/Jujuy +false America/Argentina/La_Rioja +false America/Argentina/Mendoza +false America/Argentina/Rio_Gallegos +false America/Argentina/Salta +false America/Argentina/San_Juan +false America/Argentina/San_Luis +false America/Argentina/Tucuman +false America/Argentina/Ushuaia +false America/Aruba +false America/Asuncion +false America/Atikokan +true America/Atka +false America/Bahia +false America/Bahia_Banderas +false America/Barbados +false America/Belem +false America/Belize +false America/Blanc-Sablon +false America/Boa_Vista +false America/Bogota +true America/Boise +false America/Buenos_Aires +true America/Cambridge_Bay +false America/Campo_Grande +false America/Cancun +false America/Caracas +false America/Catamarca +false America/Cayenne +false America/Cayman +true America/Chicago +false America/Chihuahua +true America/Ciudad_Juarez +false America/Coral_Harbour +false America/Cordoba +false America/Costa_Rica +false America/Creston +false America/Cuiaba +false America/Curacao +false America/Danmarkshavn +false America/Dawson +false America/Dawson_Creek +true America/Denver +true America/Detroit +false America/Dominica +true America/Edmonton +false America/Eirunepe +false America/El_Salvador +true America/Ensenada +false America/Fort_Nelson +true America/Fort_Wayne +false America/Fortaleza +true America/Glace_Bay +true America/Godthab +true America/Goose_Bay +true America/Grand_Turk +false America/Grenada +false America/Guadeloupe +false America/Guatemala +false America/Guayaquil +false America/Guyana +true America/Halifax +true America/Havana +false America/Hermosillo +true America/Indiana/Indianapolis +true America/Indiana/Knox +true America/Indiana/Marengo +true America/Indiana/Petersburg +true America/Indiana/Tell_City +true America/Indiana/Vevay +true America/Indiana/Vincennes +true America/Indiana/Winamac +true America/Indianapolis +true America/Inuvik +true America/Iqaluit +false America/Jamaica +false America/Jujuy +true America/Juneau +true America/Kentucky/Louisville +true America/Kentucky/Monticello +true America/Knox_IN +false America/Kralendijk +false America/La_Paz +false America/Lima +true America/Los_Angeles +true America/Louisville +false America/Lower_Princes +false America/Maceio +false America/Managua +false America/Manaus +false America/Marigot +false America/Martinique +true America/Matamoros +false America/Mazatlan +false America/Mendoza +true America/Menominee +false America/Merida +true America/Metlakatla +false America/Mexico_City +true America/Miquelon +true America/Moncton +false America/Monterrey +false America/Montevideo +true America/Montreal +false America/Montserrat +true America/Nassau +true America/New_York +true America/Nipigon +true America/Nome +false America/Noronha +true America/North_Dakota/Beulah +true America/North_Dakota/Center +true America/North_Dakota/New_Salem +true America/Nuuk +true America/Ojinaga +false America/Panama +true America/Pangnirtung +false America/Paramaribo +false America/Phoenix +true America/Port-au-Prince +false America/Port_of_Spain +false America/Porto_Acre +false America/Porto_Velho +false America/Puerto_Rico +false America/Punta_Arenas +true America/Rainy_River +true America/Rankin_Inlet +false America/Recife +false America/Regina +true America/Resolute +false America/Rio_Branco +false America/Rosario +true America/Santa_Isabel +false America/Santarem +false America/Santiago +false America/Santo_Domingo +false America/Sao_Paulo +true America/Scoresbysund +true America/Shiprock +true America/Sitka +false America/St_Barthelemy +true America/St_Johns +false America/St_Kitts +false America/St_Lucia +false America/St_Thomas +false America/St_Vincent +false America/Swift_Current +false America/Tegucigalpa +true America/Thule +true America/Thunder_Bay +true America/Tijuana +true America/Toronto +false America/Tortola +true America/Vancouver +false America/Virgin +false America/Whitehorse +true America/Winnipeg +true America/Yakutat +true America/Yellowknife +false Antarctica/Casey +false Antarctica/Davis +false Antarctica/DumontDUrville +false Antarctica/Macquarie +false Antarctica/Mawson +false Antarctica/McMurdo +false Antarctica/Palmer +false Antarctica/Rothera +false Antarctica/South_Pole +false Antarctica/Syowa +true Antarctica/Troll +false Antarctica/Vostok +true Arctic/Longyearbyen +false Asia/Aden +false Asia/Almaty +false Asia/Amman +false Asia/Anadyr +false Asia/Aqtau +false Asia/Aqtobe +false Asia/Ashgabat +false Asia/Ashkhabad +false Asia/Atyrau +false Asia/Baghdad +false Asia/Bahrain +false Asia/Baku +false Asia/Bangkok +false Asia/Barnaul +true Asia/Beirut +false Asia/Bishkek +false Asia/Brunei +false Asia/Calcutta +false Asia/Chita +false Asia/Choibalsan +false Asia/Chongqing +false Asia/Chungking +false Asia/Colombo +false Asia/Dacca +false Asia/Damascus +false Asia/Dhaka +false Asia/Dili +false Asia/Dubai +false Asia/Dushanbe +true Asia/Famagusta +true Asia/Gaza +false Asia/Harbin +true Asia/Hebron +false Asia/Ho_Chi_Minh +false Asia/Hong_Kong +false Asia/Hovd +false Asia/Irkutsk +false Asia/Istanbul +false Asia/Jakarta +false Asia/Jayapura +true Asia/Jerusalem +false Asia/Kabul +false Asia/Kamchatka +false Asia/Karachi +false Asia/Kashgar +false Asia/Kathmandu +false Asia/Katmandu +false Asia/Khandyga +false Asia/Kolkata +false Asia/Krasnoyarsk +false Asia/Kuala_Lumpur +false Asia/Kuching +false Asia/Kuwait +false Asia/Macao +false Asia/Macau +false Asia/Magadan +false Asia/Makassar +false Asia/Manila +false Asia/Muscat +true Asia/Nicosia +false Asia/Novokuznetsk +false Asia/Novosibirsk +false Asia/Omsk +false Asia/Oral +false Asia/Phnom_Penh +false Asia/Pontianak +false Asia/Pyongyang +false Asia/Qatar +false Asia/Qostanay +false Asia/Qyzylorda +false Asia/Rangoon +false Asia/Riyadh +false Asia/Saigon +false Asia/Sakhalin +false Asia/Samarkand +false Asia/Seoul +false Asia/Shanghai +false Asia/Singapore +false Asia/Srednekolymsk +false Asia/Taipei +false Asia/Tashkent +false Asia/Tbilisi +false Asia/Tehran +true Asia/Tel_Aviv +false Asia/Thimbu +false Asia/Thimphu +false Asia/Tokyo +false Asia/Tomsk +false Asia/Ujung_Pandang +false Asia/Ulaanbaatar +false Asia/Ulan_Bator +false Asia/Urumqi +false Asia/Ust-Nera +false Asia/Vientiane +false Asia/Vladivostok +false Asia/Yakutsk +false Asia/Yangon +false Asia/Yekaterinburg +false Asia/Yerevan +true Atlantic/Azores +true Atlantic/Bermuda +true Atlantic/Canary +false Atlantic/Cape_Verde +true Atlantic/Faeroe +true Atlantic/Faroe +true Atlantic/Jan_Mayen +true Atlantic/Madeira +false Atlantic/Reykjavik +false Atlantic/South_Georgia +false Atlantic/St_Helena +false Atlantic/Stanley +false Australia/ACT +false Australia/Adelaide +false Australia/Brisbane +false Australia/Broken_Hill +false Australia/Canberra +false Australia/Currie +false Australia/Darwin +false Australia/Eucla +false Australia/Hobart +false Australia/LHI +false Australia/Lindeman +false Australia/Lord_Howe +false Australia/Melbourne +false Australia/NSW +false Australia/North +false Australia/Perth +false Australia/Queensland +false Australia/South +false Australia/Sydney +false Australia/Tasmania +false Australia/Victoria +false Australia/West +false Australia/Yancowinna +true BDST +false BDT +false BNT +false BORT +false BOT +false BRA +true BRST +false BRT +true BST +false BTT +false Brazil/Acre +false Brazil/DeNoronha +false Brazil/East +false Brazil/West +true CADT +false CAST +false CCT +true CDT +true CEST +false CET +true CETDST +true CHADT +false CHAST +false CHUT +false CKT +true CLST +false CLT +false COT +false CST +true CST6CDT +false CXT +true Canada/Atlantic +true Canada/Central +true Canada/Eastern +true Canada/Mountain +true Canada/Newfoundland +true Canada/Pacific +false Canada/Saskatchewan +false Canada/Yukon +false Chile/Continental +false Chile/EasterIsland +true Cuba +false DAVT +false DDUT +false EASST +false EAST +false EAT +true EDT +true EEST +false EET +true EETDST +true EGST +false EGT +false EST +true EST5EDT +true Egypt +false Eire +false Etc/GMT +false Etc/GMT+0 +false Etc/GMT+1 +false Etc/GMT+10 +false Etc/GMT+11 +false Etc/GMT+12 +false Etc/GMT+2 +false Etc/GMT+3 +false Etc/GMT+4 +false Etc/GMT+5 +false Etc/GMT+6 +false Etc/GMT+7 +false Etc/GMT+8 +false Etc/GMT+9 +false Etc/GMT-0 +false Etc/GMT-1 +false Etc/GMT-10 +false Etc/GMT-11 +false Etc/GMT-12 +false Etc/GMT-13 +false Etc/GMT-14 +false Etc/GMT-2 +false Etc/GMT-3 +false Etc/GMT-4 +false Etc/GMT-5 +false Etc/GMT-6 +false Etc/GMT-7 +false Etc/GMT-8 +false Etc/GMT-9 +false Etc/GMT0 +false Etc/Greenwich +false Etc/UCT +false Etc/UTC +false Etc/Universal +false Etc/Zulu +true Europe/Amsterdam +true Europe/Andorra +false Europe/Astrakhan +true Europe/Athens +true Europe/Belfast +true Europe/Belgrade +true Europe/Berlin +true Europe/Bratislava +true Europe/Brussels +true Europe/Bucharest +true Europe/Budapest +true Europe/Busingen +true Europe/Chisinau +true Europe/Copenhagen +false Europe/Dublin +true Europe/Gibraltar +true Europe/Guernsey +true Europe/Helsinki +true Europe/Isle_of_Man +false Europe/Istanbul +true Europe/Jersey +false Europe/Kaliningrad +true Europe/Kiev +false Europe/Kirov +true Europe/Kyiv +true Europe/Lisbon +true Europe/Ljubljana +true Europe/London +true Europe/Luxembourg +true Europe/Madrid +true Europe/Malta +true Europe/Mariehamn +false Europe/Minsk +true Europe/Monaco +false Europe/Moscow +true Europe/Nicosia +true Europe/Oslo +true Europe/Paris +true Europe/Podgorica +true Europe/Prague +true Europe/Riga +true Europe/Rome +false Europe/Samara +true Europe/San_Marino +true Europe/Sarajevo +false Europe/Saratov +false Europe/Simferopol +true Europe/Skopje +true Europe/Sofia +true Europe/Stockholm +true Europe/Tallinn +true Europe/Tirane +true Europe/Tiraspol +false Europe/Ulyanovsk +true Europe/Uzhgorod +true Europe/Vaduz +true Europe/Vatican +true Europe/Vienna +true Europe/Vilnius +false Europe/Volgograd +true Europe/Warsaw +true Europe/Zagreb +true Europe/Zaporozhye +true Europe/Zurich +false FET +true FJST +false FJT +false FKST +false FKT +true FNST +false FNT +false Factory +false GALT +false GAMT +true GB +true GB-Eire +false GEST +false GET +false GFT +false GILT +false GMT +false GMT+0 +false GMT-0 +false GMT0 +false GYT +false Greenwich +false HKT +false HST +false Hongkong +false ICT +true IDT +false IOT +false IRKST +false IRKT +false IRT +false IST +false Iceland +false Indian/Antananarivo +false Indian/Chagos +false Indian/Christmas +false Indian/Cocos +false Indian/Comoro +false Indian/Kerguelen +false Indian/Mahe +false Indian/Maldives +false Indian/Mauritius +false Indian/Mayotte +false Indian/Reunion +false Iran +true Israel +false JAYT +false JST +false Jamaica +false Japan +true KDT +true KGST +false KGT +false KOST +false KRAST +false KRAT +false KST +false Kwajalein +false LHDT +false LHST +false LIGT +false LINT +false LKT +false Libya +false MAGST +false MAGT +false MART +false MAWT +true MDT +true MEST +true MESZ +true MET +true METDST +false MEZ +false MHT +false MMT +false MPT +true MSD +false MSK +false MST +true MST7MDT +true MUST +false MUT +false MVT +false MYT +true Mexico/BajaNorte +false Mexico/BajaSur +false Mexico/General +true NDT +false NFT +false NOVST +false NOVT +false NPT +false NST +false NUT +false NZ +false NZ-CHAT +true NZDT +false NZST +false NZT +true Navajo +false OMSST +false OMST +true PDT +false PET +false PETST +false PETT +false PGT +false PHT +true PKST +false PKT +true PMDT +false PMST +false PONT +false PRC +false PST +true PST8PDT +false PWT +true PYST +false PYT +false Pacific/Apia +false Pacific/Auckland +false Pacific/Bougainville +false Pacific/Chatham +false Pacific/Chuuk +false Pacific/Easter +false Pacific/Efate +false Pacific/Enderbury +false Pacific/Fakaofo +false Pacific/Fiji +false Pacific/Funafuti +false Pacific/Galapagos +false Pacific/Gambier +false Pacific/Guadalcanal +false Pacific/Guam +false Pacific/Honolulu +false Pacific/Johnston +false Pacific/Kanton +false Pacific/Kiritimati +false Pacific/Kosrae +false Pacific/Kwajalein +false Pacific/Majuro +false Pacific/Marquesas +false Pacific/Midway +false Pacific/Nauru +false Pacific/Niue +false Pacific/Norfolk +false Pacific/Noumea +false Pacific/Pago_Pago +false Pacific/Palau +false Pacific/Pitcairn +false Pacific/Pohnpei +false Pacific/Ponape +false Pacific/Port_Moresby +false Pacific/Rarotonga +false Pacific/Saipan +false Pacific/Samoa +false Pacific/Tahiti +false Pacific/Tarawa +false Pacific/Tongatapu +false Pacific/Truk +false Pacific/Wake +false Pacific/Wallis +false Pacific/Yap +true Poland +true Portugal +false RET +false ROC +false ROK +true SADT +false SAST +false SCT +false SGT +false Singapore +false TAHT +false TFT +false TJT +false TKT +false TMT +false TOT +false TRUT +false TVT +false Turkey +false UCT +true ULAST +false ULAT +true US/Alaska +true US/Aleutian +false US/Arizona +true US/Central +true US/East-Indiana +true US/Eastern +false US/Hawaii +true US/Indiana-Starke +true US/Michigan +true US/Mountain +true US/Pacific +false US/Samoa +false UT +false UTC +true UYST +false UYT +true UZST +false UZT +false Universal +false VET +false VLAST +false VLAT +false VOLT +false VUT +false W-SU +true WADT +false WAKT +false WAST +false WAT +true WDT +true WET +true WETDST +false WFT +true WGST +false WGT +false XJT +false YAKST +false YAKT +false YAPT +true YEKST +false YEKT +false Z +false Zulu + + + + 1 + 11||10|C|G +11||-9223372036854775808|U|G +11||10|U|G +2200||6171|C|G +2200||-9223372036854775808|U|G +2200||6171|U|G +14697||10|C|G +14697||-9223372036854775808|U|G +14697||10|U|G + 1373 + 41320 + postgres + + + default administrative connection database + 5 + postgres + + + 16397 + postgres + + + 16408 + postgres + + + 16412 + postgres + + + 16416 + postgres + + + 16581 + postgres + + + 16593 + postgres + + + 16666 + postgres + + + 24888 + postgres + + + 24897 + postgres + + + 41281 + postgres + + + 41291 + postgres + + + 41311 + postgres + + + 6171 + + + 6181 + + + 6182 + + + 3373 + 3374 +3375 +3377 + + + 3374 + + + 3375 + + + 3377 + + + 4569 + + + 4570 + + + 4571 + + + 4200 + + + 4544 + + + 4550 + + + 6304 + + + 1 + 1 + 1 + 1 + 10 + 1 + 1 + + + 1663 + 1 + postgres + + + 1664 + 1 + postgres + + + block range index (BRIN) access method + 3580 + 1 + index + 335 + brinhandler + pg_catalog + + + b-tree index access method + 403 + 1 + index + 330 + bthandler + pg_catalog + + + GIN index access method + 2742 + 1 + index + 333 + ginhandler + pg_catalog + + + GiST index access method + 783 + 1 + index + 332 + gisthandler + pg_catalog + + + hash index access method + 405 + 1 + index + 331 + hashhandler + pg_catalog + + + heap table access method + 2 + 1 + table + 3 + heap_tableam_handler + pg_catalog + + + SP-GiST index access method + 4000 + 1 + index + 334 + spghandler + pg_catalog + + + explicit + function + 10035 + 1 + 2558 + int4 + pg_catalog + 16 + bool + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10201 + 1 + 2971 + text + pg_catalog + 16 + bool + pg_catalog + 1042 + bpchar + pg_catalog + + + assignment + function + 10191 + 1 + 2971 + text + pg_catalog + 16 + bool + pg_catalog + 25 + text + pg_catalog + + + assignment + function + 10196 + 1 + 2971 + text + pg_catalog + 16 + bool + pg_catalog + 1043 + varchar + pg_catalog + + + explicit + function + 10143 + 1 + 77 + int4 + pg_catalog + 18 + char + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10133 + 1 + 946 + text + pg_catalog + 18 + char + pg_catalog + 1043 + varchar + pg_catalog + + + implicit + function + 10131 + 1 + 946 + text + pg_catalog + 18 + char + pg_catalog + 25 + text + pg_catalog + + + assignment + function + 10132 + 1 + 860 + bpchar + pg_catalog + 18 + char + pg_catalog + 1042 + bpchar + pg_catalog + + + assignment + function + 10135 + 1 + 408 + bpchar + pg_catalog + 19 + name + pg_catalog + 1042 + bpchar + pg_catalog + + + implicit + function + 10134 + 1 + 406 + text + pg_catalog + 19 + name + pg_catalog + 25 + text + pg_catalog + + + assignment + function + 10136 + 1 + 1401 + varchar + pg_catalog + 19 + name + pg_catalog + 1043 + varchar + pg_catalog + + + implicit + function + 10090 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 2206 + regtype + pg_catalog + + + implicit + function + 10060 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 2203 + regoper + pg_catalog + + + implicit + function + 10003 + 1 + 482 + float8 + pg_catalog + 20 + int8 + pg_catalog + 701 + float8 + pg_catalog + + + implicit + function + 10069 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 2204 + regoperator + pg_catalog + + + assignment + function + 10001 + 1 + 480 + int4 + pg_catalog + 20 + int8 + pg_catalog + 23 + int4 + pg_catalog + + + implicit + function + 10044 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 24 + regproc + pg_catalog + + + implicit + function + 10113 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 4096 + regrole + pg_catalog + + + implicit + function + 10120 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 4089 + regnamespace + pg_catalog + + + implicit + function + 10002 + 1 + 652 + float4 + pg_catalog + 20 + int8 + pg_catalog + 700 + float4 + pg_catalog + + + implicit + function + 10104 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 3769 + regdictionary + pg_catalog + + + implicit + function + 10083 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 4191 + regcollation + pg_catalog + + + assignment + function + 10033 + 1 + 3812 + money + pg_catalog + 20 + int8 + pg_catalog + 790 + money + pg_catalog + + + implicit + function + 10037 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 26 + oid + pg_catalog + + + implicit + function + 10097 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 3734 + regconfig + pg_catalog + + + assignment + function + 10000 + 1 + 714 + int2 + pg_catalog + 20 + int8 + pg_catalog + 21 + int2 + pg_catalog + + + explicit + function + 10185 + 1 + 2075 + bit + pg_catalog + 20 + int8 + pg_catalog + 1560 + bit + pg_catalog + + + implicit + function + 10004 + 1 + 1781 + numeric + pg_catalog + 20 + int8 + pg_catalog + 1700 + numeric + pg_catalog + + + implicit + function + 10053 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 2202 + regprocedure + pg_catalog + + + implicit + function + 10076 + 1 + 1287 + oid + pg_catalog + 20 + int8 + pg_catalog + 2205 + regclass + pg_catalog + + + implicit + function + 10045 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 24 + regproc + pg_catalog + + + implicit + function + 10091 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 2206 + regtype + pg_catalog + + + implicit + function + 10084 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 4191 + regcollation + pg_catalog + + + implicit + function + 10070 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 2204 + regoperator + pg_catalog + + + implicit + function + 10038 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 26 + oid + pg_catalog + + + implicit + function + 10009 + 1 + 1782 + numeric + pg_catalog + 21 + int2 + pg_catalog + 1700 + numeric + pg_catalog + + + implicit + function + 10077 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 2205 + regclass + pg_catalog + + + implicit + function + 10006 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 23 + int4 + pg_catalog + + + implicit + function + 10054 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 2202 + regprocedure + pg_catalog + + + implicit + function + 10007 + 1 + 236 + float4 + pg_catalog + 21 + int2 + pg_catalog + 700 + float4 + pg_catalog + + + implicit + function + 10005 + 1 + 754 + int8 + pg_catalog + 21 + int2 + pg_catalog + 20 + int8 + pg_catalog + + + implicit + function + 10114 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 4096 + regrole + pg_catalog + + + implicit + function + 10008 + 1 + 235 + float8 + pg_catalog + 21 + int2 + pg_catalog + 701 + float8 + pg_catalog + + + implicit + function + 10105 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 3769 + regdictionary + pg_catalog + + + implicit + function + 10121 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 4089 + regnamespace + pg_catalog + + + implicit + function + 10061 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 2203 + regoper + pg_catalog + + + implicit + function + 10098 + 1 + 313 + int4 + pg_catalog + 21 + int2 + pg_catalog + 3734 + regconfig + pg_catalog + + + implicit + binary + 10078 + 1 + 23 + int4 + pg_catalog + 2205 + regclass + pg_catalog + + + implicit + binary + 10085 + 1 + 23 + int4 + pg_catalog + 4191 + regcollation + pg_catalog + + + implicit + binary + 10115 + 1 + 23 + int4 + pg_catalog + 4096 + regrole + pg_catalog + + + explicit + function + 10144 + 1 + 78 + char + pg_catalog + 23 + int4 + pg_catalog + 18 + char + pg_catalog + + + implicit + binary + 10122 + 1 + 23 + int4 + pg_catalog + 4089 + regnamespace + pg_catalog + + + implicit + function + 10010 + 1 + 481 + int8 + pg_catalog + 23 + int4 + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10106 + 1 + 23 + int4 + pg_catalog + 3769 + regdictionary + pg_catalog + + + implicit + binary + 10099 + 1 + 23 + int4 + pg_catalog + 3734 + regconfig + pg_catalog + + + assignment + function + 10011 + 1 + 314 + int2 + pg_catalog + 23 + int4 + pg_catalog + 21 + int2 + pg_catalog + + + implicit + binary + 10092 + 1 + 23 + int4 + pg_catalog + 2206 + regtype + pg_catalog + + + implicit + binary + 10071 + 1 + 23 + int4 + pg_catalog + 2204 + regoperator + pg_catalog + + + implicit + binary + 10062 + 1 + 23 + int4 + pg_catalog + 2203 + regoper + pg_catalog + + + implicit + binary + 10046 + 1 + 23 + int4 + pg_catalog + 24 + regproc + pg_catalog + + + implicit + binary + 10055 + 1 + 23 + int4 + pg_catalog + 2202 + regprocedure + pg_catalog + + + explicit + function + 10034 + 1 + 2557 + bool + pg_catalog + 23 + int4 + pg_catalog + 16 + bool + pg_catalog + + + implicit + function + 10014 + 1 + 1740 + numeric + pg_catalog + 23 + int4 + pg_catalog + 1700 + numeric + pg_catalog + + + implicit + binary + 10039 + 1 + 23 + int4 + pg_catalog + 26 + oid + pg_catalog + + + explicit + function + 10186 + 1 + 1683 + bit + pg_catalog + 23 + int4 + pg_catalog + 1560 + bit + pg_catalog + + + implicit + function + 10012 + 1 + 318 + float4 + pg_catalog + 23 + int4 + pg_catalog + 700 + float4 + pg_catalog + + + implicit + function + 10013 + 1 + 316 + float8 + pg_catalog + 23 + int4 + pg_catalog + 701 + float8 + pg_catalog + + + assignment + function + 10032 + 1 + 3811 + money + pg_catalog + 23 + int4 + pg_catalog + 790 + money + pg_catalog + + + assignment + binary + 10048 + 1 + 24 + regproc + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10047 + 1 + 1288 + int8 + pg_catalog + 24 + regproc + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10043 + 1 + 24 + regproc + pg_catalog + 26 + oid + pg_catalog + + + implicit + binary + 10049 + 1 + 24 + regproc + pg_catalog + 2202 + regprocedure + pg_catalog + + + implicit + binary + 10125 + 1 + 25 + text + pg_catalog + 1042 + bpchar + pg_catalog + + + implicit + function + 10140 + 1 + 407 + name + pg_catalog + 25 + text + pg_catalog + 19 + name + pg_catalog + + + assignment + function + 10137 + 1 + 944 + char + pg_catalog + 25 + text + pg_catalog + 18 + char + pg_catalog + + + implicit + binary + 10126 + 1 + 25 + text + pg_catalog + 1043 + varchar + pg_catalog + + + explicit + function + 10193 + 1 + 2896 + xml + pg_catalog + 25 + text + pg_catalog + 142 + xml + pg_catalog + + + implicit + function + 10109 + 1 + 1079 + regclass + pg_catalog + 25 + text + pg_catalog + 2205 + regclass + pg_catalog + + + implicit + binary + 10074 + 1 + 26 + oid + pg_catalog + 2205 + regclass + pg_catalog + + + implicit + binary + 10051 + 1 + 26 + oid + pg_catalog + 2202 + regprocedure + pg_catalog + + + implicit + binary + 10095 + 1 + 26 + oid + pg_catalog + 3734 + regconfig + pg_catalog + + + implicit + binary + 10058 + 1 + 26 + oid + pg_catalog + 2203 + regoper + pg_catalog + + + implicit + binary + 10081 + 1 + 26 + oid + pg_catalog + 4191 + regcollation + pg_catalog + + + implicit + binary + 10067 + 1 + 26 + oid + pg_catalog + 2204 + regoperator + pg_catalog + + + implicit + binary + 10042 + 1 + 26 + oid + pg_catalog + 24 + regproc + pg_catalog + + + assignment + function + 10040 + 1 + 1288 + int8 + pg_catalog + 26 + oid + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10111 + 1 + 26 + oid + pg_catalog + 4096 + regrole + pg_catalog + + + implicit + binary + 10102 + 1 + 26 + oid + pg_catalog + 3769 + regdictionary + pg_catalog + + + implicit + binary + 10088 + 1 + 26 + oid + pg_catalog + 2206 + regtype + pg_catalog + + + assignment + binary + 10041 + 1 + 26 + oid + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10118 + 1 + 26 + oid + pg_catalog + 4089 + regnamespace + pg_catalog + + + assignment + io + 10214 + 1 + 114 + json + pg_catalog + 3802 + jsonb + pg_catalog + + + assignment + binary + 10202 + 1 + 142 + xml + pg_catalog + 1042 + bpchar + pg_catalog + + + assignment + binary + 10197 + 1 + 142 + xml + pg_catalog + 1043 + varchar + pg_catalog + + + assignment + binary + 10192 + 1 + 142 + xml + pg_catalog + 25 + text + pg_catalog + + + implicit + binary + 10145 + 1 + 194 + pg_node_tree + pg_catalog + 25 + text + pg_catalog + + + assignment + function + 10165 + 1 + 4091 + box + pg_catalog + 600 + point + pg_catalog + 603 + box + pg_catalog + + + explicit + function + 10166 + 1 + 1532 + point + pg_catalog + 601 + lseg + pg_catalog + 600 + point + pg_catalog + + + assignment + function + 10167 + 1 + 1449 + polygon + pg_catalog + 602 + path + pg_catalog + 604 + polygon + pg_catalog + + + explicit + function + 10168 + 1 + 1534 + point + pg_catalog + 603 + box + pg_catalog + 600 + point + pg_catalog + + + explicit + function + 10171 + 1 + 1479 + circle + pg_catalog + 603 + box + pg_catalog + 718 + circle + pg_catalog + + + explicit + function + 10169 + 1 + 1541 + lseg + pg_catalog + 603 + box + pg_catalog + 601 + lseg + pg_catalog + + + assignment + function + 10170 + 1 + 1448 + polygon + pg_catalog + 603 + box + pg_catalog + 604 + polygon + pg_catalog + + + explicit + function + 10172 + 1 + 1540 + point + pg_catalog + 604 + polygon + pg_catalog + 600 + point + pg_catalog + + + explicit + function + 10175 + 1 + 1474 + circle + pg_catalog + 604 + polygon + pg_catalog + 718 + circle + pg_catalog + + + explicit + function + 10174 + 1 + 1446 + box + pg_catalog + 604 + polygon + pg_catalog + 603 + box + pg_catalog + + + assignment + function + 10173 + 1 + 1447 + path + pg_catalog + 604 + polygon + pg_catalog + 602 + path + pg_catalog + + + assignment + function + 10194 + 1 + 730 + text + pg_catalog + 650 + cidr + pg_catalog + 1043 + varchar + pg_catalog + + + assignment + function + 10199 + 1 + 730 + text + pg_catalog + 650 + cidr + pg_catalog + 1042 + bpchar + pg_catalog + + + assignment + function + 10189 + 1 + 730 + text + pg_catalog + 650 + cidr + pg_catalog + 25 + text + pg_catalog + + + implicit + binary + 10181 + 1 + 650 + cidr + pg_catalog + 869 + inet + pg_catalog + + + assignment + function + 10016 + 1 + 238 + int2 + pg_catalog + 700 + float4 + pg_catalog + 21 + int2 + pg_catalog + + + assignment + function + 10015 + 1 + 653 + int8 + pg_catalog + 700 + float4 + pg_catalog + 20 + int8 + pg_catalog + + + implicit + function + 10018 + 1 + 311 + float8 + pg_catalog + 700 + float4 + pg_catalog + 701 + float8 + pg_catalog + + + assignment + function + 10019 + 1 + 1742 + numeric + pg_catalog + 700 + float4 + pg_catalog + 1700 + numeric + pg_catalog + + + assignment + function + 10017 + 1 + 319 + int4 + pg_catalog + 700 + float4 + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10024 + 1 + 1743 + numeric + pg_catalog + 701 + float8 + pg_catalog + 1700 + numeric + pg_catalog + + + assignment + function + 10020 + 1 + 483 + int8 + pg_catalog + 701 + float8 + pg_catalog + 20 + int8 + pg_catalog + + + assignment + function + 10021 + 1 + 237 + int2 + pg_catalog + 701 + float8 + pg_catalog + 21 + int2 + pg_catalog + + + assignment + function + 10022 + 1 + 317 + int4 + pg_catalog + 701 + float8 + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10023 + 1 + 312 + float4 + pg_catalog + 701 + float8 + pg_catalog + 700 + float4 + pg_catalog + + + explicit + function + 10178 + 1 + 1544 + polygon + pg_catalog + 718 + circle + pg_catalog + 604 + polygon + pg_catalog + + + explicit + function + 10176 + 1 + 1416 + point + pg_catalog + 718 + circle + pg_catalog + 600 + point + pg_catalog + + + explicit + function + 10177 + 1 + 1480 + box + pg_catalog + 718 + circle + pg_catalog + 603 + box + pg_catalog + + + implicit + function + 10180 + 1 + 4124 + macaddr + pg_catalog + 774 + macaddr8 + pg_catalog + 829 + macaddr + pg_catalog + + + assignment + function + 10030 + 1 + 3823 + numeric + pg_catalog + 790 + money + pg_catalog + 1700 + numeric + pg_catalog + + + implicit + function + 10179 + 1 + 4123 + macaddr8 + pg_catalog + 829 + macaddr + pg_catalog + 774 + macaddr8 + pg_catalog + + + assignment + function + 10195 + 1 + 730 + text + pg_catalog + 869 + inet + pg_catalog + 1043 + varchar + pg_catalog + + + assignment + function + 10190 + 1 + 730 + text + pg_catalog + 869 + inet + pg_catalog + 25 + text + pg_catalog + + + assignment + function + 10182 + 1 + 1715 + cidr + pg_catalog + 869 + inet + pg_catalog + 650 + cidr + pg_catalog + + + assignment + function + 10200 + 1 + 730 + text + pg_catalog + 869 + inet + pg_catalog + 1042 + bpchar + pg_catalog + + + implicit + function + 10204 + 1 + 668 + bpchar + pg_catalog + 1042 + bpchar + pg_catalog + 1042 + bpchar + pg_catalog + + + implicit + function + 10128 + 1 + 401 + text + pg_catalog + 1042 + bpchar + pg_catalog + 1043 + varchar + pg_catalog + + + explicit + function + 10203 + 1 + 2896 + xml + pg_catalog + 1042 + bpchar + pg_catalog + 142 + xml + pg_catalog + + + implicit + function + 10127 + 1 + 401 + text + pg_catalog + 1042 + bpchar + pg_catalog + 25 + text + pg_catalog + + + assignment + function + 10138 + 1 + 944 + char + pg_catalog + 1042 + bpchar + pg_catalog + 18 + char + pg_catalog + + + implicit + function + 10141 + 1 + 409 + name + pg_catalog + 1042 + bpchar + pg_catalog + 19 + name + pg_catalog + + + implicit + binary + 10129 + 1 + 1043 + varchar + pg_catalog + 25 + text + pg_catalog + + + implicit + function + 10142 + 1 + 1400 + name + pg_catalog + 1043 + varchar + pg_catalog + 19 + name + pg_catalog + + + implicit + binary + 10130 + 1 + 1043 + varchar + pg_catalog + 1042 + bpchar + pg_catalog + + + explicit + function + 10198 + 1 + 2896 + xml + pg_catalog + 1043 + varchar + pg_catalog + 142 + xml + pg_catalog + + + implicit + function + 10110 + 1 + 1079 + regclass + pg_catalog + 1043 + varchar + pg_catalog + 2205 + regclass + pg_catalog + + + implicit + function + 10205 + 1 + 669 + varchar + pg_catalog + 1043 + varchar + pg_catalog + 1043 + varchar + pg_catalog + + + assignment + function + 10139 + 1 + 944 + char + pg_catalog + 1043 + varchar + pg_catalog + 18 + char + pg_catalog + + + implicit + function + 10152 + 1 + 2024 + timestamp + pg_catalog + 1082 + date + pg_catalog + 1114 + timestamp + pg_catalog + + + implicit + function + 10153 + 1 + 1174 + timestamptz + pg_catalog + 1082 + date + pg_catalog + 1184 + timestamptz + pg_catalog + + + implicit + function + 10206 + 1 + 1968 + time + pg_catalog + 1083 + time + pg_catalog + 1083 + time + pg_catalog + + + implicit + function + 10155 + 1 + 2047 + timetz + pg_catalog + 1083 + time + pg_catalog + 1266 + timetz + pg_catalog + + + implicit + function + 10154 + 1 + 1370 + interval + pg_catalog + 1083 + time + pg_catalog + 1186 + interval + pg_catalog + + + implicit + function + 10158 + 1 + 2028 + timestamptz + pg_catalog + 1114 + timestamp + pg_catalog + 1184 + timestamptz + pg_catalog + + + assignment + function + 10156 + 1 + 2029 + date + pg_catalog + 1114 + timestamp + pg_catalog + 1082 + date + pg_catalog + + + assignment + function + 10157 + 1 + 1316 + time + pg_catalog + 1114 + timestamp + pg_catalog + 1083 + time + pg_catalog + + + implicit + function + 10207 + 1 + 1961 + timestamp + pg_catalog + 1114 + timestamp + pg_catalog + 1114 + timestamp + pg_catalog + + + assignment + function + 10159 + 1 + 1178 + date + pg_catalog + 1184 + timestamptz + pg_catalog + 1082 + date + pg_catalog + + + assignment + function + 10162 + 1 + 1388 + timetz + pg_catalog + 1184 + timestamptz + pg_catalog + 1266 + timetz + pg_catalog + + + assignment + function + 10160 + 1 + 2019 + time + pg_catalog + 1184 + timestamptz + pg_catalog + 1083 + time + pg_catalog + + + assignment + function + 10161 + 1 + 2027 + timestamp + pg_catalog + 1184 + timestamptz + pg_catalog + 1114 + timestamp + pg_catalog + + + implicit + function + 10208 + 1 + 1967 + timestamptz + pg_catalog + 1184 + timestamptz + pg_catalog + 1184 + timestamptz + pg_catalog + + + implicit + function + 10209 + 1 + 1200 + interval + pg_catalog + 1186 + interval + pg_catalog + 1186 + interval + pg_catalog + + + assignment + function + 10163 + 1 + 1419 + time + pg_catalog + 1186 + interval + pg_catalog + 1083 + time + pg_catalog + + + assignment + function + 10164 + 1 + 2046 + time + pg_catalog + 1266 + timetz + pg_catalog + 1083 + time + pg_catalog + + + implicit + function + 10210 + 1 + 1969 + timetz + pg_catalog + 1266 + timetz + pg_catalog + 1266 + timetz + pg_catalog + + + explicit + function + 10187 + 1 + 2076 + int8 + pg_catalog + 1560 + bit + pg_catalog + 20 + int8 + pg_catalog + + + implicit + function + 10211 + 1 + 1685 + bit + pg_catalog + 1560 + bit + pg_catalog + 1560 + bit + pg_catalog + + + implicit + binary + 10183 + 1 + 1560 + bit + pg_catalog + 1562 + varbit + pg_catalog + + + explicit + function + 10188 + 1 + 1684 + int4 + pg_catalog + 1560 + bit + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10184 + 1 + 1562 + varbit + pg_catalog + 1560 + bit + pg_catalog + + + implicit + function + 10212 + 1 + 1687 + varbit + pg_catalog + 1562 + varbit + pg_catalog + 1562 + varbit + pg_catalog + + + assignment + function + 10025 + 1 + 1779 + int8 + pg_catalog + 1700 + numeric + pg_catalog + 20 + int8 + pg_catalog + + + assignment + function + 10026 + 1 + 1783 + int2 + pg_catalog + 1700 + numeric + pg_catalog + 21 + int2 + pg_catalog + + + assignment + function + 10027 + 1 + 1744 + int4 + pg_catalog + 1700 + numeric + pg_catalog + 23 + int4 + pg_catalog + + + implicit + function + 10213 + 1 + 1703 + numeric + pg_catalog + 1700 + numeric + pg_catalog + 1700 + numeric + pg_catalog + + + implicit + function + 10029 + 1 + 1746 + float8 + pg_catalog + 1700 + numeric + pg_catalog + 701 + float8 + pg_catalog + + + assignment + function + 10031 + 1 + 3824 + money + pg_catalog + 1700 + numeric + pg_catalog + 790 + money + pg_catalog + + + implicit + function + 10028 + 1 + 1745 + float4 + pg_catalog + 1700 + numeric + pg_catalog + 700 + float4 + pg_catalog + + + assignment + binary + 10057 + 1 + 2202 + regprocedure + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10052 + 1 + 2202 + regprocedure + pg_catalog + 26 + oid + pg_catalog + + + assignment + function + 10056 + 1 + 1288 + int8 + pg_catalog + 2202 + regprocedure + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10050 + 1 + 2202 + regprocedure + pg_catalog + 24 + regproc + pg_catalog + + + implicit + binary + 10065 + 1 + 2203 + regoper + pg_catalog + 2204 + regoperator + pg_catalog + + + assignment + function + 10063 + 1 + 1288 + int8 + pg_catalog + 2203 + regoper + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10059 + 1 + 2203 + regoper + pg_catalog + 26 + oid + pg_catalog + + + assignment + binary + 10064 + 1 + 2203 + regoper + pg_catalog + 23 + int4 + pg_catalog + + + assignment + binary + 10073 + 1 + 2204 + regoperator + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10068 + 1 + 2204 + regoperator + pg_catalog + 26 + oid + pg_catalog + + + assignment + function + 10072 + 1 + 1288 + int8 + pg_catalog + 2204 + regoperator + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10066 + 1 + 2204 + regoperator + pg_catalog + 2203 + regoper + pg_catalog + + + assignment + function + 10079 + 1 + 1288 + int8 + pg_catalog + 2205 + regclass + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10075 + 1 + 2205 + regclass + pg_catalog + 26 + oid + pg_catalog + + + assignment + binary + 10080 + 1 + 2205 + regclass + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10093 + 1 + 1288 + int8 + pg_catalog + 2206 + regtype + pg_catalog + 20 + int8 + pg_catalog + + + assignment + binary + 10094 + 1 + 2206 + regtype + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10089 + 1 + 2206 + regtype + pg_catalog + 26 + oid + pg_catalog + + + implicit + binary + 10146 + 1 + 3361 + pg_ndistinct + pg_catalog + 17 + bytea + pg_catalog + + + implicit + io + 10147 + 1 + 3361 + pg_ndistinct + pg_catalog + 25 + text + pg_catalog + + + implicit + binary + 10148 + 1 + 3402 + pg_dependencies + pg_catalog + 17 + bytea + pg_catalog + + + implicit + io + 10149 + 1 + 3402 + pg_dependencies + pg_catalog + 25 + text + pg_catalog + + + implicit + binary + 10096 + 1 + 3734 + regconfig + pg_catalog + 26 + oid + pg_catalog + + + assignment + function + 10100 + 1 + 1288 + int8 + pg_catalog + 3734 + regconfig + pg_catalog + 20 + int8 + pg_catalog + + + assignment + binary + 10101 + 1 + 3734 + regconfig + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10103 + 1 + 3769 + regdictionary + pg_catalog + 26 + oid + pg_catalog + + + assignment + binary + 10108 + 1 + 3769 + regdictionary + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10107 + 1 + 1288 + int8 + pg_catalog + 3769 + regdictionary + pg_catalog + 20 + int8 + pg_catalog + + + assignment + io + 10215 + 1 + 3802 + jsonb + pg_catalog + 114 + json + pg_catalog + + + explicit + function + 10218 + 1 + 3450 + int2 + pg_catalog + 3802 + jsonb + pg_catalog + 21 + int2 + pg_catalog + + + explicit + function + 10220 + 1 + 3452 + int8 + pg_catalog + 3802 + jsonb + pg_catalog + 20 + int8 + pg_catalog + + + explicit + function + 10219 + 1 + 3451 + int4 + pg_catalog + 3802 + jsonb + pg_catalog + 23 + int4 + pg_catalog + + + explicit + function + 10216 + 1 + 3556 + bool + pg_catalog + 3802 + jsonb + pg_catalog + 16 + bool + pg_catalog + + + explicit + function + 10221 + 1 + 3453 + float4 + pg_catalog + 3802 + jsonb + pg_catalog + 700 + float4 + pg_catalog + + + explicit + function + 10217 + 1 + 3449 + numeric + pg_catalog + 3802 + jsonb + pg_catalog + 1700 + numeric + pg_catalog + + + explicit + function + 10222 + 1 + 2580 + float8 + pg_catalog + 3802 + jsonb + pg_catalog + 701 + float8 + pg_catalog + + + explicit + function + 10223 + 1 + 4281 + int4multirange + pg_catalog + 3904 + int4range + pg_catalog + 4451 + int4multirange + pg_catalog + + + explicit + function + 10225 + 1 + 4284 + nummultirange + pg_catalog + 3906 + numrange + pg_catalog + 4532 + nummultirange + pg_catalog + + + explicit + function + 10227 + 1 + 4287 + tsmultirange + pg_catalog + 3908 + tsrange + pg_catalog + 4533 + tsmultirange + pg_catalog + + + explicit + function + 10228 + 1 + 4290 + tstzmultirange + pg_catalog + 3910 + tstzrange + pg_catalog + 4534 + tstzmultirange + pg_catalog + + + explicit + function + 10226 + 1 + 4293 + datemultirange + pg_catalog + 3912 + daterange + pg_catalog + 4535 + datemultirange + pg_catalog + + + explicit + function + 10224 + 1 + 4296 + int8multirange + pg_catalog + 3926 + int8range + pg_catalog + 4536 + int8multirange + pg_catalog + + + assignment + binary + 10124 + 1 + 4089 + regnamespace + pg_catalog + 23 + int4 + pg_catalog + + + assignment + function + 10123 + 1 + 1288 + int8 + pg_catalog + 4089 + regnamespace + pg_catalog + 20 + int8 + pg_catalog + + + implicit + binary + 10119 + 1 + 4089 + regnamespace + pg_catalog + 26 + oid + pg_catalog + + + assignment + binary + 10117 + 1 + 4096 + regrole + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10112 + 1 + 4096 + regrole + pg_catalog + 26 + oid + pg_catalog + + + assignment + function + 10116 + 1 + 1288 + int8 + pg_catalog + 4096 + regrole + pg_catalog + 20 + int8 + pg_catalog + + + assignment + function + 10086 + 1 + 1288 + int8 + pg_catalog + 4191 + regcollation + pg_catalog + 20 + int8 + pg_catalog + + + assignment + binary + 10087 + 1 + 4191 + regcollation + pg_catalog + 23 + int4 + pg_catalog + + + implicit + binary + 10082 + 1 + 4191 + regcollation + pg_catalog + 26 + oid + pg_catalog + + + implicit + binary + 10150 + 1 + 5017 + pg_mcv_list + pg_catalog + 17 + bytea + pg_catalog + + + implicit + io + 10151 + 1 + 5017 + pg_mcv_list + pg_catalog + 25 + text + pg_catalog + + + explicit + function + 10036 + 1 + 5071 + xid + pg_catalog + 5069 + xid8 + pg_catalog + 28 + xid + pg_catalog + + + PL/pgSQL procedural language + 15049 + 684 + 1.0 + 11 + pg_catalog + 15050 +15051 +15052 +15053 + + + dynamically-loaded C functions + 13 + 1 + fmgr_c_validator + pg_catalog + + + built-in functions + 12 + 1 + fmgr_internal_validator + pg_catalog + + + PL/pgSQL procedural language + plpgsql_call_handler + pg_catalog + plpgsql_inline_handler + pg_catalog + 15053 + 684 + 1 + plpgsql_validator + pg_catalog + + + SQL-language functions + 14 + 1 + 1 + fmgr_sql_validator + pg_catalog + + + 14697 + 530 + postgres + + + system catalog schema + 11 + 524 + postgres + + + standard public schema + 1 + 1373 + 2025-08-31.18:19:43 + 2200 + 524 + pg_database_owner + + + 41321 + 1 + 1 + 1372 + bigint|0s + postgres + + + 41322 + 1372 + 2 + postgres +
+ + by-default + 1 + 1 + 1372 + bigint|0s + 41321 + 20 + + + 2 + 1372 + varchar(255)|0s + 1043 + + + 3 + 1372 + varchar(255)|0s + 1043 + + + 4 + 1372 + bigint|0s + 20 + + + 5 + 1372 + varchar(255)|0s + 1043 + + + 6 + 1372 + date|0s + 1082 + + + 7 + 1372 + varchar(255)|0s + 1043 + + + notification_id + 1 + 41327 + 1 + 1372 + 1 + 403 + + + 1 + 41328 + 1 + 1372 + 41327 + +
+
\ No newline at end of file diff --git a/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw.meta b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw.meta new file mode 100644 index 0000000..b07efb2 --- /dev/null +++ b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw.meta @@ -0,0 +1 @@ +#n:ECommerce-Notification-Service \ No newline at end of file diff --git a/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/information_schema.FNRwLQ.meta b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/information_schema.FNRwLQ.meta new file mode 100644 index 0000000..1ff3db2 --- /dev/null +++ b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/information_schema.FNRwLQ.meta @@ -0,0 +1,2 @@ +#n:information_schema +! [null, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/pg_catalog.0S1ZNQ.meta b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/pg_catalog.0S1ZNQ.meta new file mode 100644 index 0000000..44e65b1 --- /dev/null +++ b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/pg_catalog.0S1ZNQ.meta @@ -0,0 +1,2 @@ +#n:pg_catalog +! [null, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/public.abK9xQ.meta b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/public.abK9xQ.meta new file mode 100644 index 0000000..59bf08e --- /dev/null +++ b/.idea/dataSources/a90f2404-9e15-4dfd-89f6-19837ec25e53/storage_v2/_src_/database/ECommerce-Notification-Service.QLnQmw/schema/public.abK9xQ.meta @@ -0,0 +1,2 @@ +#n:public +! [1373, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/dbb0ccd9-06dd-407f-b700-8142fac9bbbd.xml b/.idea/dataSources/dbb0ccd9-06dd-407f-b700-8142fac9bbbd.xml index 91a6068..46577e8 100644 --- a/.idea/dataSources/dbb0ccd9-06dd-407f-b700-8142fac9bbbd.xml +++ b/.idea/dataSources/dbb0ccd9-06dd-407f-b700-8142fac9bbbd.xml @@ -797,11 +797,7 @@ false Z false Zulu - - 16397 - postgres - - + 1 11||10|C|G 11||-9223372036854775808|U|G @@ -816,95 +812,99 @@ false Zulu 41311 postgres - - 41291 + + default administrative connection database + 5 postgres - - 41281 + + 16397 + postgres + + + 16408 postgres 16412 postgres - - 24897 + + 16416 postgres - - 24888 + + 16581 postgres - - 16581 + + 16593 postgres - - default administrative connection database - 5 + + 16666 postgres - - 16408 + + 24888 postgres - - 16416 + + 24897 postgres - - 16593 + + 41281 postgres - - 16666 + + 41291 postgres - - 4544 - - - 6304 - - + 6171 - - 4571 + + 6181 + + + 6182 - + 3373 3374 3375 3377 - - 6181 - - + 3374 - + 3375 - + + 3377 + + 4569 - + + 4570 + + + 4571 + + 4200 - - 3377 + + 4544 - + 4550 - - 6182 - - - 4570 + + 6304 1 @@ -925,7 +925,7 @@ false Zulu 1 postgres - + block range index (BRIN) access method 3580 1 @@ -934,7 +934,7 @@ false Zulu brinhandler pg_catalog - + b-tree index access method 403 1 @@ -943,7 +943,7 @@ false Zulu bthandler pg_catalog - + GIN index access method 2742 1 @@ -952,7 +952,7 @@ false Zulu ginhandler pg_catalog - + GiST index access method 783 1 @@ -961,7 +961,7 @@ false Zulu gisthandler pg_catalog - + hash index access method 405 1 @@ -970,7 +970,7 @@ false Zulu hashhandler pg_catalog - + heap table access method 2 1 @@ -979,7 +979,7 @@ false Zulu heap_tableam_handler pg_catalog - + SP-GiST index access method 4000 1 @@ -988,7 +988,7 @@ false Zulu spghandler pg_catalog - + explicit function 10035 @@ -1003,7 +1003,7 @@ false Zulu int4 pg_catalog - + assignment function 10201 @@ -1018,7 +1018,7 @@ false Zulu bpchar pg_catalog - + assignment function 10191 @@ -1033,7 +1033,7 @@ false Zulu text pg_catalog - + assignment function 10196 @@ -1048,7 +1048,7 @@ false Zulu varchar pg_catalog - + explicit function 10143 @@ -1063,7 +1063,7 @@ false Zulu int4 pg_catalog - + assignment function 10133 @@ -1078,7 +1078,7 @@ false Zulu varchar pg_catalog - + implicit function 10131 @@ -1093,7 +1093,7 @@ false Zulu text pg_catalog - + assignment function 10132 @@ -1108,7 +1108,7 @@ false Zulu bpchar pg_catalog - + assignment function 10135 @@ -1123,7 +1123,7 @@ false Zulu bpchar pg_catalog - + implicit function 10134 @@ -1138,7 +1138,7 @@ false Zulu text pg_catalog - + assignment function 10136 @@ -1153,7 +1153,7 @@ false Zulu varchar pg_catalog - + implicit function 10090 @@ -1168,7 +1168,7 @@ false Zulu regtype pg_catalog - + implicit function 10060 @@ -1183,7 +1183,7 @@ false Zulu regoper pg_catalog - + implicit function 10003 @@ -1198,7 +1198,7 @@ false Zulu float8 pg_catalog - + implicit function 10069 @@ -1213,7 +1213,7 @@ false Zulu regoperator pg_catalog - + assignment function 10001 @@ -1228,7 +1228,7 @@ false Zulu int4 pg_catalog - + implicit function 10044 @@ -1243,7 +1243,7 @@ false Zulu regproc pg_catalog - + implicit function 10113 @@ -1258,7 +1258,7 @@ false Zulu regrole pg_catalog - + implicit function 10120 @@ -1273,7 +1273,7 @@ false Zulu regnamespace pg_catalog - + implicit function 10002 @@ -1288,7 +1288,7 @@ false Zulu float4 pg_catalog - + implicit function 10104 @@ -1303,7 +1303,7 @@ false Zulu regdictionary pg_catalog - + implicit function 10083 @@ -1318,7 +1318,7 @@ false Zulu regcollation pg_catalog - + assignment function 10033 @@ -1333,7 +1333,7 @@ false Zulu money pg_catalog - + implicit function 10037 @@ -1348,7 +1348,7 @@ false Zulu oid pg_catalog - + implicit function 10097 @@ -1363,7 +1363,7 @@ false Zulu regconfig pg_catalog - + assignment function 10000 @@ -1378,7 +1378,7 @@ false Zulu int2 pg_catalog - + explicit function 10185 @@ -1393,7 +1393,7 @@ false Zulu bit pg_catalog - + implicit function 10004 @@ -1408,7 +1408,7 @@ false Zulu numeric pg_catalog - + implicit function 10053 @@ -1423,7 +1423,7 @@ false Zulu regprocedure pg_catalog - + implicit function 10076 @@ -1438,7 +1438,7 @@ false Zulu regclass pg_catalog - + implicit function 10045 @@ -1453,7 +1453,7 @@ false Zulu regproc pg_catalog - + implicit function 10091 @@ -1468,7 +1468,7 @@ false Zulu regtype pg_catalog - + implicit function 10084 @@ -1483,7 +1483,7 @@ false Zulu regcollation pg_catalog - + implicit function 10070 @@ -1498,7 +1498,7 @@ false Zulu regoperator pg_catalog - + implicit function 10038 @@ -1513,7 +1513,7 @@ false Zulu oid pg_catalog - + implicit function 10009 @@ -1528,7 +1528,7 @@ false Zulu numeric pg_catalog - + implicit function 10077 @@ -1543,7 +1543,7 @@ false Zulu regclass pg_catalog - + implicit function 10006 @@ -1558,7 +1558,7 @@ false Zulu int4 pg_catalog - + implicit function 10054 @@ -1573,7 +1573,7 @@ false Zulu regprocedure pg_catalog - + implicit function 10007 @@ -1588,7 +1588,7 @@ false Zulu float4 pg_catalog - + implicit function 10005 @@ -1603,7 +1603,7 @@ false Zulu int8 pg_catalog - + implicit function 10114 @@ -1618,7 +1618,7 @@ false Zulu regrole pg_catalog - + implicit function 10008 @@ -1633,7 +1633,7 @@ false Zulu float8 pg_catalog - + implicit function 10105 @@ -1648,7 +1648,7 @@ false Zulu regdictionary pg_catalog - + implicit function 10121 @@ -1663,7 +1663,7 @@ false Zulu regnamespace pg_catalog - + implicit function 10061 @@ -1678,7 +1678,7 @@ false Zulu regoper pg_catalog - + implicit function 10098 @@ -1693,7 +1693,7 @@ false Zulu regconfig pg_catalog - + implicit binary 10078 @@ -1705,7 +1705,7 @@ false Zulu regclass pg_catalog - + implicit binary 10085 @@ -1717,7 +1717,7 @@ false Zulu regcollation pg_catalog - + implicit binary 10115 @@ -1729,7 +1729,7 @@ false Zulu regrole pg_catalog - + explicit function 10144 @@ -1744,7 +1744,7 @@ false Zulu char pg_catalog - + implicit binary 10122 @@ -1756,7 +1756,7 @@ false Zulu regnamespace pg_catalog - + implicit function 10010 @@ -1771,7 +1771,7 @@ false Zulu int8 pg_catalog - + implicit binary 10106 @@ -1783,7 +1783,7 @@ false Zulu regdictionary pg_catalog - + implicit binary 10099 @@ -1795,7 +1795,7 @@ false Zulu regconfig pg_catalog - + assignment function 10011 @@ -1810,7 +1810,7 @@ false Zulu int2 pg_catalog - + implicit binary 10092 @@ -1822,7 +1822,7 @@ false Zulu regtype pg_catalog - + implicit binary 10071 @@ -1834,7 +1834,7 @@ false Zulu regoperator pg_catalog - + implicit binary 10062 @@ -1846,7 +1846,7 @@ false Zulu regoper pg_catalog - + implicit binary 10046 @@ -1858,7 +1858,7 @@ false Zulu regproc pg_catalog - + implicit binary 10055 @@ -1870,7 +1870,7 @@ false Zulu regprocedure pg_catalog - + explicit function 10034 @@ -1885,7 +1885,7 @@ false Zulu bool pg_catalog - + implicit function 10014 @@ -1900,7 +1900,7 @@ false Zulu numeric pg_catalog - + implicit binary 10039 @@ -1912,7 +1912,7 @@ false Zulu oid pg_catalog - + explicit function 10186 @@ -1927,7 +1927,7 @@ false Zulu bit pg_catalog - + implicit function 10012 @@ -1942,7 +1942,7 @@ false Zulu float4 pg_catalog - + implicit function 10013 @@ -1957,7 +1957,7 @@ false Zulu float8 pg_catalog - + assignment function 10032 @@ -1972,7 +1972,7 @@ false Zulu money pg_catalog - + assignment binary 10048 @@ -1984,7 +1984,7 @@ false Zulu int4 pg_catalog - + assignment function 10047 @@ -1999,7 +1999,7 @@ false Zulu int8 pg_catalog - + implicit binary 10043 @@ -2011,7 +2011,7 @@ false Zulu oid pg_catalog - + implicit binary 10049 @@ -2023,7 +2023,7 @@ false Zulu regprocedure pg_catalog - + implicit binary 10125 @@ -2035,7 +2035,7 @@ false Zulu bpchar pg_catalog - + implicit function 10140 @@ -2050,7 +2050,7 @@ false Zulu name pg_catalog - + assignment function 10137 @@ -2065,7 +2065,7 @@ false Zulu char pg_catalog - + implicit binary 10126 @@ -2077,7 +2077,7 @@ false Zulu varchar pg_catalog - + explicit function 10193 @@ -2092,7 +2092,7 @@ false Zulu xml pg_catalog - + implicit function 10109 @@ -2107,7 +2107,7 @@ false Zulu regclass pg_catalog - + implicit binary 10074 @@ -2119,7 +2119,7 @@ false Zulu regclass pg_catalog - + implicit binary 10051 @@ -2131,7 +2131,7 @@ false Zulu regprocedure pg_catalog - + implicit binary 10095 @@ -2143,7 +2143,7 @@ false Zulu regconfig pg_catalog - + implicit binary 10058 @@ -2155,7 +2155,7 @@ false Zulu regoper pg_catalog - + implicit binary 10081 @@ -2167,7 +2167,7 @@ false Zulu regcollation pg_catalog - + implicit binary 10067 @@ -2179,7 +2179,7 @@ false Zulu regoperator pg_catalog - + implicit binary 10042 @@ -2191,7 +2191,7 @@ false Zulu regproc pg_catalog - + assignment function 10040 @@ -2206,7 +2206,7 @@ false Zulu int8 pg_catalog - + implicit binary 10111 @@ -2218,7 +2218,7 @@ false Zulu regrole pg_catalog - + implicit binary 10102 @@ -2230,7 +2230,7 @@ false Zulu regdictionary pg_catalog - + implicit binary 10088 @@ -2242,7 +2242,7 @@ false Zulu regtype pg_catalog - + assignment binary 10041 @@ -2254,7 +2254,7 @@ false Zulu int4 pg_catalog - + implicit binary 10118 @@ -2266,7 +2266,7 @@ false Zulu regnamespace pg_catalog - + assignment io 10214 @@ -2278,7 +2278,7 @@ false Zulu jsonb pg_catalog - + assignment binary 10202 @@ -2290,7 +2290,7 @@ false Zulu bpchar pg_catalog - + assignment binary 10197 @@ -2302,7 +2302,7 @@ false Zulu varchar pg_catalog - + assignment binary 10192 @@ -2314,7 +2314,7 @@ false Zulu text pg_catalog - + implicit binary 10145 @@ -2326,7 +2326,7 @@ false Zulu text pg_catalog - + assignment function 10165 @@ -2341,7 +2341,7 @@ false Zulu box pg_catalog - + explicit function 10166 @@ -2356,7 +2356,7 @@ false Zulu point pg_catalog - + assignment function 10167 @@ -2371,7 +2371,7 @@ false Zulu polygon pg_catalog - + explicit function 10168 @@ -2386,7 +2386,7 @@ false Zulu point pg_catalog - + explicit function 10171 @@ -2401,7 +2401,7 @@ false Zulu circle pg_catalog - + explicit function 10169 @@ -2416,7 +2416,7 @@ false Zulu lseg pg_catalog - + assignment function 10170 @@ -2431,7 +2431,7 @@ false Zulu polygon pg_catalog - + explicit function 10172 @@ -2446,7 +2446,7 @@ false Zulu point pg_catalog - + explicit function 10175 @@ -2461,7 +2461,7 @@ false Zulu circle pg_catalog - + explicit function 10174 @@ -2476,7 +2476,7 @@ false Zulu box pg_catalog - + assignment function 10173 @@ -2491,7 +2491,7 @@ false Zulu path pg_catalog - + assignment function 10194 @@ -2506,7 +2506,7 @@ false Zulu varchar pg_catalog - + assignment function 10199 @@ -2521,7 +2521,7 @@ false Zulu bpchar pg_catalog - + assignment function 10189 @@ -2536,7 +2536,7 @@ false Zulu text pg_catalog - + implicit binary 10181 @@ -2548,7 +2548,7 @@ false Zulu inet pg_catalog - + assignment function 10016 @@ -2563,7 +2563,7 @@ false Zulu int2 pg_catalog - + assignment function 10015 @@ -2578,7 +2578,7 @@ false Zulu int8 pg_catalog - + implicit function 10018 @@ -2593,7 +2593,7 @@ false Zulu float8 pg_catalog - + assignment function 10019 @@ -2608,7 +2608,7 @@ false Zulu numeric pg_catalog - + assignment function 10017 @@ -2623,7 +2623,7 @@ false Zulu int4 pg_catalog - + assignment function 10024 @@ -2638,7 +2638,7 @@ false Zulu numeric pg_catalog - + assignment function 10020 @@ -2653,7 +2653,7 @@ false Zulu int8 pg_catalog - + assignment function 10021 @@ -2668,7 +2668,7 @@ false Zulu int2 pg_catalog - + assignment function 10022 @@ -2683,7 +2683,7 @@ false Zulu int4 pg_catalog - + assignment function 10023 @@ -2698,7 +2698,7 @@ false Zulu float4 pg_catalog - + explicit function 10178 @@ -2713,7 +2713,7 @@ false Zulu polygon pg_catalog - + explicit function 10176 @@ -2728,7 +2728,7 @@ false Zulu point pg_catalog - + explicit function 10177 @@ -2743,7 +2743,7 @@ false Zulu box pg_catalog - + implicit function 10180 @@ -2758,7 +2758,7 @@ false Zulu macaddr pg_catalog - + assignment function 10030 @@ -2773,7 +2773,7 @@ false Zulu numeric pg_catalog - + implicit function 10179 @@ -2788,7 +2788,7 @@ false Zulu macaddr8 pg_catalog - + assignment function 10195 @@ -2803,7 +2803,7 @@ false Zulu varchar pg_catalog - + assignment function 10190 @@ -2818,7 +2818,7 @@ false Zulu text pg_catalog - + assignment function 10182 @@ -2833,7 +2833,7 @@ false Zulu cidr pg_catalog - + assignment function 10200 @@ -2848,7 +2848,7 @@ false Zulu bpchar pg_catalog - + implicit function 10204 @@ -2863,7 +2863,7 @@ false Zulu bpchar pg_catalog - + implicit function 10128 @@ -2878,7 +2878,7 @@ false Zulu varchar pg_catalog - + explicit function 10203 @@ -2893,7 +2893,7 @@ false Zulu xml pg_catalog - + implicit function 10127 @@ -2908,7 +2908,7 @@ false Zulu text pg_catalog - + assignment function 10138 @@ -2923,7 +2923,7 @@ false Zulu char pg_catalog - + implicit function 10141 @@ -2938,7 +2938,7 @@ false Zulu name pg_catalog - + implicit binary 10129 @@ -2950,7 +2950,7 @@ false Zulu text pg_catalog - + implicit function 10142 @@ -2965,7 +2965,7 @@ false Zulu name pg_catalog - + implicit binary 10130 @@ -2977,7 +2977,7 @@ false Zulu bpchar pg_catalog - + explicit function 10198 @@ -2992,7 +2992,7 @@ false Zulu xml pg_catalog - + implicit function 10110 @@ -3007,7 +3007,7 @@ false Zulu regclass pg_catalog - + implicit function 10205 @@ -3022,7 +3022,7 @@ false Zulu varchar pg_catalog - + assignment function 10139 @@ -3037,7 +3037,7 @@ false Zulu char pg_catalog - + implicit function 10152 @@ -3052,7 +3052,7 @@ false Zulu timestamp pg_catalog - + implicit function 10153 @@ -3067,7 +3067,7 @@ false Zulu timestamptz pg_catalog - + implicit function 10206 @@ -3082,7 +3082,7 @@ false Zulu time pg_catalog - + implicit function 10155 @@ -3097,7 +3097,7 @@ false Zulu timetz pg_catalog - + implicit function 10154 @@ -3112,7 +3112,7 @@ false Zulu interval pg_catalog - + implicit function 10158 @@ -3127,7 +3127,7 @@ false Zulu timestamptz pg_catalog - + assignment function 10156 @@ -3142,7 +3142,7 @@ false Zulu date pg_catalog - + assignment function 10157 @@ -3157,7 +3157,7 @@ false Zulu time pg_catalog - + implicit function 10207 @@ -3172,7 +3172,7 @@ false Zulu timestamp pg_catalog - + assignment function 10159 @@ -3187,7 +3187,7 @@ false Zulu date pg_catalog - + assignment function 10162 @@ -3202,7 +3202,7 @@ false Zulu timetz pg_catalog - + assignment function 10160 @@ -3217,7 +3217,7 @@ false Zulu time pg_catalog - + assignment function 10161 @@ -3232,7 +3232,7 @@ false Zulu timestamp pg_catalog - + implicit function 10208 @@ -3247,7 +3247,7 @@ false Zulu timestamptz pg_catalog - + implicit function 10209 @@ -3262,7 +3262,7 @@ false Zulu interval pg_catalog - + assignment function 10163 @@ -3277,7 +3277,7 @@ false Zulu time pg_catalog - + assignment function 10164 @@ -3292,7 +3292,7 @@ false Zulu time pg_catalog - + implicit function 10210 @@ -3307,7 +3307,7 @@ false Zulu timetz pg_catalog - + explicit function 10187 @@ -3322,7 +3322,7 @@ false Zulu int8 pg_catalog - + implicit function 10211 @@ -3337,7 +3337,7 @@ false Zulu bit pg_catalog - + implicit binary 10183 @@ -3349,7 +3349,7 @@ false Zulu varbit pg_catalog - + explicit function 10188 @@ -3364,7 +3364,7 @@ false Zulu int4 pg_catalog - + implicit binary 10184 @@ -3376,7 +3376,7 @@ false Zulu bit pg_catalog - + implicit function 10212 @@ -3391,7 +3391,7 @@ false Zulu varbit pg_catalog - + assignment function 10025 @@ -3406,7 +3406,7 @@ false Zulu int8 pg_catalog - + assignment function 10026 @@ -3421,7 +3421,7 @@ false Zulu int2 pg_catalog - + assignment function 10027 @@ -3436,7 +3436,7 @@ false Zulu int4 pg_catalog - + implicit function 10213 @@ -3451,7 +3451,7 @@ false Zulu numeric pg_catalog - + implicit function 10029 @@ -3466,7 +3466,7 @@ false Zulu float8 pg_catalog - + assignment function 10031 @@ -3481,7 +3481,7 @@ false Zulu money pg_catalog - + implicit function 10028 @@ -3496,7 +3496,7 @@ false Zulu float4 pg_catalog - + assignment binary 10057 @@ -3508,7 +3508,7 @@ false Zulu int4 pg_catalog - + implicit binary 10052 @@ -3520,7 +3520,7 @@ false Zulu oid pg_catalog - + assignment function 10056 @@ -3535,7 +3535,7 @@ false Zulu int8 pg_catalog - + implicit binary 10050 @@ -3547,7 +3547,7 @@ false Zulu regproc pg_catalog - + implicit binary 10065 @@ -3559,7 +3559,7 @@ false Zulu regoperator pg_catalog - + assignment function 10063 @@ -3574,7 +3574,7 @@ false Zulu int8 pg_catalog - + implicit binary 10059 @@ -3586,7 +3586,7 @@ false Zulu oid pg_catalog - + assignment binary 10064 @@ -3598,7 +3598,7 @@ false Zulu int4 pg_catalog - + assignment binary 10073 @@ -3610,7 +3610,7 @@ false Zulu int4 pg_catalog - + implicit binary 10068 @@ -3622,7 +3622,7 @@ false Zulu oid pg_catalog - + assignment function 10072 @@ -3637,7 +3637,7 @@ false Zulu int8 pg_catalog - + implicit binary 10066 @@ -3649,7 +3649,7 @@ false Zulu regoper pg_catalog - + assignment function 10079 @@ -3664,7 +3664,7 @@ false Zulu int8 pg_catalog - + implicit binary 10075 @@ -3676,7 +3676,7 @@ false Zulu oid pg_catalog - + assignment binary 10080 @@ -3688,7 +3688,7 @@ false Zulu int4 pg_catalog - + assignment function 10093 @@ -3703,7 +3703,7 @@ false Zulu int8 pg_catalog - + assignment binary 10094 @@ -3715,7 +3715,7 @@ false Zulu int4 pg_catalog - + implicit binary 10089 @@ -3727,7 +3727,7 @@ false Zulu oid pg_catalog - + implicit binary 10146 @@ -3739,7 +3739,7 @@ false Zulu bytea pg_catalog - + implicit io 10147 @@ -3751,7 +3751,7 @@ false Zulu text pg_catalog - + implicit binary 10148 @@ -3763,7 +3763,7 @@ false Zulu bytea pg_catalog - + implicit io 10149 @@ -3775,7 +3775,7 @@ false Zulu text pg_catalog - + implicit binary 10096 @@ -3787,7 +3787,7 @@ false Zulu oid pg_catalog - + assignment function 10100 @@ -3802,7 +3802,7 @@ false Zulu int8 pg_catalog - + assignment binary 10101 @@ -3814,7 +3814,7 @@ false Zulu int4 pg_catalog - + implicit binary 10103 @@ -3826,7 +3826,7 @@ false Zulu oid pg_catalog - + assignment binary 10108 @@ -3838,7 +3838,7 @@ false Zulu int4 pg_catalog - + assignment function 10107 @@ -3853,7 +3853,7 @@ false Zulu int8 pg_catalog - + assignment io 10215 @@ -3865,7 +3865,7 @@ false Zulu json pg_catalog - + explicit function 10218 @@ -3880,7 +3880,7 @@ false Zulu int2 pg_catalog - + explicit function 10220 @@ -3895,7 +3895,7 @@ false Zulu int8 pg_catalog - + explicit function 10219 @@ -3910,7 +3910,7 @@ false Zulu int4 pg_catalog - + explicit function 10216 @@ -3925,7 +3925,7 @@ false Zulu bool pg_catalog - + explicit function 10221 @@ -3940,7 +3940,7 @@ false Zulu float4 pg_catalog - + explicit function 10217 @@ -3955,7 +3955,7 @@ false Zulu numeric pg_catalog - + explicit function 10222 @@ -3970,7 +3970,7 @@ false Zulu float8 pg_catalog - + explicit function 10223 @@ -3985,7 +3985,7 @@ false Zulu int4multirange pg_catalog - + explicit function 10225 @@ -4000,7 +4000,7 @@ false Zulu nummultirange pg_catalog - + explicit function 10227 @@ -4015,7 +4015,7 @@ false Zulu tsmultirange pg_catalog - + explicit function 10228 @@ -4030,7 +4030,7 @@ false Zulu tstzmultirange pg_catalog - + explicit function 10226 @@ -4045,7 +4045,7 @@ false Zulu datemultirange pg_catalog - + explicit function 10224 @@ -4060,7 +4060,7 @@ false Zulu int8multirange pg_catalog - + assignment binary 10124 @@ -4072,7 +4072,7 @@ false Zulu int4 pg_catalog - + assignment function 10123 @@ -4087,7 +4087,7 @@ false Zulu int8 pg_catalog - + implicit binary 10119 @@ -4099,7 +4099,7 @@ false Zulu oid pg_catalog - + assignment binary 10117 @@ -4111,7 +4111,7 @@ false Zulu int4 pg_catalog - + implicit binary 10112 @@ -4123,7 +4123,7 @@ false Zulu oid pg_catalog - + assignment function 10116 @@ -4138,7 +4138,7 @@ false Zulu int8 pg_catalog - + assignment function 10086 @@ -4153,7 +4153,7 @@ false Zulu int8 pg_catalog - + assignment binary 10087 @@ -4165,7 +4165,7 @@ false Zulu int4 pg_catalog - + implicit binary 10082 @@ -4177,7 +4177,7 @@ false Zulu oid pg_catalog - + implicit binary 10150 @@ -4189,7 +4189,7 @@ false Zulu bytea pg_catalog - + implicit io 10151 @@ -4201,7 +4201,7 @@ false Zulu text pg_catalog - + explicit function 10036 @@ -4216,7 +4216,7 @@ false Zulu xid pg_catalog - + PL/pgSQL procedural language 15049 684 @@ -4228,21 +4228,21 @@ false Zulu 15052 15053 - + dynamically-loaded C functions 13 1 fmgr_c_validator pg_catalog - + built-in functions 12 1 fmgr_internal_validator pg_catalog - + PL/pgSQL procedural language plpgsql_call_handler pg_catalog @@ -4254,7 +4254,7 @@ false Zulu plpgsql_validator pg_catalog - + SQL-language functions 14 1 @@ -4262,18 +4262,18 @@ false Zulu fmgr_sql_validator pg_catalog - + 14697 530 postgres - + system catalog schema 11 524 postgres - + standard public schema 1 1351 diff --git a/.idea/encodings.xml b/.idea/encodings.xml index 364cb70..9c6023e 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -9,6 +9,7 @@ + @@ -17,5 +18,6 @@ + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..8fc0ff4 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index e07383f..fdb5812 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -15,6 +15,8 @@