We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add redundant table (next to accounts_map_transaction) which stores the most recent 1000 transactions per account.
array_dedup_append('{8,3,2,1}', '{5,3}', 4) -> {2,1,5,3}
SELECT array_dedup_append('{8,3,2,1}', '{5,3}', 4),-- {2,1,5,3} array_dedup_append('{8,3,2,1}', '{5,3}', 10000) -- {8,2,1,5,3}
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
grooviegermanikus
godmodegalactus
No branches or pull requests
Add redundant table (next to accounts_map_transaction) which stores the most recent 1000 transactions per account.
Algorithm:
array_dedup_append('{8,3,2,1}', '{5,3}', 4) -> {2,1,5,3}
The text was updated successfully, but these errors were encountered: