We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
overriding system value
1 parent e25dce1 commit f522b9aCopy full SHA for f522b9a
deno.json
@@ -1,6 +1,6 @@
1
{
2
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
3
- "version": "0.0.1",
+ "version": "0.0.2",
4
"unstable": [
5
"raw-imports"
6
],
src/sync/pg-connector.ts
@@ -353,7 +353,8 @@ ORDER BY
353
tableSchema.columns
354
.map((c) => c.columnName)
355
.join(", ")
356
- }) VALUES\n`;
+ })\nOVERRIDING SYSTEM VALUE VALUES\n`;
357
+ // overriding system value prevents breaking columns that are (generated always as)
358
if (serialized.length === 0) {
359
console.warn(`No rows found for ${table}. Skipping.`);
360
continue;
0 commit comments