imean-cassandra-orm 2.0.2 → 2.0.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.
- package/dist/mod.cjs +2 -1
- package/dist/mod.js +2 -1
- package/package.json +1 -1
package/dist/mod.cjs
CHANGED
|
@@ -96,7 +96,8 @@ function isClusteringKeyChanged(schema, tableMetadata2) {
|
|
|
96
96
|
if (existingClusteringKeys.length !== currentClusteringKeys.length)
|
|
97
97
|
return true;
|
|
98
98
|
for (let i = 0; i < existingClusteringKeys.length; i++) {
|
|
99
|
-
if (existingClusteringKeys[i] !== currentClusteringKeys[i])
|
|
99
|
+
if (existingClusteringKeys[i].toLowerCase() !== currentClusteringKeys[i].toLowerCase())
|
|
100
|
+
return true;
|
|
100
101
|
}
|
|
101
102
|
return false;
|
|
102
103
|
}
|
package/dist/mod.js
CHANGED
|
@@ -94,7 +94,8 @@ function isClusteringKeyChanged(schema, tableMetadata2) {
|
|
|
94
94
|
if (existingClusteringKeys.length !== currentClusteringKeys.length)
|
|
95
95
|
return true;
|
|
96
96
|
for (let i = 0; i < existingClusteringKeys.length; i++) {
|
|
97
|
-
if (existingClusteringKeys[i] !== currentClusteringKeys[i])
|
|
97
|
+
if (existingClusteringKeys[i].toLowerCase() !== currentClusteringKeys[i].toLowerCase())
|
|
98
|
+
return true;
|
|
98
99
|
}
|
|
99
100
|
return false;
|
|
100
101
|
}
|