We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3943874 + 7d460cf commit d9683f7Copy full SHA for d9683f7
examples/app/src/main/java/com/blazebit/query/app/Main.java
@@ -535,6 +535,12 @@ private static void testAws(QuerySession session) {
535
System.out.println("AwsContainerDefinitions");
536
print(awsContainerDefinitionResult);
537
538
+ TypedQuery<Object[]> awsTaskSetQuery = session.createQuery(
539
+ "select f.* from AwsTaskSet f" );
540
+ List<Object[]> awsTaskSetResult = awsTaskSetQuery.getResultList();
541
+ System.out.println("AwsTaskSets");
542
+ print(awsTaskSetResult);
543
+
544
545
// ELB
546
TypedQuery<Object[]> awsLoadBalancerQuery = session.createQuery(
0 commit comments