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
#2365 changed the signature to now allow a delimiter.
> select distinc function_name, parameters from glare_catalog.functions WHERE function_name = 'read_csv'; ┌───────────────┬───────────────────┐ │ function_name │ parameters │ │ ── │ ── │ │ Utf8 │ List<Utf8> │ ╞═══════════════╪═══════════════════╡ │ read_csv │ [Utf8/List<Utf8>] │ └───────────────┴───────────────────┘
The text was updated successfully, but these errors were encountered:
Going to add a headers arg for csv, so will add this in while I'm there.
Sorry, something went wrong.
feat: Allow reading csv files without a header
f97a17a
``` > select * from read_csv('./testdata/csv/headerless.csv', header => 'false'); ┌──────────┬──────────┬──────────┬──────────┐ │ column_1 │ column_2 │ column_3 │ column_4 │ │ ── │ ── │ ── │ ── │ │ Int64 │ Utf8 │ Utf8 │ Float64 │ ╞══════════╪══════════╪══════════╪══════════╡ │ 1 │ hello │ world │ 3.90000 │ │ 2 │ HELLO │ WORLD │ 4.90000 │ └──────────┴──────────┴──────────┴──────────┘ ``` Also does things with the signature. Closes #2375
feat: Allow reading csv files without a header (#2380)
f9963d1
``` > select * from read_csv('./testdata/csv/headerless.csv', header => 'false'); ┌──────────┬──────────┬──────────┬──────────┐ │ column_1 │ column_2 │ column_3 │ column_4 │ │ ── │ ── │ ── │ ── │ │ Int64 │ Utf8 │ Utf8 │ Float64 │ ╞══════════╪══════════╪══════════╪══════════╡ │ 1 │ hello │ world │ 3.90000 │ │ 2 │ HELLO │ WORLD │ 4.90000 │ └──────────┴──────────┴──────────┴──────────┘ ``` Also does things with the signature. Closes #2375 --------- Co-authored-by: universalmind303 <cory.grinstead@gmail.com>
scsmithr
Successfully merging a pull request may close this issue.
Description
#2365 changed the signature to now allow a delimiter.
The text was updated successfully, but these errors were encountered: