You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary:
- Support for tuple overwrite in views.
- **ONLY** support for tuple overwriting tuple; **not** tuple overwriting scalar.
- **ONLY** works for `INNER JOIN` views; avoid `OUTER JOIN`.
- Updated version of `aws.cloud_control` incorporated into test suite.
- Added robot test `View Tuple Replacement Working As Exemplified by AWS EC2 Instances List and Detail`.
Copy file name to clipboardExpand all lines: internal/stackql/sql_system/sql/sqlite/sqlengine-setup.ddl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -267,7 +267,7 @@ VALUES (
267
267
IIF(JSON_EXTRACT(Properties, ''$.PublicAccessBlockConfiguration.BlockPublicAcls'') = 0, ''false'', ''true'') as BlockPublicAcls,
268
268
IIF(JSON_EXTRACT(Properties, ''$.PublicAccessBlockConfiguration.IgnorePublicAcls'') = 0, ''false'', ''true'') as IgnorePublicAcls,
269
269
JSON_EXTRACT(Properties, ''$.Tags'') as Tags
270
-
FROM aws.cloud_control.resources WHERE region = ''ap-southeast-2'' and data__TypeName = ''AWS::S3::Bucket'' and data__Identifier = ''stackql-trial-bucket-01''
270
+
FROM aws.cloud_control.resource WHERE region = ''ap-southeast-2'' and data__TypeName = ''AWS::S3::Bucket'' and data__Identifier = ''stackql-trial-bucket-01''
271
271
;'
272
272
);
273
273
@@ -291,7 +291,7 @@ VALUES (
291
291
IIF(JSON_EXTRACT(Properties, ''$.PublicAccessBlockConfiguration.BlockPublicAcls'') = 0, ''false'', ''true'') as BlockPublicAcls,
292
292
IIF(JSON_EXTRACT(Properties, ''$.PublicAccessBlockConfiguration.IgnorePublicAcls'') = 0, ''false'', ''true'') as IgnorePublicAcls,
293
293
JSON_EXTRACT(Properties, ''$.Tags'') as Tags
294
-
FROM aws.cloud_control.resources WHERE region = ''ap-southeast-2'' and data__TypeName = ''AWS::S3::Bucket''
294
+
FROM aws.cloud_control_legacy.resources WHERE region = ''ap-southeast-2'' and data__TypeName = ''AWS::S3::Bucket''
0 commit comments