File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ $startQueryResult = $athena->startQueryExecution(new StartQueryExecutionInput([
55
55
'Database' => 'production_db', // REQUIRED
56
56
]),
57
57
'ResultConfiguration' => new ResultConfiguration([
58
- 'OutputLocation' => 's3://output_bucket_Location ', // REQUIRED
58
+ 'OutputLocation' => 's3://test_output_bucket ', // REQUIRED
59
59
'EncryptionConfiguration' => new EncryptionConfiguration([
60
- 'EncryptionOption' => 'SSE_S3', // REQUIRED SSE_S3|SSE_KMS|CSE_KMS
60
+ 'EncryptionOption' => 'SSE_S3', // REQUIRED
61
61
])
62
62
]),
63
63
]));
@@ -92,7 +92,7 @@ $results = $athena->getQueryResults(new GetQueryResultsInput([
92
92
/** @var Row $row */
93
93
foreach ($results => $row) {
94
94
if ($index === 0) {
95
- $columnLabels = array_column($row->getData(), 'VarCharValue'); // $row->getData() return [ 'VarCharValue' => value]
95
+ $columnLabels = array_column($row->getData(), 'VarCharValue'); // $row->getData() return [ 'VarCharValue' => value, ... ]
96
96
}
97
97
$columnValues[] = array_column($row->getData(), 'VarCharValue');
98
98
}
Original file line number Diff line number Diff line change 551
551
<code >uuid_create(\UUID_TYPE_RANDOM)</code >
552
552
</UndefinedFunction >
553
553
</file >
554
+ <file src =" src/Service/Athena/src/Result/GetQueryResultsOutput.php" >
555
+ <InvalidReturnType occurrences =" 1" >
556
+ <code >\Traversable< Row> </code >
557
+ </InvalidReturnType >
558
+ </file >
554
559
</files >
You can’t perform that action at this time.
0 commit comments