dbt-adapters 1.8.0__tar.gz → 1.9.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dbt-adapters might be problematic. Click here for more details.

Files changed (165) hide show
  1. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/PKG-INFO +1 -2
  2. dbt_adapters-1.9.0/dbt/adapters/__about__.py +1 -0
  3. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/impl.py +28 -4
  4. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/contracts/connection.py +1 -0
  5. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/adapter_types.proto +1 -0
  6. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/adapter_types_pb2.py +103 -102
  7. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/sql/connections.py +4 -1
  8. dbt_adapters-1.8.0/dbt/adapters/__about__.py +0 -1
  9. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/.gitignore +0 -0
  10. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/LICENSE +0 -0
  11. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/README.md +0 -0
  12. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/__init__.py +0 -0
  13. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/__init__.py +0 -0
  14. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/README.md +0 -0
  15. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/__init__.py +0 -0
  16. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/column.py +0 -0
  17. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/connections.py +0 -0
  18. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/meta.py +0 -0
  19. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/plugin.py +0 -0
  20. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/query_headers.py +0 -0
  21. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/base/relation.py +0 -0
  22. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/cache.py +0 -0
  23. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/capability.py +0 -0
  24. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/clients/__init__.py +0 -0
  25. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/clients/jinja.py +0 -0
  26. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/contracts/__init__.py +0 -0
  27. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/contracts/macros.py +0 -0
  28. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/contracts/relation.py +0 -0
  29. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/README.md +0 -0
  30. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/__init__.py +0 -0
  31. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/base_types.py +0 -0
  32. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/logging.py +0 -0
  33. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/events/types.py +0 -0
  34. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/exceptions/__init__.py +0 -0
  35. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/exceptions/alias.py +0 -0
  36. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/exceptions/cache.py +0 -0
  37. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/exceptions/compilation.py +0 -0
  38. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/exceptions/connection.py +0 -0
  39. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/exceptions/database.py +0 -0
  40. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/factory.py +0 -0
  41. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/protocol.py +0 -0
  42. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/py.typed +0 -0
  43. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/__init__.py +0 -0
  44. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/cursor.py +0 -0
  45. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/description.py +0 -0
  46. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/execute.py +0 -0
  47. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/fetchall.py +0 -0
  48. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/fetchmany.py +0 -0
  49. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/fetchone.py +0 -0
  50. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/cursor/rowcount.py +0 -0
  51. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/record/handle.py +0 -0
  52. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/reference_keys.py +0 -0
  53. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/relation_configs/README.md +0 -0
  54. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/relation_configs/__init__.py +0 -0
  55. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/relation_configs/config_base.py +0 -0
  56. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/relation_configs/config_change.py +0 -0
  57. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/relation_configs/config_validation.py +0 -0
  58. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/sql/__init__.py +0 -0
  59. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/sql/impl.py +0 -0
  60. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/adapters/utils.py +0 -0
  61. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/__init__.py +0 -0
  62. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/__init__.py +0 -0
  63. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/dbt_project.yml +0 -0
  64. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/docs/overview.md +0 -0
  65. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/apply_grants.sql +0 -0
  66. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/columns.sql +0 -0
  67. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/freshness.sql +0 -0
  68. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/indexes.sql +0 -0
  69. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/metadata.sql +0 -0
  70. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/persist_docs.sql +0 -0
  71. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/relation.sql +0 -0
  72. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/schema.sql +0 -0
  73. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/show.sql +0 -0
  74. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/timestamps.sql +0 -0
  75. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/adapters/validate_sql.sql +0 -0
  76. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/etc/datetime.sql +0 -0
  77. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/etc/statement.sql +0 -0
  78. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/generic_test_sql/accepted_values.sql +0 -0
  79. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/generic_test_sql/not_null.sql +0 -0
  80. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/generic_test_sql/relationships.sql +0 -0
  81. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/generic_test_sql/unique.sql +0 -0
  82. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/get_custom_name/get_custom_alias.sql +0 -0
  83. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/get_custom_name/get_custom_database.sql +0 -0
  84. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/get_custom_name/get_custom_schema.sql +0 -0
  85. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/configs.sql +0 -0
  86. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/hooks.sql +0 -0
  87. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/clone/can_clone_table.sql +0 -0
  88. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/clone/clone.sql +0 -0
  89. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql +0 -0
  90. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/incremental/column_helpers.sql +0 -0
  91. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/incremental/incremental.sql +0 -0
  92. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/incremental/is_incremental.sql +0 -0
  93. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/incremental/merge.sql +0 -0
  94. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/incremental/on_schema_change.sql +0 -0
  95. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/incremental/strategies.sql +0 -0
  96. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/materialized_view.sql +0 -0
  97. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/table.sql +0 -0
  98. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/models/view.sql +0 -0
  99. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/seeds/helpers.sql +0 -0
  100. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/seeds/seed.sql +0 -0
  101. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/snapshots/helpers.sql +0 -0
  102. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql +0 -0
  103. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql +0 -0
  104. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/snapshots/strategies.sql +0 -0
  105. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/tests/helpers.sql +0 -0
  106. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/tests/test.sql +0 -0
  107. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/tests/unit.sql +0 -0
  108. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/materializations/tests/where_subquery.sql +0 -0
  109. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/python_model/python.sql +0 -0
  110. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/column/columns_spec_ddl.sql +0 -0
  111. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/create.sql +0 -0
  112. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/create_backup.sql +0 -0
  113. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/create_intermediate.sql +0 -0
  114. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/drop.sql +0 -0
  115. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/drop_backup.sql +0 -0
  116. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/materialized_view/alter.sql +0 -0
  117. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/materialized_view/create.sql +0 -0
  118. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/materialized_view/drop.sql +0 -0
  119. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/materialized_view/refresh.sql +0 -0
  120. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/materialized_view/rename.sql +0 -0
  121. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/materialized_view/replace.sql +0 -0
  122. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/rename.sql +0 -0
  123. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/rename_intermediate.sql +0 -0
  124. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/replace.sql +0 -0
  125. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/schema.sql +0 -0
  126. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/table/create.sql +0 -0
  127. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/table/drop.sql +0 -0
  128. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/table/rename.sql +0 -0
  129. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/table/replace.sql +0 -0
  130. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/view/create.sql +0 -0
  131. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/view/drop.sql +0 -0
  132. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/view/rename.sql +0 -0
  133. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/relations/view/replace.sql +0 -0
  134. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/unit_test_sql/get_fixture_sql.sql +0 -0
  135. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/any_value.sql +0 -0
  136. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/array_append.sql +0 -0
  137. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/array_concat.sql +0 -0
  138. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/array_construct.sql +0 -0
  139. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/bool_or.sql +0 -0
  140. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/cast.sql +0 -0
  141. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/cast_bool_to_text.sql +0 -0
  142. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/concat.sql +0 -0
  143. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/data_types.sql +0 -0
  144. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/date.sql +0 -0
  145. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/date_spine.sql +0 -0
  146. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/date_trunc.sql +0 -0
  147. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/dateadd.sql +0 -0
  148. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/datediff.sql +0 -0
  149. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/escape_single_quotes.sql +0 -0
  150. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/except.sql +0 -0
  151. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/generate_series.sql +0 -0
  152. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/hash.sql +0 -0
  153. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/intersect.sql +0 -0
  154. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/last_day.sql +0 -0
  155. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/length.sql +0 -0
  156. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/listagg.sql +0 -0
  157. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/literal.sql +0 -0
  158. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/position.sql +0 -0
  159. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/replace.sql +0 -0
  160. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/right.sql +0 -0
  161. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/safe_cast.sql +0 -0
  162. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/macros/utils/split_part.sql +0 -0
  163. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/global_project/tests/generic/builtin.sql +0 -0
  164. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/dbt/include/py.typed +0 -0
  165. {dbt_adapters-1.8.0 → dbt_adapters-1.9.0}/pyproject.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dbt-adapters
