Nina
Nina

Reputation: 548

Can Npgsql read from PostgreSQL columnar store?

To use columnar store extension of PostgreSQL, foreign tables are created... Can Npgsql read from such tables? If yes, is it similar to reading from traditional tables?

Upvotes: 0

Views: 58

Answers (1)

Laurenz Albe
Laurenz Albe

Reputation: 246788

Yes, that should work fine.

No matter what the foreign data wrapper is, foreign tables behave just like normal PostgreSQL tables (at least when you read from them), so Npgsql won't even notice the difference.

Upvotes: 0

Related Questions