| 1355 | // |
| 1356 | |
| 1357 | static void gen_drop_database( const act* action, int column) |
| 1358 | { |
| 1359 | const gpre_dbb* db = (gpre_dbb*) action->act_object; |
| 1360 | align(column); |
| 1361 | |
| 1362 | fprintf(gpreGlob.out_file, "GDS__DROP_DATABASE (%s, %" SIZEFORMAT ", '%s', RDB$K_DB_TYPE_GDS);", |
| 1363 | status_vector(action), |
| 1364 | strlen(db->dbb_filename), db->dbb_filename); |
| 1365 | set_sqlcode(action, column); |
| 1366 | } |
| 1367 | |
| 1368 | |
| 1369 | //____________________________________________________________ |
no test coverage detected