diff options
author | drh <> | 2023-07-28 18:37:13 +0000 |
---|---|---|
committer | drh <> | 2023-07-28 18:37:13 +0000 |
commit | 58b5921ca460032c6d19bfe6f0f736763f33c3bc (patch) | |
tree | 4a7a6bafd520c7f78834a9b3be38d7f19718da52 /src/select.c | |
parent | 58bf53d5730d327d17446caeda31a926b9cb66f3 (diff) | |
parent | 47079b19dfae85cba60a5c976d258b4ce6405d6c (diff) | |
download | sqlite-58b5921ca460032c6d19bfe6f0f736763f33c3bc.tar.gz sqlite-58b5921ca460032c6d19bfe6f0f736763f33c3bc.zip |
Add the sqlite3_stmt_explain() API.
FossilOrigin-Name: 0443c0ef85f8f6f3efdee68bf59126c9459f08a58458756f8cbeeaf043d43a86
Diffstat (limited to 'src/select.c')
-rw-r--r-- | src/select.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/select.c b/src/select.c index 4af812fa0..098b74584 100644 --- a/src/select.c +++ b/src/select.c @@ -2101,13 +2101,6 @@ void sqlite3GenerateColumnNames( int fullName; /* TABLE.COLUMN if no AS clause and is a direct table ref */ int srcName; /* COLUMN or TABLE.COLUMN if no AS clause and is direct */ -#ifndef SQLITE_OMIT_EXPLAIN - /* If this is an EXPLAIN, skip this step */ - if( pParse->explain ){ - return; - } -#endif - if( pParse->colNamesSet ) return; /* Column names are determined by the left-most term of a compound select */ while( pSelect->pPrior ) pSelect = pSelect->pPrior; |