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
あるArrowテーブルが次のような命名規則で並ぶファイルを読み出すとする。
この時、ファイル名のパターンとして $(year)_$(area)_sales_record.arrow みたいのを指定すると、 Arrowファイル本体に year や area という列がなくとも、yearやarea列としてファイル名の一部が参照できるという機能。
$(year)_$(area)_sales_record.arrow
year
area
これは同時にmin/max統計情報としても利用され、例えば条件句に year >= 2022 が含まれれば、古い年次のファイルは そもそも読み出さないといった使い方ができる。
year >= 2022
「ファイル名の一部」は文字列として切り出せるので、その列名を指定のデータ型に変換できない時は
という3パターン程度。
The text was updated successfully, but these errors were encountered:
arrow_fdw: add 'pattern' option
4cf5ef8
issue #834 right now, it works just a filter of files.
No branches or pull requests
あるArrowテーブルが次のような命名規則で並ぶファイルを読み出すとする。
この時、ファイル名のパターンとして
$(year)_$(area)_sales_record.arrow
みたいのを指定すると、Arrowファイル本体に
year
やarea
という列がなくとも、year
やarea
列としてファイル名の一部が参照できるという機能。これは同時にmin/max統計情報としても利用され、例えば条件句に
year >= 2022
が含まれれば、古い年次のファイルはそもそも読み出さないといった使い方ができる。
「ファイル名の一部」は文字列として切り出せるので、その列名を指定のデータ型に変換できない時は
という3パターン程度。
The text was updated successfully, but these errors were encountered: