add limit and col alias to blocks rt (#172)

* add limit and col alias to blocks

* comment out limit
This commit is contained in:
Jack Forgash 2023-08-30 15:17:28 -06:00 committed by GitHub
parent 38b4e4abc9
commit 3f3c841115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 1 deletions

View File

@ -62,8 +62,10 @@ SELECT
'height',
block_height
)
)
) AS request
FROM
tbl
ORDER BY
block_height ASC
{# LIMIT
250000 #}

View File

@ -97,3 +97,5 @@ FROM
collections_to_ingest
ORDER BY
block_height ASC
{# LIMIT
250000 #}

View File

@ -95,3 +95,5 @@ FROM
transactions_to_ingest
ORDER BY
block_height ASC
{# LIMIT
250000 #}

View File

@ -95,3 +95,5 @@ FROM
transactions_to_ingest
ORDER BY
block_height ASC
{# LIMIT
250000 #}