Skip to content

Commit 07cb71a

Browse files
authored
Switch back to druid-query-toolkit (#318)
1 parent 65d69ba commit 07cb71a

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

extra/prefix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var moment = Chronoshift.moment;
2929
var isDate = Chronoshift.isDate;
3030
var parseISODate = Chronoshift.parseISODate;
3131

32-
var druidQueryToolkit = require('@druid-toolkit/query');
32+
var druidQueryToolkit = require('druid-query-toolkit');
3333
var SqlColumn = druidQueryToolkit.SqlColumn;
3434
var SqlExpression = druidQueryToolkit.SqlExpression;
3535
var SqlFunction = druidQueryToolkit.SqlFunction;

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
"npm": "6.14.12"
4646
},
4747
"dependencies": {
48-
"@druid-toolkit/query": "^0.19.1",
4948
"chronoshift": "^0.10.0",
5049
"druid.d.ts": "^0.12.1",
50+
"druid-query-toolkit": "^1.0.0",
5151
"has-own-prop": "^1.0.1",
5252
"immutable-class": "^0.11.1",
5353
"moment-timezone": "^0.5.26",

src/expressions/sqlAggregateExpression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { SqlExpression } from '@druid-toolkit/query';
17+
import { SqlExpression } from 'druid-query-toolkit';
1818

1919
import { PlywoodValue } from '../datatypes';
2020
import { SQLDialect } from '../dialect/baseDialect';

src/expressions/sqlRefExpression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { SqlExpression, SqlFunction } from '@druid-toolkit/query';
17+
import { SqlExpression, SqlFunction } from 'druid-query-toolkit';
1818

1919
import { ComputeFn, Datum, PlywoodValue } from '../datatypes';
2020
import { SQLDialect } from '../dialect';

src/external/druidSqlExternal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { Column, Introspect, QueryResult, SqlColumn, SqlQuery } from '@druid-toolkit/query';
17+
import { Column, Introspect, QueryResult, SqlColumn, SqlQuery } from 'druid-query-toolkit';
1818
import { PlywoodRequester } from 'plywood-base-api';
1919
import * as toArray from 'stream-to-array';
2020

test/expression/sqlAggregateExpression.mocha.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
const { SqlExpression } = require('@druid-toolkit/query');
17+
const { SqlExpression } = require('druid-query-toolkit');
1818
const { expect } = require('chai');
1919

2020
const plywood = require('../plywood');

0 commit comments

Comments
 (0)