UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

13 lines (12 loc) 426 B
import { GeometryHelper } from '../types.js'; export class GeometryHelperRedshift extends GeometryHelper { createColumn(table, field) { if (field.type.split('.')[1]) { field.meta.special = [field.type]; } return table.specificType(field.field, 'geometry'); } asGeoJSON(table, column) { return this.knex.raw('st_asgeojson(??.??) as ??', [table, column, column]); } }