diff options
author | drh <> | 2021-04-22 18:02:48 +0000 |
---|---|---|
committer | drh <> | 2021-04-22 18:02:48 +0000 |
commit | 3d8c92d041b380f66dc753ee38aaeb3b87d559cb (patch) | |
tree | ab4368a14a000ad98f27b6cb190cac54eee0c566 /src/sqliteInt.h | |
parent | a5b51b8715412c129eb243869063c87d95490956 (diff) | |
download | sqlite-3d8c92d041b380f66dc753ee38aaeb3b87d559cb.tar.gz sqlite-3d8c92d041b380f66dc753ee38aaeb3b87d559cb.zip |
Raise an error on an attempt to rename an eponymous virtual table.
FossilOrigin-Name: c7909e8e0d0577c6109f13c0b14fb565239aae8af8963d659f363e124f3437fc
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 21c6f6f30..b8b6b340d 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2236,6 +2236,7 @@ struct Table { #define TF_Shadow 0x1000 /* True for a shadow table */ #define TF_HasStat4 0x2000 /* STAT4 info available for this table */ #define TF_Ephemeral 0x4000 /* An ephemeral table */ +#define TF_Eponymous 0x8000 /* An eponymous virtual table */ /* ** Test to see whether or not a table is a virtual table. This is |