All files server/index.ts

0% Statements 0/1
100% Branches 0/0
0% Functions 0/1
0% Lines 0/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60                                                                                                                       
/**
 * Drizzle Cube - Semantic Layer for Drizzle ORM
 * Drizzle ORM-first semantic layer with Cube.js compatibility
 */
 
// Export main classes with Drizzle integration
export { SemanticLayerCompiler } from './compiler'
export { QueryExecutor } from './executor'
 
// Export unified query building
export { QueryPlanner } from './query-planner'
export { QueryBuilder } from './query-builder'
 
// Export database executors
export { 
  createDatabaseExecutor,
  createPostgresExecutor,
  createSQLiteExecutor,
  createMySQLExecutor,
  BaseDatabaseExecutor,
  PostgresExecutor,
  SQLiteExecutor,
  MySQLExecutor
} from './executors'
 
// Export cube utilities
export { 
  resolveSqlExpression,
  createMultiCubeContext,
  resolveCubeReference,
  getJoinType
} from './cube-utils'
 
// Export cube definitions
export { defineCube } from './cube-utils'
 
// Import types for use in utility functions
import type { DrizzleDatabase } from './types'
import { SemanticLayerCompiler } from './compiler'
 
// Export all types
export type * from './types'
 
// Re-export Drizzle SQL type for convenience
export type { SQL } from 'drizzle-orm'
 
 
/**
 * Create a new semantic layer instance with Drizzle integration
 * Use this when you need multiple isolated instances
 */
export function createDrizzleSemanticLayer(options: {
  drizzle: DrizzleDatabase
  schema?: any
}): SemanticLayerCompiler {
  return new SemanticLayerCompiler({
    drizzle: options.drizzle,
    schema: options.schema
  })
}