Skip to content

Commit

Permalink
Add fees to fills Athena DDL table. (#824)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau authored Nov 30, 2023
1 parent 66073c1 commit 207b903
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const RAW_TABLE_COLUMNS: string = `
\`transactionHash\` string,
\`createdAt\` string,
\`createdAtHeight\` bigint,
\`clientMetadata\` bigint
\`clientMetadata\` bigint,
\`fee\` string
`;
const TABLE_COLUMNS: string = `
"id",
Expand All @@ -39,7 +40,8 @@ const TABLE_COLUMNS: string = `
"transactionHash",
${castToTimestamp('createdAt')},
"createdAtHeight",
"clientMetadata"
"clientMetadata",
"fee"
`;

export function generateRawTable(tablePrefix: string, rdsExportIdentifier: string): string {
Expand Down

0 comments on commit 207b903

Please sign in to comment.