3
- Version: 1.8.0
3
+ Version: 1.9.0
4
4
  Summary: The set of adapter protocols and base functionality that supports integration with dbt-core
5
5
  Project-URL: Homepage, https://github.com/dbt-labs/dbt-adapters
6
6
  Project-URL: Documentation, https://docs.getdbt.com
@@ -9,7 +9,6 @@ Project-URL: Issues, https://github.com/dbt-labs/dbt-adapters/issues
9
9
  Project-URL: Changelog, https://github.com/dbt-labs/dbt-adapters/blob/main/CHANGELOG.md
10
10
  Author-email: dbt Labs <info@dbtlabs.com>
11
11
  Maintainer-email: dbt Labs <info@dbtlabs.com>
12
- License-File: LICENSE
13
12
  Keywords: adapter,adapters,database,dbt,dbt Cloud,dbt Core,dbt Labs,dbt-core,elt
14
13
  Classifier: Development Status :: 5 - Production/Stable
15
14
  Classifier: License :: OSI Approved :: Apache Software License
@@ -0,0 +1 @@
1
+ version = "1.9.0"
@@ -23,7 +23,6 @@ from typing import (
23
23
  Union,
24
24
  TYPE_CHECKING,
25
25
  )
26
- import os
27
26
  import pytz
28
27
  from dbt_common.behavior_flags import Behavior, BehaviorFlag
