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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 722fb600da2ce3d9e52217a69c531d8991746dc4fef92cb22ac436a5f54b1ad8
|
|
4
|
+
data.tar.gz: 3ed0109dda31689e8807ac1601b5008fd52c93f06b5f15ba135ca3fc4b6cfbca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ddaaa66f7ca6ac717f5dc1cb4cb4ef7e329dd96e9a57a10424d4edf39a09e5963620a00cfdbf07f58ded7ad366d73d914fd6370661ce96555dd623ade3f94d9
|
|
7
|
+
data.tar.gz: 85a0969e935fa72f385a2d215cb4aa6c835157f4460d4e561a3d0d8ac1ddebd579d5c8d31ba081f2ab5de1fab7ae6f2a5184c044789ba8a847c6d60981315ae4
|
|
@@ -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
|
-
|
|
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.
|
|
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
|
+
date: 2026-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|