multiwoven-integrations 0.39.2 → 0.39.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a35b01b9b65baadd7ba019cd396715f33919f077d60839f2eb3edfb79f023ce4
4
- data.tar.gz: 30757873d02a48e98c5b9e3c12b24806d07514680e4b9f46db1ec0ef3eefa9aa
3
+ metadata.gz: 722fb600da2ce3d9e52217a69c531d8991746dc4fef92cb22ac436a5f54b1ad8
4
+ data.tar.gz: 3ed0109dda31689e8807ac1601b5008fd52c93f06b5f15ba135ca3fc4b6cfbca
5
5
  SHA512:
6
- metadata.gz: 267974a15ced4dbf77149ec1a7532d7d12cc0c703148b8804d0da5ffdde5e245a3f3cfa81db1364efab6b7505b8e0422cf8b87aa841342b6a6cd1a4ceaa6ea4c
7
- data.tar.gz: ee3136925ebbb9999c366f9797d43c97fd72c4b9be2a8195baccd43998a0ab470e3f7e8ccb4a768c0e345bc1bf147afd4188951118047dd40fb246e8d4edc9b2
6
+ metadata.gz: 5ddaaa66f7ca6ac717f5dc1cb4cb4ef7e329dd96e9a57a10424d4edf39a09e5963620a00cfdbf07f58ded7ad366d73d914fd6370661ce96555dd623ade3f94d9
7
+ data.tar.gz: 85a0969e935fa72f385a2d215cb4aa6c835157f4460d4e561a3d0d8ac1ddebd579d5c8d31ba081f2ab5de1fab7ae6f2a5184c044789ba8a847c6d60981315ae4
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.39.2"
5
+ VERSION = "0.39.3"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -373,7 +373,11 @@ module Multiwoven::Integrations::Source
373
373
  "read_csv_auto('#{escaped_path}')"
374
374
  when ".xlsx", ".xls", ".xlsm"
375
375
  conn.execute("INSTALL excel; LOAD excel;")
376
- "read_xlsx('#{escaped_path}')"
376
+ # all_varchar disables per-column type inference. Spreadsheets routinely mix
377
+ # numbers with free text in a column (e.g. "Undetermined"), which otherwise
378
+ # aborts the read after DESCRIBE has already inferred DOUBLE. The emitted
379
+ # json_schema is string-typed regardless, so nothing downstream loses type info.
380
+ "read_xlsx('#{escaped_path}', all_varchar = true)"
377
381
  else
378
382
  raise ArgumentError, "Unsupported file type: #{file_name}"
379
383
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.2
4
+ version: 0.39.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-08-11 00:00:00.000000000 Z
11
+ date: 2026-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport