parent
fcdc2bf584
commit
be8cd07cdc
|
@ -112,9 +112,15 @@ module SnowflakeModule {
|
||||||
const descResp = await this.internalQuery({
|
const descResp = await this.internalQuery({
|
||||||
sql: `DESCRIBE TABLE ${tableName};`,
|
sql: `DESCRIBE TABLE ${tableName};`,
|
||||||
})
|
})
|
||||||
|
if (tableName === "CUSTOMER") {
|
||||||
|
console.log("DESC = ", descResp)
|
||||||
|
}
|
||||||
for (let column of descResp) {
|
for (let column of descResp) {
|
||||||
const columnName = column.name
|
const columnName = column.Field
|
||||||
if (column["primary key"] === "Y") {
|
if (
|
||||||
|
column["primary key"] === "Y" &&
|
||||||
|
primaryKeys.indexOf(column.Key) === -1
|
||||||
|
) {
|
||||||
primaryKeys.push(columnName)
|
primaryKeys.push(columnName)
|
||||||
}
|
}
|
||||||
const constraints = {
|
const constraints = {
|
||||||
|
|
Loading…
Reference in New Issue