29
28
  from dbt_common.clients.jinja import CallableMacroGenerator
@@ -99,6 +98,13 @@ GET_CATALOG_MACRO_NAME = "get_catalog"
99
98
  GET_CATALOG_RELATIONS_MACRO_NAME = "get_catalog_relations"
100
99
  FRESHNESS_MACRO_NAME = "collect_freshness"
101
100
  GET_RELATION_LAST_MODIFIED_MACRO_NAME = "get_relation_last_modified"
101
+ DEFAULT_BASE_BEHAVIOR_FLAGS = [
102
+ {
103
+ "name": "require_batched_execution_for_custom_microbatch_strategy",
104
+ "default": False,
105
+ "docs_url": "https://docs.getdbt.com/docs/build/incremental-microbatch",
106
+ }
107
+ ]
102
108
 
103
109
 
104
110
  class ConstraintSupport(str, Enum):
@@ -274,8 +280,7 @@ class BaseAdapter(metaclass=AdapterMeta):
274
280
  self.connections = self.ConnectionManager(config, mp_context)
275
281
  self._macro_resolver: Optional[MacroResolverProtocol] = None
276
282
  self._macro_context_generator: Optional[MacroContextGeneratorCallable] = None
277
- # this will be updated to include global behavior flags once they exist
278
- self.behavior = [] # type: ignore
283
+ self.behavior = DEFAULT_BASE_BEHAVIOR_FLAGS # type: ignore
279
284
 
280
285
  ###
281
286
  # Methods to set / access a macro resolver
@@ -315,6 +320,8 @@ class BaseAdapter(metaclass=AdapterMeta):
315
320
  def _behavior_flags(self) -> List[BehaviorFlag]:
316
321
  """
317
322
  This method should be overwritten by adapter maintainers to provide platform-specific flags
323
+
324
+ The BaseAdapter should NOT include any global flags here as those should be defined via DEFAULT_BASE_BEHAVIOR_FLAGS
318
325
  """
319
326
  return []
320
327
 
@@ -1573,14 +1580,31 @@ class BaseAdapter(metaclass=AdapterMeta):
1573
1580
  return ["append"]
1574
1581
 
1575
1582
  def builtin_incremental_strategies(self):
1583
+ """
1584
+ List of possible builtin strategies for adapters
1585
+
1586
+ Microbatch is added by _default_. It is only not added when the behavior flag
1587
+ `require_batched_execution_for_custom_microbatch_strategy` is True.
1588
+ """
1576
1589
  builtin_strategies = ["append", "delete+insert", "merge", "insert_overwrite"]
1577
- if os.environ.get("DBT_EXPERIMENTAL_MICROBATCH"):
1590
+ if not self.behavior.require_batched_execution_for_custom_microbatch_strategy.no_warn:
1578
1591
  builtin_strategies.append("microbatch")
1579
1592
 
1580
1593
  return builtin_strategies
1581
1594
 
1582
1595
  @available.parse_none
1583
1596
  def get_incremental_strategy_macro(self, model_context, strategy: str):
1597
+ """Gets the macro for the given incremental strategy.
1598
+
1599
+ Additionally some validations are done:
1600
+ 1. Assert that if the given strategy is a "builtin" strategy, then it must
1601
+ also be defined as a "valid" strategy for the associated adapter
1602
+ 2. Assert that the incremental strategy exists in the model context
1603
+
1604
+ Notably, something be defined by the adapter as "valid" without it being
1605
+ a "builtin", and nothing will break (and that is desirable).
1606
+ """
1607
+
1584
1608
  # Construct macro_name from strategy name
1585
1609
  if strategy is None:
1586
1610
  strategy = "default"
@@ -41,6 +41,7 @@ class AdapterResponse(dbtClassMixin):
41
41
  _message: str
42
42
  code: Optional[str] = None
43
43
  rows_affected: Optional[int] = None
44
+ query_id: Optional[str] = None
44
45
 
45
46
  def __str__(self):
46
47
  return self._message
@@ -266,6 +266,7 @@ message SQLQueryStatus {
266
266
  AdapterNodeInfo node_info = 1;
267
267
  string status = 2;
268
268
  float elapsed = 3;
269
+ string query_id = 4;
269
270
  }
270
271
 
