From 14ca25289147e797f6bcc81c9cba88a0de948afe Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Wed, 13 Jul 2016 14:59:39 -0300 Subject: [PATCH] Allow to use the BULK_INSERT hack with others commands. --- src/isql/isql.epp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/isql/isql.epp b/src/isql/isql.epp index ec77d95efc..b2bd6b1f14 100644 --- a/src/isql/isql.epp +++ b/src/isql/isql.epp @@ -2666,11 +2666,13 @@ static processing_state bulk_insert_hack(const char* command) if (!statement_type) return ps_ERR; + /*** ASF: This is util to test others commands too. if (statement_type != isc_info_sql_stmt_insert) { isqlGlob.printf("Only INSERT commands are accepted in bulk mode.%s", NEWLINE); return ps_ERR; } + ***/ Firebird::RefPtr message(global_Stmt->getInputMetadata(fbStatus)); if (ISQL_errmsg(fbStatus))