René's URL Explorer Experiment


Title: DDL Trigger not working · Issue #1088 · utPLSQL/utPLSQL · GitHub

Open Graph Title: DDL Trigger not working · Issue #1088 · utPLSQL/utPLSQL

X Title: DDL Trigger not working · Issue #1088 · utPLSQL/utPLSQL

Description: Describe the bug utPLSQL was installed with DDL trigger. However, when creating new tests or updating tests, the trigger does not update the annotation cache. ut.run() does not update the cache either, because the DDL trigger is installe...

Open Graph Description: Describe the bug utPLSQL was installed with DDL trigger. However, when creating new tests or updating tests, the trigger does not update the annotation cache. ut.run() does not update the cache eit...

X Description: Describe the bug utPLSQL was installed with DDL trigger. However, when creating new tests or updating tests, the trigger does not update the annotation cache. ut.run() does not update the cache eit...

Opengraph URL: https://github.com/utPLSQL/utPLSQL/issues/1088

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"DDL Trigger not working","articleBody":"**Describe the bug**\r\nutPLSQL was installed with DDL trigger. However, when creating new tests or updating tests, the trigger does not update the annotation cache. ut.run() does not update the cache either, because the DDL trigger is installed. We have to manually run ut_runner.rebuild_annotation_cache() to make any new tests available.\r\n\r\n**Provide version info**\r\nInformation about utPLSQL and Database version, \r\n```sql\r\n11.2.0.4.0\r\n11.2.0\r\n\r\n\r\nPL/SQL procedure successfully completed.\r\n\r\n\r\nUT_VERSION                                                  \r\n------------------------------------------------------------\r\nv3.1.10.3349\r\n\r\n\r\nBANNER                                                                          \r\n--------------------------------------------------------------------------------\r\nOracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production\r\nPL/SQL Release 11.2.0.4.0 - Production\r\nCORE\t11.2.0.4.0\tProduction  \r\nTNS for Solaris: Version 11.2.0.4.0 - Production\r\nNLSRTL Version 11.2.0.4.0 - Production\r\n\r\n\r\nPARAMETER                      VALUE                                   \r\n------------------------------ ----------------------------------------\r\nNLS_LANGUAGE                   ENGLISH                                 \r\nNLS_TERRITORY                  GERMANY                                 \r\nNLS_CURRENCY                   €                                       \r\nNLS_ISO_CURRENCY               GERMANY                                 \r\nNLS_NUMERIC_CHARACTERS         ,.                                      \r\nNLS_CALENDAR                   GREGORIAN                               \r\nNLS_DATE_FORMAT                DD.MM.YYYY HH24:MI:SS                   \r\nNLS_DATE_LANGUAGE              ENGLISH                                 \r\nNLS_SORT                       BINARY                                  \r\nNLS_TIME_FORMAT                HH24:MI:SSXFF                           \r\nNLS_TIMESTAMP_FORMAT           DD.MM.YYYY HH24:MI:SSXFF                \r\nNLS_TIME_TZ_FORMAT             HH24:MI:SSXFF TZR                       \r\nNLS_TIMESTAMP_TZ_FORMAT        DD.MM.YYYY HH24:MI:SSXFF TZR            \r\nNLS_DUAL_CURRENCY              €                                       \r\nNLS_COMP                       BINARY                                  \r\nNLS_LENGTH_SEMANTICS           BYTE                                    \r\nNLS_NCHAR_CONV_EXCP            FALSE                                   \r\n\r\n17 rows selected. \r\n\r\n\r\nPORT_STRING                                                 \r\n------------------------------------------------------------\r\nSVR4-be-64bit-8.1.0\r\n```\r\n\r\n**Information about client software**\r\nWhat client was used to run utPLSQL tests? \r\n--\u003e SQLDeveloper\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. install utPLSQL with DDL trigger\r\n2. create or modify a unit test\r\n3. run ut.run()\r\n4. notice that the new/changed tests are not present\r\n5. run ut_runner.rebuild_annotation_cache()\r\n6. run ut.run()\r\n7. notice the tests are correct now\r\n\r\n**Expected behavior**\r\nWhen the DDL trigger is installed and active, new test objects should automatically be recognized and part of the tests. No need to manully rebuild the cache.\r\n\r\n**Example code**\r\n```sql\r\nselect object_owner, max(parse_time)\r\nfrom ut3.ut_annotation_cache_info\r\ngroup by object_owner;\r\n\r\nOBJECT_OWNER                   MAX(PARSE_TIME)              \r\n------------------------------ -----------------------------\r\nAPPS                           03.07.2020 12:33:09,864321000\r\n\r\n\r\nbegin\r\nif ut3.ut_trigger_check.is_alive() then\r\n   dbms_output.put_line('Trigger alive');\r\nelse\r\n   dbms_output.put_line('Trigger NOT alive');\r\nend if;\r\nend;\r\n\r\nTrigger alive\r\n\r\n\r\nPL/SQL procedure successfully completed.\r\n\r\n\r\nselect *\r\nfrom ut3.ut_annotation_cache\r\nwhere annotation_name = 'suite'\r\nand annotation_text = 'xxpk_ut_test';\r\n\r\nno rows selected\r\n\r\n\r\nCREATE OR REPLACE PACKAGE apps.xxpk_ut_test\r\nAUTHID DEFINER\r\nAS\r\n-- %suite(xxpk_ut_test)\r\n\r\n   -- %test(just testing)\r\n   PROCEDURE t_ut_test;\r\n\r\nEND xxpk_ut_test;\r\n\r\nPackage XXPK_UT_TEST compiled\r\n\r\n\r\nCREATE OR REPLACE PACKAGE BODY apps.xxpk_ut_test\r\nAS\r\n\r\n   PROCEDURE t_ut_test\r\n   IS\r\n   BEGIN\r\n      NULL;\r\n   END;\r\n\r\nEND xxpk_ut_test;\r\n\r\nPackage Body XXPK_UT_TEST compiled\r\n\r\n\r\nselect *\r\nfrom ut3.ut_annotation_cache\r\nwhere annotation_name = 'suite'\r\nand annotation_text = 'xxpk_ut_test';\r\n\r\nno rows selected\r\n\r\n\r\nselect object_owner, max(parse_time)\r\nfrom ut3.ut_annotation_cache_info\r\ngroup by object_owner;\r\n\r\nOBJECT_OWNER                   MAX(PARSE_TIME)              \r\n------------------------------ -----------------------------\r\nAPPS                           03.07.2020 12:33:09,864321000\r\n\r\nselect *\r\nfrom ut3.ut_annotation_cache_info\r\nwhere object_owner = 'APPS'\r\nand object_name = 'XXPK_UT_TEST';\r\n\r\nno rows selected\r\n\r\n\r\nexec ut_runner.rebuild_annotation_cache('APPS');\r\n\r\nPL/SQL procedure successfully completed.\r\n\r\n\r\nselect object_owner, max(parse_time)\r\nfrom ut3.ut_annotation_cache_info\r\ngroup by object_owner;\r\n\r\nOBJECT_OWNER                   MAX(PARSE_TIME)              \r\n------------------------------ -----------------------------\r\nAPPS                           04.07.2020 11:16:48,524991000\r\n\r\n\r\nselect *\r\nfrom ut3.ut_annotation_cache_info\r\nwhere object_owner = 'APPS'\r\nand object_name = 'XXPK_UT_TEST';\r\n\r\n  CACHE_ID OBJECT_OWNER                   OBJECT_NAME                    OBJECT_TYPE                    PARSE_TIME                   \r\n---------- ------------------------------ ------------------------------ ------------------------------ -----------------------------\r\n     41207 APPS                           XXPK_UT_TEST                   PACKAGE                        04.07.2020 11:16:48,524991000\r\n\r\n\r\nselect *\r\nfrom ut3.ut_annotation_cache\r\nwhere annotation_name = 'suite'\r\nand annotation_text = 'xxpk_ut_test';\r\n\r\n  CACHE_ID ANNOTATION_POSITION ANNOTATION_NAME                ANNOTATION_TEXT                SUBOBJECT_NAME                \r\n---------- ------------------- ------------------------------ ------------------------------ ------------------------------\r\n     41207                   4 suite                          xxpk_ut_test                                                 \r\n```\r\n\r\n**Additional context**\r\nInstallation:\r\n```sql\r\n# install utPL/SQL\r\nif [ -f /mnt/dbpatches/utPLSQL/source/install_headless_with_trigger.sql ]; then\r\ncd /mnt/dbpatches/utPLSQL/source\r\nsqlplus \"/ as sysdba\" \u003c\u003cEOF \u003e ~/delphix_log/install_utplsql.log\r\n@install_headless_with_trigger.sql\r\nEOF\r\nfi\r\n\r\n---------------------------------------------------------------------------\r\n\r\noraprod@dpx01db02$ cat install_utplsql.log \r\n\r\nSQL*Plus: Release 11.2.0.4.0 Production on Sun Jun 28 15:26:15 2020\r\n\r\nCopyright (c) 1982, 2013, Oracle.  All rights reserved.\r\n\r\n\r\nConnected to:\r\nOracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production\r\nWith the Partitioning, OLAP and Data Mining options\r\n\r\nSQL\u003e \r\nno rows selected\r\n\r\n\r\n\r\n\r\nCreating utPLSQL user UT3\r\n--------------------------------------------------------------\r\nInstalling utPLSQL v3 framework into UT3 schema\r\n--------------------------------------------------------------\r\nSwitching current schema to UT3\r\n--------------------------------------------------------------\r\nInstalling component UT_DBMS_OUTPUT_CACHE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_VARCHAR2_LIST\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_VARCHAR2_ROWS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_INTEGER_LIST\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OBJECT_NAME\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OBJECT_NAME\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OBJECT_NAMES\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_KEY_VALUE_PAIR\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_KEY_VALUE_PAIRS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REPORTER_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REPORTERS_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_UTILS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_METADATA\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SAVEPOINT_SEQ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_UTILS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_METADATA\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANSICONSOLE_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANSICONSOLE_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_ITEM_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_ITEM_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_ITEMS_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EVENT_ITEM\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EVENT_LISTENER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EVENT_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EVENT_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RUN_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RUN_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_RESULT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_RESULTS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RESULTS_COUNTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_ITEM\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_ITEMS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXECUTABLE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXECUTABLES\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXECUTABLE_TEST\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TEST\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_LOGICAL_SUITE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CONTEXT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_FILE_MAPPING\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_FILE_MAPPINGS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_OPTIONS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RUN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REPORTERS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component JSON_OBJECTS_SPECS\r\nInstalling json structures specs.\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCHER_OPTIONS_ITEMS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCHER_OPTIONS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_KEY_ANYVAL_PAIR\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_KEY_ANYVAL_PAIRS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_KEY_ANYVALUES\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SESSION_CONTEXT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SESSION_CONTEXT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SESSION_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SESSION_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_BUFFER_INFO_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_BUFFER_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_CLOB_BUFFER_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_DATA_ROW\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_DATA_ROWS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_BUFFER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_BUFFER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_TABLE_BUFFER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_TABLE_BUFFER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_CLOB_TABLE_BUFFER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_CLOB_TABLE_BUFFER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TRIGGER_CHECK\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TRIGGER_CHECK\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATIONS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATED_OBJECT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATED_OBJECTS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_OBJ_CACHE_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_OBJS_CACHE_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_CACHE_SEQ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_CACHE_SCHEMA\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_CACHE_INFO\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_CACHE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_CACHE_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_CACHE_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_PARSER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_PARSER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_ANNOTATION_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_ROW\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_ROWS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_SCHEMA\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_PACKAGE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_SEQ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CACHE_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_BUILDER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_BUILDER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_MANAGER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_PROCESSOR\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_PROCESSOR\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling PLSQL profiler objects into UT3 schema\r\nPLSQL_PROFILER_RUNS table created\r\nPLSQL_PROFILER_UNITS table created\r\nPLSQL_PROFILER_DATA table created\r\nSequence PLSQL_PROFILER_RUNNUMBER created\r\nInstalling PLSQL profiler objects into UT3 schema\r\nInstalling DBMSPLSQL Tables objects into UT3 schema\r\nInstalling component UT_FILE_MAPPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_FILE_MAPPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_SOURCES_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HELPER_BLOCK\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HELPER_PROFILER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_BLOCK\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_PROFILER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HELPER_BLOCK\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HELPER_PROFILER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_BLOCK\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_PROFILER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RESULTS_COUNTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_ITEM\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TEST\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_LOGICAL_SUITE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SUITE_CONTEXT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RUN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_RESULT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_OUTPUT_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_FILE_MAPPING\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXECUTABLE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXECUTABLE_TEST\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CONSOLE_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CONSOLE_REPORTER_BASE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPOUND_DATA_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPOUND_DATA_DIFF_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JSON_DATA_DIFF_TMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPOUND_DATA_VALUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JSON_LEAF\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JSON_LEAF_TAB\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JSON_TREE_DETAILS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CURSOR_COLUMN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CURSOR_COLUMN_TAB\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CURSOR_DETAILS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_BLOB\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_BOOLEAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_CLOB\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_DATE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_DSINTERVAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_NUMBER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_REFCURSOR\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_ANYDATA\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_TIMESTAMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_TIMESTAMP_TZ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_TIMESTAMP_LTZ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_VARCHAR2\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_YMINTERVAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_XMLTYPE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPOUND_DATA_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_JSON\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCHER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPARISON_MATCHER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_FALSE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_GREATER_OR_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_GREATER_THAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_LESS_OR_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_LESS_THAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_LIKE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_NOT_NULL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_NULL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_TRUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CONTAIN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_HAVE_COUNT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_BETWEEN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_EMPTY\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCH\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JSON_LEAF\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JSON_TREE_DETAILS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CURSOR_COLUMN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CURSOR_DETAILS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_COMPOUND\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_JSON\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCHER_OPTIONS_ITEMS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCHER_OPTIONS\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPOUND_DATA_VALUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPOUND_DATA_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_BLOB\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_BOOLEAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_CLOB\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_DATE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_DSINTERVAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_NUMBER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_REFCURSOR\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_ANYDATA\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_TIMESTAMP\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_TIMESTAMP_TZ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_TIMESTAMP_LTZ\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_VARCHAR2\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_YMINTERVAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_XMLTYPE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DATA_VALUE_JSON\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCHER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COMPARISON_MATCHER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_FALSE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_GREATER_OR_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_GREATER_THAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_LESS_OR_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_LESS_THAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_LIKE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_NOT_NULL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_NULL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_TRUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_CONTAIN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_HAVE_COUNT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_BETWEEN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_BE_EMPTY\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_MATCH\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_COMPOUND\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_EXPECTATION_JSON\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_KEY_ANYVALUES\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DOCUMENTATION_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DOCUMENTATION_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RUNNER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_RUNNER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DEBUG_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_DEBUG_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TEAMCITY_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TEAMCITY_REPORTER_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TEAMCITY_REPORTER_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TEAMCITY_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JUNIT_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_JUNIT_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TFS_JUNIT_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_TFS_JUNIT_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_XUNIT_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_XUNIT_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SONAR_TEST_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_SONAR_TEST_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HTML_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_REPORT_HTML_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_REPORT_HTML_HELPER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_HTML_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_SONAR_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_SONAR_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERALLS_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERALLS_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_COBERTURA_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_COVERAGE_COBERTURA_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REALTIME_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component UT_REALTIME_REPORTER\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_BETWEEN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_EMPTY\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_FALSE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_GREATER_OR_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_GREATER_THAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_LESS_OR_EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_LESS_THAN\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_LIKE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_NOT_NULL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_NULL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component BE_TRUE\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component EQUAL\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component HAVE_COUNT\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component MATCH\r\nNo errors.\r\n--------------------------------------------------------------\r\nInstalling component CONTAIN\r\nNo errors.\r\n--------------------------------------------------------------\r\nValidating installation\r\n--------------------------------------------------------------\r\nInstallation completed successfully\r\n--------------------------------------------------------------\r\ndefine ut3_user=PUBLIC\r\nGranting privileges on UTPLSQL objects in UT3 schema to user PUBLIC\r\n\r\nSession altered.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\n\r\nGrant succeeded.\r\n\r\ndefine ut3_user=PUBLIC\r\n\r\nSession altered.\r\n\r\nCreating synonyms for UTPLSQL objects in UT3 schema to user PUBLIC\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\n\r\nSynonym created.\r\n\r\nInstalling component UT_TRIGGER_ANNOTATION_PARSING\r\nNo errors.\r\n--------------------------------------------------------------\r\nDisconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production\r\nWith the Partitioning, OLAP and Data Mining options\r\noraprod@dpx01db02$ \r\n```\r\n","author":{"url":"https://github.com/Sartograph","@type":"Person","name":"Sartograph"},"datePublished":"2020-07-04T10:22:55.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":11},"url":"https://github.com/1088/utPLSQL/issues/1088"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:5ca9dc94-ed93-d251-2b8e-4e06d9f6c288
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE784:140C06:405BD7:5972A5:6A6398F9
html-safe-nonceb094eb463c6d08f9f1fe022dd2748b38049a8ca77eaae4505bf401100d7b0b24
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNzg0OjE0MEMwNjo0MDVCRDc6NTk3MkE1OjZBNjM5OEY5IiwidmlzaXRvcl9pZCI6IjI1ODU3MjkzMDUwNzYyNzU0NDkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacac7e34546107fb7e8c4325f11185d43477d2f0666381b5411a14cfe4d2f2385b
hovercard-subject-tagissue:650867021
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/utPLSQL/utPLSQL/1088/issue_layout
twitter:imagehttps://opengraph.githubassets.com/5d8bd81dddb40f721d7ec5832b03f12e3b11a27fb383a48a2b3b4df6d091c6e4/utPLSQL/utPLSQL/issues/1088
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/5d8bd81dddb40f721d7ec5832b03f12e3b11a27fb383a48a2b3b4df6d091c6e4/utPLSQL/utPLSQL/issues/1088
og:image:altDescribe the bug utPLSQL was installed with DDL trigger. However, when creating new tests or updating tests, the trigger does not update the annotation cache. ut.run() does not update the cache eit...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameSartograph
hostnamegithub.com
expected-hostnamegithub.com
None4ca676e17c4da4532dc68541e9fc874034ae840c26b5f34da7f1c42d9a600659
turbo-cache-controlno-preview
go-importgithub.com/utPLSQL/utPLSQL git https://github.com/utPLSQL/utPLSQL.git
octolytics-dimension-user_id15661281
octolytics-dimension-user_loginutPLSQL
octolytics-dimension-repository_id50728220
octolytics-dimension-repository_nwoutPLSQL/utPLSQL
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id50728220
octolytics-dimension-repository_network_root_nwoutPLSQL/utPLSQL
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3a0a9f049e072eb8e5795dfddcefdba9e277501d
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/utPLSQL/utPLSQL/issues/1088#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FutPLSQL%2FutPLSQL%2Fissues%2F1088
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FutPLSQL%2FutPLSQL%2Fissues%2F1088
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=utPLSQL%2FutPLSQL
Reloadhttps://github.com/utPLSQL/utPLSQL/issues/1088
Reloadhttps://github.com/utPLSQL/utPLSQL/issues/1088
Reloadhttps://github.com/utPLSQL/utPLSQL/issues/1088
Please reload this pagehttps://github.com/utPLSQL/utPLSQL/issues/1088
utPLSQL https://github.com/utPLSQL
utPLSQLhttps://github.com/utPLSQL/utPLSQL
Notifications https://github.com/login?return_to=%2FutPLSQL%2FutPLSQL
Fork 188 https://github.com/login?return_to=%2FutPLSQL%2FutPLSQL
Star 619 https://github.com/login?return_to=%2FutPLSQL%2FutPLSQL
Code https://github.com/utPLSQL/utPLSQL
Issues 12 https://github.com/utPLSQL/utPLSQL/issues
Pull requests 0 https://github.com/utPLSQL/utPLSQL/pulls
Discussions https://github.com/utPLSQL/utPLSQL/discussions
Actions https://github.com/utPLSQL/utPLSQL/actions
Projects https://github.com/utPLSQL/utPLSQL/projects
Security and quality 0 https://github.com/utPLSQL/utPLSQL/security
Insights https://github.com/utPLSQL/utPLSQL/pulse
Code https://github.com/utPLSQL/utPLSQL
Issues https://github.com/utPLSQL/utPLSQL/issues
Pull requests https://github.com/utPLSQL/utPLSQL/pulls
Discussions https://github.com/utPLSQL/utPLSQL/discussions
Actions https://github.com/utPLSQL/utPLSQL/actions
Projects https://github.com/utPLSQL/utPLSQL/projects
Security and quality https://github.com/utPLSQL/utPLSQL/security
Insights https://github.com/utPLSQL/utPLSQL/pulse
#1093https://github.com/utPLSQL/utPLSQL/pull/1093
DDL Trigger not workinghttps://github.com/utPLSQL/utPLSQL/issues/1088#top
#1093https://github.com/utPLSQL/utPLSQL/pull/1093
https://github.com/jgebal
bughttps://github.com/utPLSQL/utPLSQL/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com/Sartograph
Sartographhttps://github.com/Sartograph
on Jul 4, 2020https://github.com/utPLSQL/utPLSQL/issues/1088#issue-650867021
jgebalhttps://github.com/jgebal
bughttps://github.com/utPLSQL/utPLSQL/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.