addColumnsWithSchema method

Future<void> addColumnsWithSchema({
  1. required String table,
  2. required ArrowSchema schema,
})

Implementation

Future<void> addColumnsWithSchema({required String table, required ArrowSchema schema}) {
  return client.addColumnsWithSchema(database: database, table: table, schema: schema, namespace: namespace);
}