(out io.Writer, schemaName string, tableName string, index *storepb.IndexMetadata, useOnlyClause bool)
| 3339 | } |
| 3340 | |
| 3341 | func writeIndexSDL(out io.Writer, schemaName string, tableName string, index *storepb.IndexMetadata, useOnlyClause bool) error { |
| 3342 | return writeIndexInternal(out, schemaName, tableName, index, useOnlyClause, false) |
| 3343 | } |
| 3344 | |
| 3345 | // writeIndexInternal is the core index writing function with options for different modes |
| 3346 | func writeIndexInternal(out io.Writer, schema string, table string, index *storepb.IndexMetadata, useOnlyClause bool, includeTerminatorAndComment bool) error { |
no test coverage detected