Coder Social home page Coder Social logo

Comments (1)

kylebarron avatar kylebarron commented on September 21, 2024 1

This is actually an upstream arrow JS bug. Here's a repro case independent of parquet:

const arrow = require('apache-arrow');
const {writeFileSync} = require('fs');

const table = arrow.tableFromArrays({
  test: [new Date("2012-01-01T12:34:56.789Z")],
});
const buffer = arrow.tableToIPC(table, 'file')
writeFileSync('table.arrow', buffer)

and then in Python:

import pyarrow.feather as feather
table = feather.read_table('table.arrow')

table.schema
# test: date64[ms] not null

table.to_pandas()
#          test
# 0  2012-01-01

Also, if you look at the field info in JS before exporting to Python, you'll also see it's defined as a DateMillisecond type, which doesn't store any time information.

> table.schema.fields[0]
Field {
  name: 'test',
  type: DateMillisecond [Date] { unit: 1 },
  nullable: false,
  metadata: Map(0) {}
}

Closing as I don't think this is related to parquet-wasm, but happy to discuss further

from parquet-wasm.

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.