From: imeevma@tarantool.org To: korablev@tarantool.org Cc: tarantool-patches@freelists.org Subject: [tarantool-patches] [PATCH v1 10/12] sql: remove field errCode from struct sql Date: Sun, 5 May 2019 15:17:20 +0300 [thread overview] Message-ID: <1a6c14c7d0913a816a8b6280ddea742bd06903bd.1557056617.git.imeevma@gmail.com> (raw) In-Reply-To: <cover.1557056617.git.imeevma@gmail.com> This field became unusued and should be removed. --- src/box/sql/main.c | 18 ------------------ src/box/sql/prepare.c | 2 -- src/box/sql/sqlInt.h | 1 - src/box/sql/util.c | 2 -- src/box/sql/vdbeapi.c | 1 - 5 files changed, 24 deletions(-) diff --git a/src/box/sql/main.c b/src/box/sql/main.c index a3c6aa1..155cbcc 100644 --- a/src/box/sql/main.c +++ b/src/box/sql/main.c @@ -568,22 +568,6 @@ sqlTempInMemory(const sql * db) } /* - * Return the most recent error code generated by an sql routine. If NULL is - * passed to this function, we assume a malloc() failed during sql_open(). - */ -int -sql_errcode(sql * db) -{ - if (db && !sqlSafetyCheckSickOrOk(db)) { - return SQL_MISUSE; - } - if (!db || db->mallocFailed) { - return SQL_NOMEM; - } - return db->errCode & db->errMask; -} - -/* * This array defines hard upper bounds on limit values. The * initializer must be kept in sync with the SQL_LIMIT_* * #defines in sql.h. @@ -734,7 +718,6 @@ sql_init_db(sql **out_db) */ sqlError(db, SQL_OK); sqlRegisterPerConnectionBuiltinFunctions(db); - rc = sql_errcode(db); if (rc) sqlError(db, rc); @@ -744,7 +727,6 @@ sql_init_db(sql **out_db) sqlGlobalConfig.nLookaside); opendb_out: - rc = sql_errcode(db); assert(db != 0 || rc == SQL_NOMEM); if (rc == SQL_NOMEM) { sql_close(db); diff --git a/src/box/sql/prepare.c b/src/box/sql/prepare.c index 3df6b5c..3f1e1e0 100644 --- a/src/box/sql/prepare.c +++ b/src/box/sql/prepare.c @@ -166,8 +166,6 @@ sqlPrepare(sql * db, /* Database handle. */ *ppStmt = (sql_stmt *) sParse.pVdbe; } - db->errCode = rc; - /* Delete any TriggerPrg structures allocated while parsing this statement. */ while (sParse.pTriggerPrg) { TriggerPrg *pT = sParse.pTriggerPrg; diff --git a/src/box/sql/sqlInt.h b/src/box/sql/sqlInt.h index 1af5457..e6de71c 100644 --- a/src/box/sql/sqlInt.h +++ b/src/box/sql/sqlInt.h @@ -1428,7 +1428,6 @@ struct sql { struct Vdbe *pVdbe; /* List of active virtual machines */ struct coll *pDfltColl; /* The default collating sequence (BINARY) */ i64 szMmap; /* Default mmap_size setting */ - int errCode; /* Most recent error code (sql_*) */ int errMask; /* & result codes with this before returning */ int iSysErrno; /* Errno value from last system error */ u16 dbOptFlags; /* Flags to enable/disable optimizations */ diff --git a/src/box/sql/util.c b/src/box/sql/util.c index 62c29ce..819f7fa 100644 --- a/src/box/sql/util.c +++ b/src/box/sql/util.c @@ -150,7 +150,6 @@ void sqlError(sql * db, int err_code) { assert(db != 0); - db->errCode = err_code; if (err_code) sqlErrorFinish(db, err_code); } @@ -195,7 +194,6 @@ void sqlErrorWithMsg(sql * db, int err_code, const char *zFormat, ...) { assert(db != 0); - db->errCode = err_code; sqlSystemError(db, err_code); if (zFormat == 0) sqlError(db, err_code); diff --git a/src/box/sql/vdbeapi.c b/src/box/sql/vdbeapi.c index 34fa5c8..5a859fe 100644 --- a/src/box/sql/vdbeapi.c +++ b/src/box/sql/vdbeapi.c @@ -564,7 +564,6 @@ sqlStep(Vdbe * p) checkProfileCallback(db, p); #endif - db->errCode = rc; if (SQL_NOMEM == sqlApiExit(p->db, p->rc)) { p->rc = SQL_NOMEM; } -- 2.7.4
next prev parent reply other threads:[~2019-05-05 12:17 UTC|newest] Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-05-05 12:17 [tarantool-patches] [PATCH v1 00/12] sql: set errors in VDBE using diag_set() imeevma 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 01/12] sql: remove errors SQL_TARANTOOL_*_FAIL imeevma 2019-05-15 13:18 ` [tarantool-patches] " n.pettik 2019-05-25 9:16 ` Imeev Mergen 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 02/12] sql: remove error ER_SQL imeevma 2019-05-15 13:18 ` [tarantool-patches] " n.pettik 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 03/12] sql: rework diag_set() in OP_Halt imeevma 2019-05-15 13:18 ` [tarantool-patches] " n.pettik 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 04/12] sql: make SQL_TARANTOOL_ERROR the only errcode of OP_Halt imeevma 2019-05-15 13:18 ` [tarantool-patches] " n.pettik 2019-05-25 9:18 ` Imeev Mergen 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 05/12] sql: remove error SQL_INTERRUPT imeevma 2019-05-15 13:18 ` [tarantool-patches] " n.pettik 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 06/12] sql: remove error SQL_MISMATCH imeevma 2019-05-15 13:19 ` [tarantool-patches] " n.pettik 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 07/12] sql: set errors in VDBE using diag_set() imeevma 2019-05-15 13:26 ` [tarantool-patches] " n.pettik 2019-05-25 10:24 ` Mergen Imeev 2019-05-25 10:36 ` Imeev Mergen 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 08/12] sql: remove field zErrMsg from struct Vdbe imeevma 2019-05-15 13:30 ` [tarantool-patches] " n.pettik 2019-05-25 9:25 ` Imeev Mergen 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 09/12] sql: remove field pErr from struct sql imeevma 2019-05-05 12:17 ` imeevma [this message] 2019-05-15 13:32 ` [tarantool-patches] Re: [PATCH v1 10/12] sql: remove field errCode " n.pettik 2019-05-25 9:25 ` Imeev Mergen 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 11/12] sql: remove sqlError() and remove sqlErrorWithMsg() imeevma 2019-05-05 12:17 ` [tarantool-patches] [PATCH v1 12/12] sql: use diag_set() to set an error in SQL functions imeevma 2019-05-15 14:12 ` [tarantool-patches] " n.pettik 2019-05-25 9:45 ` Mergen Imeev 2019-05-25 10:36 ` Imeev Mergen
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1a6c14c7d0913a816a8b6280ddea742bd06903bd.1557056617.git.imeevma@gmail.com \ --to=imeevma@tarantool.org \ --cc=korablev@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH v1 10/12] sql: remove field errCode from struct sql' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox