@quereus/quereus 0.4.9 → 0.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -600,7 +600,7 @@ export function valuesToString(stmt: AST.ValuesStmt): string {
600
600
  return `values ${valueRows.join(', ')}`;
601
601
  }
602
602
 
603
- function createIndexToString(stmt: AST.CreateIndexStmt): string {
603
+ export function createIndexToString(stmt: AST.CreateIndexStmt): string {
604
604
  const parts: string[] = ['create'];
605
605
  if (stmt.isUnique) parts.push('unique');
606
606
  parts.push('index');