Git Product home page Git Product logo

Comments (3)

l1t1 avatar l1t1 commented on May 25, 2024

btw, the csv file has the header.

I add the HEADER clause, it works now, I wonder why the 1st sql select count(*) from external('./t17.csv',COLUMNS => DESCRIPTOR(id int, owner int)) didn't raise an error?

select a.owner, count(*) from external('./t17.csv',COLUMNS => DESCRIPTOR(id int, owner int),HEADER => true ) as a,external('./t17_2.csv',COLUMNS => DESCRIPTOR(id int, owner int),HEADER => true) as b where a.id=b.id group by a.owner ;

from hyper-api-samples.

wolfroediger avatar wolfroediger commented on May 25, 2024

You are correct, the header is the problem. The single file queries did not fail because count(*) will just count the number of lines in the CSV file. It does not type-check the values for all the columns. So, in your example Hyper does not check that the values for id and owner are valid integers. Since you did not specify header the count should also be off by one.

The following query will also fail for a single file since now Hyper checks that the values for owner are valid integers:

select owner, count(*) from external('./t17.csv',COLUMNS => DESCRIPTOR(id int, owner int)) group by owner;

from hyper-api-samples.

l1t1 avatar l1t1 commented on May 25, 2024

thanks @wolfroediger

from hyper-api-samples.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.