omnata-plugin-runtime 0.9.4a216__tar.gz → 0.9.4a218__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/json_schema.py +4 -2
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/LICENSE +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/README.md +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.9.4-
|
3
|
+
version = "0.9.4-a218"
|
4
4
|
description = "Classes and common runtime components for building and running Omnata Plugins"
|
5
5
|
authors = ["James Weakley <james.weakley@omnata.com>"]
|
6
6
|
readme = "README.md"
|
@@ -586,6 +586,7 @@ def normalized_view_part(
|
|
586
586
|
)
|
587
587
|
view_columns = snowflake_columns
|
588
588
|
joins = []
|
589
|
+
comment = None
|
589
590
|
if stream_schema is not None:
|
590
591
|
json_schema = JsonSchemaTopLevel.model_validate(stream_schema)
|
591
592
|
view_columns += json_schema.build_view_columns(
|
@@ -593,12 +594,13 @@ def normalized_view_part(
|
|
593
594
|
column_name_expression=column_name_expression
|
594
595
|
)
|
595
596
|
if json_schema.joins:
|
596
|
-
joins = json_schema
|
597
|
+
joins = json_schema.joins
|
598
|
+
comment = json_schema.description
|
597
599
|
|
598
600
|
return SnowflakeViewPart(
|
599
601
|
stream_name=stream_name,
|
600
602
|
raw_table_location=raw_table_location,
|
601
603
|
columns=view_columns,
|
602
604
|
joins=joins,
|
603
|
-
comment=
|
605
|
+
comment=comment
|
604
606
|
)
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.9.4a216 → omnata_plugin_runtime-0.9.4a218}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|