Skip to content

Commit 8372dcb

Browse files
committed
Add varchar type, update docker compose
1 parent 3ce9a68 commit 8372dcb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- grafana
1717

1818
questdb:
19-
image: 'questdb/questdb:7.3.9'
19+
image: 'questdb/questdb:8.0.1'
2020
container_name: 'grafana-questdb-server'
2121
ports:
2222
- '8812:8812'
@@ -29,4 +29,4 @@ services:
2929
- grafana
3030

3131
networks:
32-
grafana:
32+
grafana:

src/components/queryBuilder/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const isIPv4Type = (type: string): boolean => {
6767
};
6868

6969
export const isStringType = (type: string): boolean => {
70-
return ['string', 'symbol', 'char'].includes(type?.toLowerCase());
70+
return ['string', 'symbol', 'char', 'varchar'].includes(type?.toLowerCase());
7171
};
7272

7373
export const isNullFilter = (filter: Filter): filter is NullFilter => {

0 commit comments

Comments
 (0)