271
272
  message SQLQueryStatusMsg {
@@ -15,17 +15,18 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
15
15
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
16
16
 
17
17
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x61\x64\x61pter_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xab\x02\n\x16\x41\x64\x61pterCommonEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12=\n\x05\x65xtra\x18\t \x03(\x0b\x32..proto_types.AdapterCommonEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"]\n\x13\x41\x64\x61pterNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x9f\x02\n\x0f\x41\x64\x61pterNodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x37\n\rnode_relation\x18\n \x01(\x0b\x32 .proto_types.AdapterNodeRelation\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x87\x01\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x93\x01\n\"CollectFreshnessReturnSignatureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x8e\x01\n\x11\x41\x64\x61pterEventDebug\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"w\n\x14\x41\x64\x61pterEventDebugMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x8d\x01\n\x10\x41\x64\x61pterEventInfo\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"u\n\x13\x41\x64\x61pterEventInfoMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x90\x01\n\x13\x41\x64\x61pterEventWarning\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"{\n\x16\x41\x64\x61pterEventWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\xa0\x01\n\x11\x41\x64\x61pterEventError\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"w\n\x14\x41\x64\x61pterEventErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"f\n\rNewConnection\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"o\n\x10NewConnectionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionReusedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x8b\x01\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x87\x01\n\x1c\x43onnectionClosedInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"f\n\x0eRollbackFailed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"q\n\x11RollbackFailedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"V\n\x10\x43onnectionClosed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionClosedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"X\n\x12\x43onnectionLeftOpen\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"y\n\x15\x43onnectionLeftOpenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"N\n\x08Rollback\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"e\n\x0bRollbackMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"g\n\x0c\x43\x61\x63heMissMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10ListRelationsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"g\n\x0e\x43onnectionUsed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"q\n\x11\x43onnectionUsedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"[\n\x08SQLQuery\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"e\n\x0bSQLQueryMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"b\n\x0eSQLQueryStatus\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\"q\n\x11SQLQueryStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"O\n\tSQLCommit\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"g\n\x0cSQLCommitMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10\x43olTypeChangeMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"q\n\x11SchemaCreationMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"i\n\rSchemaDropMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"k\n\x0e\x43\x61\x63heActionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"q\n\x11\x43\x61\x63heDumpGraphMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"w\n\x14\x41\x64\x61pterRegisteredMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"y\n\x15\x41\x64\x61pterImportErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"s\n\x12PluginLoadErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"a\n\x14NewConnectionOpening\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"}\n\x17NewConnectionOpeningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"o\n\x10\x43odeExecutionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"{\n\x16\x43odeExecutionStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x81\x01\n\x19\x43\x61talogGenerationErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"{\n\x16WriteCatalogFailureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"q\n\x11\x43\x61talogWrittenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"y\n\x15\x43\x61nnotGenerateDocsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"s\n\x12\x42uildingCatalogMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"\x85\x01\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"m\n\x0fHooksRunningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"}\n\x17\x46inishedRunningStatsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x7f\n\x18\x43onstraintNotEnforcedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x81\x01\n\x19\x43onstraintNotSupportedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"%\n\x10TypeCodeNotFound\x12\x11\n\ttype_code\x18\x01 \x01(\x05\"u\n\x13TypeCodeNotFoundMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.TypeCodeNotFoundb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x61\x64\x61pter_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xab\x02\n\x16\x41\x64\x61pterCommonEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12=\n\x05\x65xtra\x18\t \x03(\x0b\x32..proto_types.AdapterCommonEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"]\n\x13\x41\x64\x61pterNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x9f\x02\n\x0f\x41\x64\x61pterNodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x37\n\rnode_relation\x18\n \x01(\x0b\x32 .proto_types.AdapterNodeRelation\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x87\x01\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x93\x01\n\"CollectFreshnessReturnSignatureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x8e\x01\n\x11\x41\x64\x61pterEventDebug\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"w\n\x14\x41\x64\x61pterEventDebugMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x8d\x01\n\x10\x41\x64\x61pterEventInfo\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"u\n\x13\x41\x64\x61pterEventInfoMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x90\x01\n\x13\x41\x64\x61pterEventWarning\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"{\n\x16\x41\x64\x61pterEventWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\xa0\x01\n\x11\x41\x64\x61pterEventError\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"w\n\x14\x41\x64\x61pterEventErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"f\n\rNewConnection\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"o\n\x10NewConnectionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionReusedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x8b\x01\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x87\x01\n\x1c\x43onnectionClosedInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"f\n\x0eRollbackFailed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"q\n\x11RollbackFailedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"V\n\x10\x43onnectionClosed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionClosedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"X\n\x12\x43onnectionLeftOpen\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"y\n\x15\x43onnectionLeftOpenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"N\n\x08Rollback\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"e\n\x0bRollbackMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"g\n\x0c\x43\x61\x63heMissMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10ListRelationsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"g\n\x0e\x43onnectionUsed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"q\n\x11\x43onnectionUsedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"[\n\x08SQLQuery\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"e\n\x0bSQLQueryMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"t\n\x0eSQLQueryStatus\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\x12\x10\n\x08query_id\x18\x04 \x01(\t\"q\n\x11SQLQueryStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"O\n\tSQLCommit\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"g\n\x0cSQLCommitMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10\x43olTypeChangeMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"q\n\x11SchemaCreationMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"i\n\rSchemaDropMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"k\n\x0e\x43\x61\x63heActionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"q\n\x11\x43\x61\x63heDumpGraphMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"w\n\x14\x41\x64\x61pterRegisteredMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"y\n\x15\x41\x64\x61pterImportErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"s\n\x12PluginLoadErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"a\n\x14NewConnectionOpening\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"}\n\x17NewConnectionOpeningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"o\n\x10\x43odeExecutionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"{\n\x16\x43odeExecutionStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x81\x01\n\x19\x43\x61talogGenerationErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"{\n\x16WriteCatalogFailureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"q\n\x11\x43\x61talogWrittenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"y\n\x15\x43\x61nnotGenerateDocsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"s\n\x12\x42uildingCatalogMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"\x85\x01\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"m\n\x0fHooksRunningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"}\n\x17\x46inishedRunningStatsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x7f\n\x18\x43onstraintNotEnforcedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x81\x01\n\x19\x43onstraintNotSupportedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"%\n\x10TypeCodeNotFound\x12\x11\n\ttype_code\x18\x01 \x01(\x05\"u\n\x13TypeCodeNotFoundMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.TypeCodeNotFoundb\x06proto3')
19
19
 
20
20
  _globals = globals()
21
21
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
22
22
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'adapter_types_pb2', _globals)
23
23
  if _descriptor._USE_C_DESCRIPTORS == False:
24
+
24
25
  DESCRIPTOR._options = None
25
- _globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._options = None
26
- _globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._serialized_options = b'8\001'
27
- _globals['_CACHEDUMPGRAPH_DUMPENTRY']._options = None
28
- _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_options = b'8\001'
26
+ _ADAPTERCOMMONEVENTINFO_EXTRAENTRY._options = None
27
+ _ADAPTERCOMMONEVENTINFO_EXTRAENTRY._serialized_options = b'8\001'
28
+ _CACHEDUMPGRAPH_DUMPENTRY._options = None
29
+ _CACHEDUMPGRAPH_DUMPENTRY._serialized_options = b'8\001'
29
30
  _globals['_ADAPTERCOMMONEVENTINFO']._serialized_start=100
30
31
  _globals['_ADAPTERCOMMONEVENTINFO']._serialized_end=399
31
32
  _globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._serialized_start=355
@@ -109,101 +110,101 @@ if _descriptor._USE_C_DESCRIPTORS == False:
109
110
  _globals['_SQLQUERYMSG']._serialized_start=4628
110
111
  _globals['_SQLQUERYMSG']._serialized_end=4729
111
112
  _globals['_SQLQUERYSTATUS']._serialized_start=4731
112
- _globals['_SQLQUERYSTATUS']._serialized_end=4829
113
- _globals['_SQLQUERYSTATUSMSG']._serialized_start=4831
114
- _globals['_SQLQUERYSTATUSMSG']._serialized_end=4944
115
- _globals['_SQLCOMMIT']._serialized_start=4946
116
- _globals['_SQLCOMMIT']._serialized_end=5025
117
- _globals['_SQLCOMMITMSG']._serialized_start=5027
118
- _globals['_SQLCOMMITMSG']._serialized_end=5130
119
- _globals['_COLTYPECHANGE']._serialized_start=5132
120
- _globals['_COLTYPECHANGE']._serialized_end=5229
121
- _globals['_COLTYPECHANGEMSG']._serialized_start=5231
122
- _globals['_COLTYPECHANGEMSG']._serialized_end=5342
123
- _globals['_SCHEMACREATION']._serialized_start=5344
124
- _globals['_SCHEMACREATION']._serialized_end=5408
125
- _globals['_SCHEMACREATIONMSG']._serialized_start=5410
126
- _globals['_SCHEMACREATIONMSG']._serialized_end=5523
127
- _globals['_SCHEMADROP']._serialized_start=5525
128
- _globals['_SCHEMADROP']._serialized_end=5585
129
- _globals['_SCHEMADROPMSG']._serialized_start=5587
130
- _globals['_SCHEMADROPMSG']._serialized_end=5692
131
- _globals['_CACHEACTION']._serialized_start=5695
132
- _globals['_CACHEACTION']._serialized_end=5917
133
- _globals['_CACHEACTIONMSG']._serialized_start=5919
134
- _globals['_CACHEACTIONMSG']._serialized_end=6026
135
- _globals['_CACHEDUMPGRAPH']._serialized_start=6029
136
- _globals['_CACHEDUMPGRAPH']._serialized_end=6181
137
- _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_start=6138
138
- _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_end=6181
139
- _globals['_CACHEDUMPGRAPHMSG']._serialized_start=6183
140
- _globals['_CACHEDUMPGRAPHMSG']._serialized_end=6296
141
- _globals['_ADAPTERREGISTERED']._serialized_start=6298
142
- _globals['_ADAPTERREGISTERED']._serialized_end=6364
143
- _globals['_ADAPTERREGISTEREDMSG']._serialized_start=6366
144
- _globals['_ADAPTERREGISTEREDMSG']._serialized_end=6485
145
- _globals['_ADAPTERIMPORTERROR']._serialized_start=6487
146
- _globals['_ADAPTERIMPORTERROR']._serialized_end=6520
147
- _globals['_ADAPTERIMPORTERRORMSG']._serialized_start=6522
148
- _globals['_ADAPTERIMPORTERRORMSG']._serialized_end=6643
149
- _globals['_PLUGINLOADERROR']._serialized_start=6645
150
- _globals['_PLUGINLOADERROR']._serialized_end=6680
151
- _globals['_PLUGINLOADERRORMSG']._serialized_start=6682
152
- _globals['_PLUGINLOADERRORMSG']._serialized_end=6797
153
- _globals['_NEWCONNECTIONOPENING']._serialized_start=6799
154
- _globals['_NEWCONNECTIONOPENING']._serialized_end=6896
155
- _globals['_NEWCONNECTIONOPENINGMSG']._serialized_start=6898
156
- _globals['_NEWCONNECTIONOPENINGMSG']._serialized_end=7023
157
- _globals['_CODEEXECUTION']._serialized_start=7025
158
- _globals['_CODEEXECUTION']._serialized_end=7081
159
- _globals['_CODEEXECUTIONMSG']._serialized_start=7083
160
- _globals['_CODEEXECUTIONMSG']._serialized_end=7194
161
- _globals['_CODEEXECUTIONSTATUS']._serialized_start=7196
162
- _globals['_CODEEXECUTIONSTATUS']._serialized_end=7250
163
- _globals['_CODEEXECUTIONSTATUSMSG']._serialized_start=7252
164
- _globals['_CODEEXECUTIONSTATUSMSG']._serialized_end=7375
165
- _globals['_CATALOGGENERATIONERROR']._serialized_start=7377
166
- _globals['_CATALOGGENERATIONERROR']._serialized_end=7414
167
- _globals['_CATALOGGENERATIONERRORMSG']._serialized_start=7417
168
- _globals['_CATALOGGENERATIONERRORMSG']._serialized_end=7546
169
- _globals['_WRITECATALOGFAILURE']._serialized_start=7548
170
- _globals['_WRITECATALOGFAILURE']._serialized_end=7593
171
- _globals['_WRITECATALOGFAILUREMSG']._serialized_start=7595
172
- _globals['_WRITECATALOGFAILUREMSG']._serialized_end=7718
173
- _globals['_CATALOGWRITTEN']._serialized_start=7720
174
- _globals['_CATALOGWRITTEN']._serialized_end=7750
175
- _globals['_CATALOGWRITTENMSG']._serialized_start=7752
176
- _globals['_CATALOGWRITTENMSG']._serialized_end=7865
177
- _globals['_CANNOTGENERATEDOCS']._serialized_start=7867
178
- _globals['_CANNOTGENERATEDOCS']._serialized_end=7887
179
- _globals['_CANNOTGENERATEDOCSMSG']._serialized_start=7889
180
- _globals['_CANNOTGENERATEDOCSMSG']._serialized_end=8010
181
- _globals['_BUILDINGCATALOG']._serialized_start=8012
182
- _globals['_BUILDINGCATALOG']._serialized_end=8029
183
- _globals['_BUILDINGCATALOGMSG']._serialized_start=8031
184
- _globals['_BUILDINGCATALOGMSG']._serialized_end=8146
185
- _globals['_DATABASEERRORRUNNINGHOOK']._serialized_start=8148
186
- _globals['_DATABASEERRORRUNNINGHOOK']._serialized_end=8193
187
- _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_start=8196
188
- _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_end=8329
189
- _globals['_HOOKSRUNNING']._serialized_start=8331
190
- _globals['_HOOKSRUNNING']._serialized_end=8383
191
- _globals['_HOOKSRUNNINGMSG']._serialized_start=8385
192
- _globals['_HOOKSRUNNINGMSG']._serialized_end=8494
193
- _globals['_FINISHEDRUNNINGSTATS']._serialized_start=8496
194
- _globals['_FINISHEDRUNNINGSTATS']._serialized_end=8580
195
- _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_start=8582
196
- _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_end=8707
197
- _globals['_CONSTRAINTNOTENFORCED']._serialized_start=8709
198
- _globals['_CONSTRAINTNOTENFORCED']._serialized_end=8769
199
- _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_start=8771
200
- _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_end=8898
201
- _globals['_CONSTRAINTNOTSUPPORTED']._serialized_start=8900
202
- _globals['_CONSTRAINTNOTSUPPORTED']._serialized_end=8961
203
- _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_start=8964
204
- _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_end=9093
205
- _globals['_TYPECODENOTFOUND']._serialized_start=9095
206
- _globals['_TYPECODENOTFOUND']._serialized_end=9132
207
- _globals['_TYPECODENOTFOUNDMSG']._serialized_start=9134
208
- _globals['_TYPECODENOTFOUNDMSG']._serialized_end=9251
113
+ _globals['_SQLQUERYSTATUS']._serialized_end=4847
114
+ _globals['_SQLQUERYSTATUSMSG']._serialized_start=4849
115
+ _globals['_SQLQUERYSTATUSMSG']._serialized_end=4962
116
+ _globals['_SQLCOMMIT']._serialized_start=4964
117
+ _globals['_SQLCOMMIT']._serialized_end=5043
118
+ _globals['_SQLCOMMITMSG']._serialized_start=5045
119
+ _globals['_SQLCOMMITMSG']._serialized_end=5148
120
+ _globals['_COLTYPECHANGE']._serialized_start=5150
121
+ _globals['_COLTYPECHANGE']._serialized_end=5247
122
+ _globals['_COLTYPECHANGEMSG']._serialized_start=5249
123
+ _globals['_COLTYPECHANGEMSG']._serialized_end=5360
124
+ _globals['_SCHEMACREATION']._serialized_start=5362
125
+ _globals['_SCHEMACREATION']._serialized_end=5426
126
+ _globals['_SCHEMACREATIONMSG']._serialized_start=5428
127
+ _globals['_SCHEMACREATIONMSG']._serialized_end=5541
128
+ _globals['_SCHEMADROP']._serialized_start=5543
129
+ _globals['_SCHEMADROP']._serialized_end=5603
130
+ _globals['_SCHEMADROPMSG']._serialized_start=5605
131
+ _globals['_SCHEMADROPMSG']._serialized_end=5710
132
+ _globals['_CACHEACTION']._serialized_start=5713
133
+ _globals['_CACHEACTION']._serialized_end=5935
134
+ _globals['_CACHEACTIONMSG']._serialized_start=5937
135
+ _globals['_CACHEACTIONMSG']._serialized_end=6044
136
+ _globals['_CACHEDUMPGRAPH']._serialized_start=6047
137
+ _globals['_CACHEDUMPGRAPH']._serialized_end=6199
138
+ _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_start=6156
139
+ _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_end=6199
140
+ _globals['_CACHEDUMPGRAPHMSG']._serialized_start=6201
141
+ _globals['_CACHEDUMPGRAPHMSG']._serialized_end=6314
142
+ _globals['_ADAPTERREGISTERED']._serialized_start=6316
143
+ _globals['_ADAPTERREGISTERED']._serialized_end=6382
144
+ _globals['_ADAPTERREGISTEREDMSG']._serialized_start=6384
145
+ _globals['_ADAPTERREGISTEREDMSG']._serialized_end=6503
146
+ _globals['_ADAPTERIMPORTERROR']._serialized_start=6505
147
+ _globals['_ADAPTERIMPORTERROR']._serialized_end=6538
148
+ _globals['_ADAPTERIMPORTERRORMSG']._serialized_start=6540
149
+ _globals['_ADAPTERIMPORTERRORMSG']._serialized_end=6661
150
+ _globals['_PLUGINLOADERROR']._serialized_start=6663
151
+ _globals['_PLUGINLOADERROR']._serialized_end=6698
152
+ _globals['_PLUGINLOADERRORMSG']._serialized_start=6700
153
+ _globals['_PLUGINLOADERRORMSG']._serialized_end=6815
154
+ _globals['_NEWCONNECTIONOPENING']._serialized_start=6817
155
+ _globals['_NEWCONNECTIONOPENING']._serialized_end=6914
156
+ _globals['_NEWCONNECTIONOPENINGMSG']._serialized_start=6916
157
+ _globals['_NEWCONNECTIONOPENINGMSG']._serialized_end=7041
158
+ _globals['_CODEEXECUTION']._serialized_start=7043
159
+ _globals['_CODEEXECUTION']._serialized_end=7099
160
+ _globals['_CODEEXECUTIONMSG']._serialized_start=7101
161
+ _globals['_CODEEXECUTIONMSG']._serialized_end=7212
162
+ _globals['_CODEEXECUTIONSTATUS']._serialized_start=7214
163
+ _globals['_CODEEXECUTIONSTATUS']._serialized_end=7268
164
+ _globals['_CODEEXECUTIONSTATUSMSG']._serialized_start=7270
165
+ _globals['_CODEEXECUTIONSTATUSMSG']._serialized_end=7393
166
+ _globals['_CATALOGGENERATIONERROR']._serialized_start=7395
167
+ _globals['_CATALOGGENERATIONERROR']._serialized_end=7432
168
+ _globals['_CATALOGGENERATIONERRORMSG']._serialized_start=7435
169
+ _globals['_CATALOGGENERATIONERRORMSG']._serialized_end=7564
170
+ _globals['_WRITECATALOGFAILURE']._serialized_start=7566
171
+ _globals['_WRITECATALOGFAILURE']._serialized_end=7611
172
+ _globals['_WRITECATALOGFAILUREMSG']._serialized_start=7613
173
+ _globals['_WRITECATALOGFAILUREMSG']._serialized_end=7736
174
+ _globals['_CATALOGWRITTEN']._serialized_start=7738
175
+ _globals['_CATALOGWRITTEN']._serialized_end=7768
176
+ _globals['_CATALOGWRITTENMSG']._serialized_start=7770
177
+ _globals['_CATALOGWRITTENMSG']._serialized_end=7883
178
+ _globals['_CANNOTGENERATEDOCS']._serialized_start=7885
179
+ _globals['_CANNOTGENERATEDOCS']._serialized_end=7905
180
+ _globals['_CANNOTGENERATEDOCSMSG']._serialized_start=7907
181
+ _globals['_CANNOTGENERATEDOCSMSG']._serialized_end=8028
182
+ _globals['_BUILDINGCATALOG']._serialized_start=8030
183
+ _globals['_BUILDINGCATALOG']._serialized_end=8047
184
+ _globals['_BUILDINGCATALOGMSG']._serialized_start=8049
185
+ _globals['_BUILDINGCATALOGMSG']._serialized_end=8164
186
+ _globals['_DATABASEERRORRUNNINGHOOK']._serialized_start=8166
187
+ _globals['_DATABASEERRORRUNNINGHOOK']._serialized_end=8211
188
+ _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_start=8214
189
+ _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_end=8347
190
+ _globals['_HOOKSRUNNING']._serialized_start=8349
191
+ _globals['_HOOKSRUNNING']._serialized_end=8401
192
+ _globals['_HOOKSRUNNINGMSG']._serialized_start=8403
193
+ _globals['_HOOKSRUNNINGMSG']._serialized_end=8512
194
+ _globals['_FINISHEDRUNNINGSTATS']._serialized_start=8514
195
+ _globals['_FINISHEDRUNNINGSTATS']._serialized_end=8598
196
+ _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_start=8600
197
+ _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_end=8725
198
+ _globals['_CONSTRAINTNOTENFORCED']._serialized_start=8727
199
+ _globals['_CONSTRAINTNOTENFORCED']._serialized_end=8787
200
+ _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_start=8789
201
+ _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_end=8916
202
+ _globals['_CONSTRAINTNOTSUPPORTED']._serialized_start=8918
203
+ _globals['_CONSTRAINTNOTSUPPORTED']._serialized_end=8979
204
+ _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_start=8982
205
+ _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_end=9111
206
+ _globals['_TYPECODENOTFOUND']._serialized_start=9113
207
+ _globals['_TYPECODENOTFOUND']._serialized_end=9150
208
+ _globals['_TYPECODENOTFOUNDMSG']._serialized_start=9152
209
+ _globals['_TYPECODENOTFOUNDMSG']._serialized_end=9269
209
210
  # @@protoc_insertion_point(module_scope)
@@ -92,11 +92,14 @@ class SQLConnectionManager(BaseConnectionManager):
92
92
  cursor = connection.handle.cursor()
93
93
  cursor.execute(sql, bindings)
94
94
 
95
+ result = self.get_response(cursor)
96
+
95
97
  fire_event(
96
98
  SQLQueryStatus(
97
- status=str(self.get_response(cursor)),
99
+ status=str(result),
98
100
  elapsed=time.perf_counter() - pre,
99
101
  node_info=get_node_info(),
102
+ query_id=result.query_id,
100
103
  )
101
104
  )
102
105
 
@@ -1 +0,0 @@
1
- version = "1.8.0"
File without changes
File without changes
File without changes