Socket
Socket
Sign inDemoInstall

knex-with-snowflake-latest

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knex-with-snowflake-latest - npm Package Compare versions

Comparing version 2.4.8 to 2.4.9

12

lib/dialects/snowflake/index.js

@@ -6,8 +6,8 @@ const defer = require('lodash/defer');

const QueryCompiler = require('./query/QueryCompiler');
import { SchemaCompiler, TableCompiler } from './schema';
import * as ColumnBuilder from '../../schema/columnbuilder';
import * as ColumnCompiler_MySQL from '../mysql/schema/mysql-columncompiler';
import * as Transaction from '../../execution/transaction';
import { promisify } from 'util';
const SchemaCompiler = require('./schema/SchemaCompiler');
const TableCompiler = require('./schema/TableCompiler');
const ColumnBuilder = require('../../schema/columnbuilder');
const ColumnCompiler_MySQL = require('../mysql/schema/mysql-columncompiler');
const Transaction = require('../../execution/transaction');
const { promisify } = require('util');
const Client = require('../../client');

@@ -14,0 +14,0 @@

// @ts-ignore
import * as QueryCompiler_MySQL from '../../mysql/query/mysql-querycompiler';
const QueryCompiler_MySQL = require('../../mysql/query/mysql-querycompiler');

@@ -25,2 +25,1 @@ class QueryCompiler extends QueryCompiler_MySQL {

module.exports = QueryCompiler;
// @ts-ignore
import * as SchemaCompiler_MySQL from '../../mysql/schema/mysql-compiler';
const SchemaCompiler_MySQL = require('../../mysql/schema/mysql-compiler');
export class SchemaCompiler extends SchemaCompiler_MySQL {
class SchemaCompiler extends SchemaCompiler_MySQL {
constructor(client, builder) {

@@ -32,1 +32,3 @@ super(client, builder);

}
module.exports = SchemaCompiler;
// @ts-ignore
import * as TableCompiler_MySQL from '../../mysql/schema/mysql-tablecompiler';
const TableCompiler_MySQL = require('../../mysql/schema/mysql-tablecompiler');
export class TableCompiler extends TableCompiler_MySQL {
class TableCompiler extends TableCompiler_MySQL {
constructor(client, builder) {

@@ -23,1 +23,3 @@ super(client, builder);

}
module.exports = TableCompiler;
{
"name": "knex-with-snowflake-latest",
"version": "2.4.8",
"version": "2.4.9",
"description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3",

@@ -5,0 +5,0 @@ "main": "knex",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc