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