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
select * from __internal_xxx_8_source_2;
select * from __internal_xxx_8_source_2 limit 10;
No response
PostgreSQL 13.14.0-RisingWave-2.0.0 (4c1649b)
The text was updated successfully, but these errors were encountered:
seems its right when the limit number great than some number
when select * from __internal_xxx_8_source_2 limit 1000; the answer is right.
For the different query plan;
without limit:
dev=> explain select offset_info from __internal_ad_ctr_5_source_11; QUERY PLAN ------------------------------------------------------------------------------ BatchExchange { order: [], dist: Single } └─BatchScan { table: __internal_ad_ctr_5_source_11, columns: [offset_info] } (2 rows)
limit 10:
dev=> explain select offset_info from __internal_ad_ctr_5_source_11 limit 10; QUERY PLAN --------------------------------------------------------------------------------------------- BatchLimit { limit: 10, offset: 0 } └─BatchExchange { order: [], dist: Single, sequential: true } └─BatchLimit { limit: 10, offset: 0 } └─BatchScan { table: __internal_ad_ctr_5_source_11, columns: [offset_info], limit: 10 } (4 rows)
limit 100:
dev=> explain select offset_info from __internal_ad_ctr_5_source_11 limit 100; QUERY PLAN -------------------------------------------------------------------------------------------- BatchExchange { order: [], dist: Single } └─BatchLimit { limit: 100, offset: 0 } └─BatchScan { table: __internal_ad_ctr_5_source_11, columns: [offset_info], limit: 100 } (3 rows)
Sorry, something went wrong.
chenzl25
No branches or pull requests
Describe the bug
select * from __internal_xxx_8_source_2;
select * from __internal_xxx_8_source_2 limit 10;
Error message/log
No response
To Reproduce
No response
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
PostgreSQL 13.14.0-RisingWave-2.0.0 (4c1649b)
Additional context
No response
The text was updated successfully, but these errors were encountered: