diff options
author | drh <> | 2022-04-12 18:40:14 +0000 |
---|---|---|
committer | drh <> | 2022-04-12 18:40:14 +0000 |
commit | 0879d5f9e04b3f309d8f9b669d29b12608052ebb (patch) | |
tree | 8d8fa4c1badd25993ac8e35d0a29ad741739085b /src | |
parent | 949e2ab49a8a815796d491506651043dd7d5fb55 (diff) | |
download | sqlite-0879d5f9e04b3f309d8f9b669d29b12608052ebb.tar.gz sqlite-0879d5f9e04b3f309d8f9b669d29b12608052ebb.zip |
For the bad join type error message "unknown or unsupported join type"
remove the "or unsupported" clause, because we now support all valid join
types.
FossilOrigin-Name: ab0a0562dd3594cf50ee56f6b3a5847fa5dcadf69146d560e3e7a95651b8f405
Diffstat (limited to 'src')
-rw-r--r-- | src/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c index 7230ff90c..af3c30bfe 100644 --- a/src/select.c +++ b/src/select.c @@ -298,7 +298,7 @@ int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){ const char *zSp2 = " "; if( pB==0 ){ zSp1++; } if( pC==0 ){ zSp2++; } - sqlite3ErrorMsg(pParse, "unknown or unsupported join type: " + sqlite3ErrorMsg(pParse, "unknown join type: " "%T%s%T%s%T", pA, zSp1, pB, zSp2, pC); jointype = JT_INNER; } |