提交 904fe287 authored 作者: andrei's avatar andrei

code review comments addressed

上级 00dbc15d
...@@ -818,6 +818,10 @@ public class Session extends SessionWithState implements TransactionStore.Rollba ...@@ -818,6 +818,10 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
} }
} }
} }
// Because cache may have captured query result (in Query.lastResult),
// which is based on data from uncommitted transaction.,
// It is not valid after rollback, therefore cache has to be cleared.
if(queryCache != null) { if(queryCache != null) {
queryCache.clear(); queryCache.clear();
} }
...@@ -1750,8 +1754,8 @@ public class Session extends SessionWithState implements TransactionStore.Rollba ...@@ -1750,8 +1754,8 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
@Override @Override
public void onRollback(MVMap<Object, VersionedValue> map, Object key, public void onRollback(MVMap<Object, VersionedValue> map, Object key,
VersionedValue existingValue, VersionedValue existingValue,
VersionedValue restoredValue) { VersionedValue restoredValue) {
// Here we are relying on the fact that map which backs table's primary index // Here we are relying on the fact that map which backs table's primary index
// has the same name as the table itself // has the same name as the table itself
MVTableEngine.Store store = database.getMvStore(); MVTableEngine.Store store = database.getMvStore();
...@@ -1788,19 +1792,17 @@ public class Session extends SessionWithState implements TransactionStore.Rollba ...@@ -1788,19 +1792,17 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
private static Row getRowFromVersionedValue(MVTable table, long recKey, private static Row getRowFromVersionedValue(MVTable table, long recKey,
VersionedValue versionedValue) { VersionedValue versionedValue) {
Object value = versionedValue == null ? null : versionedValue.value; Object value = versionedValue == null ? null : versionedValue.value;
Row result = null; if (value == null) {
if (value != null) { return null;
Row result11; }
if(value instanceof Row) { Row result;
result11 = (Row) value; if(value instanceof Row) {
assert result11.getKey() == recKey result = (Row) value;
: result11.getKey() + " != " + recKey; assert result.getKey() == recKey : result.getKey() + " != " + recKey;
} else { } else {
ValueArray array = (ValueArray) value; ValueArray array = (ValueArray) value;
result11 = table.createRow(array.getList(), 0); result = table.createRow(array.getList(), 0);
result11.setKey(recKey); result.setKey(recKey);
}
result = result11;
} }
return result; return result;
} }
......
...@@ -1103,11 +1103,11 @@ public class MVStore { ...@@ -1103,11 +1103,11 @@ public class MVStore {
} }
} }
} finally { } finally {
// in any case reset the current store version, // in any case reset the current store version,
// to allow closing the store // to allow closing the store
currentStoreVersion = -1; currentStoreVersion = -1;
currentStoreThread.set(null); currentStoreThread.set(null);
} }
} }
private void storeNow() { private void storeNow() {
......
...@@ -98,7 +98,7 @@ public class Transaction { ...@@ -98,7 +98,7 @@ public class Transaction {
public final long sequenceNum; public final long sequenceNum;
/* /*
* Transation state is an atomic composite field: * Transaction state is an atomic composite field:
* bit 45 : flag whether transaction had rollback(s) * bit 45 : flag whether transaction had rollback(s)
* bits 44-41 : status * bits 44-41 : status
* bits 40 : overflow control bit, 1 indicates overflow * bits 40 : overflow control bit, 1 indicates overflow
...@@ -166,9 +166,9 @@ public class Transaction { ...@@ -166,9 +166,9 @@ public class Transaction {
currentStatus == STATUS_COMMITTED || currentStatus == STATUS_COMMITTED ||
currentStatus == STATUS_ROLLED_BACK; currentStatus == STATUS_ROLLED_BACK;
break; break;
default: default:
valid = false; valid = false;
break; break;
} }
if (!valid) { if (!valid) {
throw DataUtils.newIllegalStateException( throw DataUtils.newIllegalStateException(
...@@ -276,7 +276,7 @@ public class Transaction { ...@@ -276,7 +276,7 @@ public class Transaction {
* @return the transaction map * @return the transaction map
*/ */
public <K, V> TransactionMap<K, V> openMap(String name, public <K, V> TransactionMap<K, V> openMap(String name,
DataType keyType, DataType valueType) { DataType keyType, DataType valueType) {
MVMap<K, VersionedValue> map = store.openMap(name, keyType, valueType); MVMap<K, VersionedValue> map = store.openMap(name, keyType, valueType);
return openMap(map); return openMap(map);
} }
......
...@@ -47,7 +47,7 @@ public class TransactionMap<K, V> { ...@@ -47,7 +47,7 @@ public class TransactionMap<K, V> {
final Transaction transaction; final Transaction transaction;
TransactionMap(Transaction transaction, MVMap<K, VersionedValue> map, TransactionMap(Transaction transaction, MVMap<K, VersionedValue> map,
int mapId) { int mapId) {
this.transaction = transaction; this.transaction = transaction;
this.map = map; this.map = map;
this.mapId = mapId; this.mapId = mapId;
......
...@@ -63,8 +63,20 @@ public class TransactionStore { ...@@ -63,8 +63,20 @@ public class TransactionStore {
private final DataType dataType; private final DataType dataType;
/**
* This BitSet is used as vacancy indicator for transaction slots in transactions[].
* It provides easy way to find first unoccupied slot, and also allows for copy-on-write
* non-blocking updates.
*/
final AtomicReference<VersionedBitSet> openTransactions = new AtomicReference<>(new VersionedBitSet()); final AtomicReference<VersionedBitSet> openTransactions = new AtomicReference<>(new VersionedBitSet());
/**
* This is intended to be the source of ultimate truth about transaction being committed.
* Once bit is set, corresponding transaction is logically committed,
* although it might be plenty of "uncommitted" entries in various maps
* and undo record are still around.
* Nevertheless, all of those should be considered by other transactions as committed.
*/
final AtomicReference<BitSet> committingTransactions = new AtomicReference<>(new BitSet()); final AtomicReference<BitSet> committingTransactions = new AtomicReference<>(new BitSet());
private boolean init; private boolean init;
...@@ -78,6 +90,7 @@ public class TransactionStore { ...@@ -78,6 +90,7 @@ public class TransactionStore {
/** /**
* Array holding all open transaction objects. * Array holding all open transaction objects.
* Position in array is "transaction id". * Position in array is "transaction id".
* VolatileReferenceArray would do the job here, but there is no such thing in Java yet
*/ */
private final AtomicReferenceArray<Transaction> transactions = new AtomicReferenceArray<>(MAX_OPEN_TRANSACTIONS); private final AtomicReferenceArray<Transaction> transactions = new AtomicReferenceArray<>(MAX_OPEN_TRANSACTIONS);
...@@ -91,7 +104,7 @@ public class TransactionStore { ...@@ -91,7 +104,7 @@ public class TransactionStore {
* Hard limit on the number of concurrently opened transactions * Hard limit on the number of concurrently opened transactions
*/ */
// TODO: introduce constructor parameter instead of a static field, driven by URL parameter // TODO: introduce constructor parameter instead of a static field, driven by URL parameter
private static final int MAX_OPEN_TRANSACTIONS = 0x100; private static final int MAX_OPEN_TRANSACTIONS = 0x400;
...@@ -195,7 +208,7 @@ public class TransactionStore { ...@@ -195,7 +208,7 @@ public class TransactionStore {
*/ */
public void setMaxTransactionId(int max) { public void setMaxTransactionId(int max) {
DataUtils.checkArgument(max <= MAX_OPEN_TRANSACTIONS, DataUtils.checkArgument(max <= MAX_OPEN_TRANSACTIONS,
"Concurrent transactions limit is too hight: {0}", max); "Concurrent transactions limit is too high: {0}", max);
this.maxTransactionId = max; this.maxTransactionId = max;
} }
...@@ -322,7 +335,7 @@ public class TransactionStore { ...@@ -322,7 +335,7 @@ public class TransactionStore {
"There are {0} open transactions", "There are {0} open transactions",
transactionId - 1); transactionId - 1);
} }
VersionedBitSet clone = original.cloneIt(); VersionedBitSet clone = original.clone();
clone.set(transactionId); clone.set(transactionId);
sequenceNo = clone.getVersion() + 1; sequenceNo = clone.getVersion() + 1;
clone.setVersion(sequenceNo); clone.setVersion(sequenceNo);
...@@ -331,8 +344,8 @@ public class TransactionStore { ...@@ -331,8 +344,8 @@ public class TransactionStore {
Transaction transaction = new Transaction(this, transactionId, sequenceNo, status, name, logId, listener); Transaction transaction = new Transaction(this, transactionId, sequenceNo, status, name, logId, listener);
success = transactions.compareAndSet(transactionId, null, transaction); assert transactions.get(transactionId) == null;
assert success; transactions.set(transactionId, transaction);
return transaction; return transaction;
} }
...@@ -420,7 +433,9 @@ public class TransactionStore { ...@@ -420,7 +433,9 @@ public class TransactionStore {
* *
* @param t the transaction * @param t the transaction
* @param maxLogId the last log id * @param maxLogId the last log id
* @param hasChanges false for R/O tx * @param hasChanges true if there were updates within specified
* transaction (even fully rolled back),
* false if just data access
*/ */
void commit(Transaction t, long maxLogId, boolean hasChanges) { void commit(Transaction t, long maxLogId, boolean hasChanges) {
if (store.isClosed()) { if (store.isClosed()) {
...@@ -571,12 +586,14 @@ public class TransactionStore { ...@@ -571,12 +586,14 @@ public class TransactionStore {
int txId = t.transactionId; int txId = t.transactionId;
t.setStatus(Transaction.STATUS_CLOSED); t.setStatus(Transaction.STATUS_CLOSED);
boolean success = transactions.compareAndSet(txId, t, null); assert transactions.get(txId) == t : transactions.get(txId) + " != " + t;
assert success; transactions.set(txId, null);
boolean success;
do { do {
VersionedBitSet original = openTransactions.get(); VersionedBitSet original = openTransactions.get();
assert original.get(txId); assert original.get(txId);
VersionedBitSet clone = original.cloneIt(); VersionedBitSet clone = original.clone();
clone.clear(txId); clone.clear(txId);
success = openTransactions.compareAndSet(original, clone); success = openTransactions.compareAndSet(original, clone);
} while(!success); } while(!success);
...@@ -755,16 +772,31 @@ public class TransactionStore { ...@@ -755,16 +772,31 @@ public class TransactionStore {
} }
} }
/**
* This listener can be registered with the transaction to be notified of
* every compensating change during transaction rollback.
* Normally this is not required, if no external resources were modified,
* because state of all transactional maps will be restored automatically.
* Only state of external resources, possibly modified by triggers
* need to be restored.
*/
public interface RollbackListener { public interface RollbackListener {
RollbackListener NONE = new RollbackListener() { RollbackListener NONE = new RollbackListener() {
@Override @Override
public void onRollback(MVMap<Object, VersionedValue> map, Object key, public void onRollback(MVMap<Object, VersionedValue> map, Object key,
VersionedValue existingValue, VersionedValue restoredValue) { VersionedValue existingValue, VersionedValue restoredValue) {
// do nothing
} }
}; };
/**
* Notified of a single map change (add/update/remove)
* @param map modified
* @param key of the modified entry
* @param existingValue value in the map (null if delete is rolled back)
* @param restoredValue value to be restored (null if add is rolled back)
*/
void onRollback(MVMap<Object,VersionedValue> map, Object key, void onRollback(MVMap<Object,VersionedValue> map, Object key,
VersionedValue existingValue, VersionedValue restoredValue); VersionedValue existingValue, VersionedValue restoredValue);
} }
......
...@@ -10,8 +10,6 @@ import java.util.BitSet; ...@@ -10,8 +10,6 @@ import java.util.BitSet;
/** /**
* Class VersionedBitSet extends standard BitSet to add a version field. * Class VersionedBitSet extends standard BitSet to add a version field.
* This will allow bit set and version to be changed atomically. * This will allow bit set and version to be changed atomically.
*
* @author <a href='mailto:andrei.tokar@gmail.com'>Andrei Tokar</a>
*/ */
final class VersionedBitSet extends BitSet final class VersionedBitSet extends BitSet
{ {
...@@ -27,15 +25,8 @@ final class VersionedBitSet extends BitSet ...@@ -27,15 +25,8 @@ final class VersionedBitSet extends BitSet
this.version = version; this.version = version;
} }
public VersionedBitSet cloneIt() {
VersionedBitSet res = (VersionedBitSet) super.clone();
res.version = version;
return res;
}
@Override @Override
@SuppressWarnings("MethodDoesntCallSuperMethod") public VersionedBitSet clone() {
public Object clone() { return (VersionedBitSet)super.clone();
return cloneIt();
} }
} }
...@@ -107,7 +107,7 @@ public class TestMVStoreTool extends TestBase { ...@@ -107,7 +107,7 @@ public class TestMVStoreTool extends TestBase {
assertEquals(size2, FileUtils.size(fileNameNew)); assertEquals(size2, FileUtils.size(fileNameNew));
MVStoreTool.compact(fileNameCompressed, true); MVStoreTool.compact(fileNameCompressed, true);
assertEquals(size3, FileUtils.size(fileNameCompressed)); assertEquals(size3, FileUtils.size(fileNameCompressed));
trace("Recompacted in " + (System.currentTimeMillis() - start) + " ms."); trace("Re-compacted in " + (System.currentTimeMillis() - start) + " ms.");
start = System.currentTimeMillis(); start = System.currentTimeMillis();
MVStore s1 = new MVStore.Builder(). MVStore s1 = new MVStore.Builder().
......
...@@ -17,7 +17,7 @@ agent agentlib agg aggregate aggregated aggregates aggregating aggressive agile ...@@ -17,7 +17,7 @@ agent agentlib agg aggregate aggregated aggregates aggregating aggressive agile
agrave agree agreeable agreed agreement agreements agrees ahead agrave agree agreeable agreed agreement agreements agrees ahead
ahilmnqbjkcdeopfrsg aid air ajax alan alarm ale alefsym alert alessio alexander alfki ahilmnqbjkcdeopfrsg aid air ajax alan alarm ale alefsym alert alessio alexander alfki
algo algorithm algorithms alias aliased aliases aliasing align aligned alignment algo algorithm algorithms alias aliased aliases aliasing align aligned alignment
alive all allclasses alleged alleging allocate allocated allocates allocating alive all allclasses alleged alleging alloc allocate allocated allocates allocating
allocation allow allowed allowing allows almost aload alone along alpha allocation allow allowed allowing allows almost aload alone along alpha
alphabetical alphabetically already also alt alter altering alternate alternative alphabetical alphabetically already also alt alter altering alternate alternative
alternatives alters although always ambiguity ambiguous america among amount amp alternatives alters although always ambiguity ambiguous america among amount amp
...@@ -108,11 +108,12 @@ combo combobox come comes coming comma command commands commas comment commented ...@@ -108,11 +108,12 @@ combo combobox come comes coming comma command commands commas comment commented
comments commercial commit commits committed committing common commonly commons comments commercial commit commits committed committing common commonly commons
communicates communication community comp compact compacted compacting compaction communicates communication community comp compact compacted compacting compaction
compacts companies company comparable comparative comparator compare compared compacts companies company comparable comparative comparator compare compared
compares comparing comparison comparisons compatibility compatible compensation compares comparing comparison comparisons compatibility compatible
compilable compilation compile compiled compiler compiles compiling complete compensation compensating compilable compilation compile compiled
completed completely completion complex complexity compliance compliant compiler compiles compiling complete completed completely
completion complex complexity compliance compliant
complicate complicated complies comply complying component components composed complicate complicated complies comply complying component components composed
composite compound compounds compress compressed compresses compressibility compose composite compound compounds compress compressed compresses compressibility
compressible compressing compression compressor compromise compsci computation compressible compressing compression compressor compromise compsci computation
compute computed computer computers computing con concat concatenate concatenated compute computed computer computers computing con concat concatenate concatenated
concatenates concatenating concatenation concentrate concept concerning concrete concatenates concatenating concatenation concentrate concept concerning concrete
...@@ -187,8 +188,8 @@ differs dig digest digit digital digits diligence dim dimension dimensional ...@@ -187,8 +188,8 @@ differs dig digest digit digital digits diligence dim dimension dimensional
dimensions dimitrijs dinamica dining dip dips dir direct direction directly dimensions dimitrijs dinamica dining dip dips dir direct direction directly
directories directory directs dirname dirs dirty disable disabled directories directory directs dirname dirs dirty disable disabled
disablelastaccess disables disabling disadvantage disadvantages disallow disablelastaccess disables disabling disadvantage disadvantages disallow
disallowed disappear disappeared disc disclaimed disclaimer disclaimers disclaims disallowed disappear disappearance disappeared disc disclaimed disclaimer disclaimers
disclosed disconnect disconnected disconnecting disconnections disconnects disclaims disclosed disconnect disconnected disconnecting disconnections disconnects
discontinue discount discriminator discussion disjunctive disk disks dispatch discontinue discount discriminator discussion disjunctive disk disks dispatch
dispatcher display displayed displaying displays dispose disposed disposition dispatcher display displayed displaying displays dispose disposed disposition
disputes dist distance distinct distinguish distinguishable distinguished disputes dist distance distinct distinguish distinguishable distinguished
...@@ -212,16 +213,16 @@ effort egrave eid eing eins einstellung either elapsed eldest elect electronic ...@@ -212,16 +213,16 @@ effort egrave eid eing eins einstellung either elapsed eldest elect electronic
element elements elephant elig eligible eliminate elisabetta ell ellipsis elm else element elements elephant elig eligible eliminate elisabetta ell ellipsis elm else
elsewhere elton email emails embedded embedding embeds emergency emf emit emitted elsewhere elton email emails embedded embedding embeds emergency emf emit emitted
emma empire employee empty emsp emulate emulated emulates emulation enable emma empire employee empty emsp emulate emulated emulates emulation enable
enabled enables enabling enc encapsulates enclose enclosed enclosing encode enabled enables enabling enc encapsulate encapsulates enclose enclosed enclosing
encoded encoder encodes encoding encountered encounters encrypt encrypted encode encoded encoder encodes encoding encountered encounters encrypt encrypted
encrypting encryption encrypts end ended enderbury endif ending endings endless encrypting encryption encrypts end ended enderbury endif ending endings endless
endlessly endorse ends enforce enforceability enforceable enforced engine engines endlessly endorse ends enforce enforceability enforceable enforced engine engines
english enhance enhanced enhancement enhancer enlarge enough enqueued ensp ensure english enhance enhanced enhancement enhancer enlarge enough enqueued ensp ensure
ensures ensuring enter entered entering enterprise entire entities entity entrance ensures ensuring enter entered entering enterprise entire entities entity entrance
entries entry enum enumerate enumerated enumerator enumerators enumeration env envelope entries entry enum enumerate enumerated enumerator enumerators enumeration env envelope
environment environments enwiki eof eol epl epoch epoll epsilon equal equality equally environment environments enwiki eof eol epl epoch epoll epsilon equal equality equally
equals equipment equitable equiv equivalent equivalents era erable eremainder eric equals equipment equitable equiv equivalence equivalent equivalents era erable eremainder
erik err error errorlevel errors erwan ery esc escape escaped escapes escaping eric erik err error errorlevel errors erwan ery esc escape escaped escapes escaping
escargots ese espa essential essentials established estimate estimated estimates escargots ese espa essential essentials established estimate estimated estimates
estimating estimation estoppel eta etc eth etl euml euro europe europeu euros eva eval estimating estimation estoppel eta etc eth etl euml euro europe europeu euros eva eval
evaluatable evaluate evaluated evaluates evaluating evaluation evdokimov even evenly evaluatable evaluate evaluated evaluates evaluating evaluation evdokimov even evenly
...@@ -301,8 +302,8 @@ ideas identical identification identified identifier identifiers identify identi ...@@ -301,8 +302,8 @@ ideas identical identification identified identifier identifiers identify identi
identities identity idiomatic idiv idle ids idx idxname iee ieee iexcl iface ifeq identities identity idiomatic idiv idle ids idx idxname iee ieee iexcl iface ifeq
ifexists ifge ifgt ifle iflt ifne ifnonnull ifnull iframe ifx ignore ignorecase ignored ifexists ifge ifgt ifle iflt ifne ifnonnull ifnull iframe ifx ignore ignorecase ignored
ignoredriverprivileges ignorelist ignores ignoring ignite igrave iinc ikura ikvm ikvmc ignoredriverprivileges ignorelist ignores ignoring ignite igrave iinc ikura ikvm ikvmc
illegal iload image imageio images imaginary img iml immediately immutable imola imp illegal illegally iload image imageio images imaginary img iml immediately immutable
impact imperial impersonate impl imple implement implementation implementations imola imp impact imperial impersonate impl imple implement implementation implementations
implemented implementing implements implication implicit implicitly implied implemented implementing implements implication implicit implicitly implied
implies import important imported importing imports impose imposes impossible implies import important imported importing imports impose imposes impossible
improperly improve improved improvement improvements improves improving imul improperly improve improved improvement improvements improves improving imul
...@@ -373,8 +374,8 @@ literal literals litigation little live lives ljava llc lload lmul lneg lnot loa ...@@ -373,8 +374,8 @@ literal literals litigation little live lives ljava llc lload lmul lneg lnot loa
loaded loader loading loads lob lobs local localdb locale locales localhost loaded loader loading loads lob lobs local localdb locale locales localhost
locality localization localized localname locals locate located locates location locality localization localized localname locals locate located locates location
locations locators lock locked locker locking locks log logback logged logger locations locators lock locked locker locking locks log logback logged logger
logging logic logical login logins logo logos logout logs logsize long longblob logging logic logical logically login logins logo logos logout logs logsize long
longer longest longitude longnvarchar longs longtext longvarbinary longvarchar longblob longer longest longitude longnvarchar longs longtext longvarbinary longvarchar
look lookahead looking looks lookup lookups lookupswitch loop loopback looping look lookahead looking looks lookup lookups lookupswitch loop loopback looping
loops loose lor lore lose losing loss losses lossless losslessly lost lot lots loops loose lor lore lose losing loss losses lossless losslessly lost lot lots
low lowast lower lowercase lowercased lowest loz lpad lrem lreturn lrm lru lsaquo low lowast lower lowercase lowercased lowest loz lpad lrem lreturn lrm lru lsaquo
...@@ -412,20 +413,20 @@ mpl msg mssql mssqlserver msxml much mueller mul multi multianewarray multipart ...@@ -412,20 +413,20 @@ mpl msg mssql mssqlserver msxml much mueller mul multi multianewarray multipart
multiple multiples multiplication multiplied multiply multiplying multithreaded multiple multiples multiplication multiplied multiply multiplying multithreaded
multithreading multiuser music must mutable mutate mutation mutationtest muttered multithreading multiuser music must mutable mutate mutation mutationtest muttered
mutton mutually mvc mvcc mvn mvr mvstore mydb myna myself mysql mysqladmin mysqld mutton mutually mvc mvcc mvn mvr mvstore mydb myna myself mysql mysqladmin mysqld
mystery mystic myydd nabla naive naked name namecnt named names namespace naming mysterious mystery mystic myydd nabla naive naked name namecnt named names namespace
nan nano nanos nanosecond nanoseconds nantes napping national nations native naming nan nano nanos nanosecond nanoseconds nantes napping national nations native
natural nature naur nav navigable navigate navigation navigator nbsp ncgc nchar natural nature naur nav navigable navigate navigation navigator nbsp ncgc nchar
nclob ncr ndash near nearest nearly necessarily necessary nederlands need needed nclob ncr ndash near nearest nearly necessarily necessary nederlands need needed
needing needs neg negate negated negating negation negative negligence needing needs neg negate negated negating negation negative negligence
negotiations neighbor neither nelson neo nest nested nesterov nesting net negotiations neighbor neither nelson neo nest nested nesterov nesting net
netbeans netherlands netscape netstat network networked networks never new netbeans netherlands netscape netstat network networked networks never nevertheless
newarray newer newest newline newlines newly news newsfeed newsfeeds newsgroups new newarray newer newest newline newlines newly news newsfeed newsfeeds newsgroups
newsletter next nextval nfontes nger nice nicer nicolas night nih niklas nikolaj newsletter next nextval nfontes nger nice nicer nicolas night nih niklas nikolaj
niku nine nio nls nlst noah nobody nobuffer nocache nocheck nocycle nodata nodded niku nine nio nls nlst noah nobody nobuffer nocache nocheck nocycle nodata nodded
node nodelay nodes noel noframe noframes noindex noise nomaxvalue nominvalue non node nodelay nodes noel noframe noframes noindex noinspection noise nomaxvalue
nonce noncompliance none noop nop nopack nopasswords nopmd nor noresize normal nominvalue non nonce noncompliance none noop nop nopack nopasswords nopmd nor
normalize normalized normally northern northwoods norway nosettings not nota noresize normal normalize normalized normally northern northwoods norway nosettings
notably notation notch note notes nothing notice notices notification notified not nota notably notation notch note notes nothing notice notices notification notified
notifies notify notifying notin notranslate notwithstanding nougat nov novelist notifies notify notifying notin notranslate notwithstanding nougat nov novelist
november now nowait nowrap npl nsi nsis nsub ntext ntfs nth ntilde nucleus nul november now nowait nowrap npl nsi nsis nsub ntext ntfs nth ntilde nucleus nul
null nullable nullid nullif nulls nullsoft num number numbering numbers numeral null nullable nullid nullif nulls nullsoft num number numbering numbers numeral
...@@ -471,7 +472,7 @@ petra pfgrc pfister pgdn pgup phane phantom phase phi philip philippe ...@@ -471,7 +472,7 @@ petra pfgrc pfister pgdn pgup phane phantom phase phi philip philippe
philosophers phone php phrase phrases phromros physical pick picked pickle pico philosophers phone php phrase phrases phromros physical pick picked pickle pico
pid pieces pier pietrzak pilot piman ping pinned pipe piped pit pitest piv pivot pid pieces pier pietrzak pilot piman ping pinned pipe piped pit pitest piv pivot
pkcolumn pkcs pktable place placed placeholders places placing plain plaintext pkcolumn pkcs pktable place placed placeholders places placing plain plaintext
plan planned planner planning plans plant platform platforms play player please plan planned planner planning plans plant plenty platform platforms play player please
plug pluggable plugin plugins plus plusmn png point pointbase pointed pointer pointers plug pluggable plugin plugins plus plusmn png point pointbase pointed pointer pointers
pointing points poker poland polar pole poleposition policies policy polish poll pointing points poker poland polar pole poleposition policies policy polish poll
polling polski poly polygon pom pondered poodle pool poolable pooled pooling polling polski poly polygon pom pondered poodle pool poolable pooled pooling
...@@ -658,18 +659,18 @@ tools toolset top topic topics toplink topology tort total totals touch toward ...@@ -658,18 +659,18 @@ tools toolset top topic topics toplink topology tort total totals touch toward
tpc trace traces tracing track tracked tracker tracking tracks trade trademark tpc trace traces tracing track tracked tracker tracking tracks trade trademark
trademarks traditional traditionally trailing train trans transact transaction trademarks traditional traditionally trailing train trans transact transaction
transactional transactionally transactions transfer transferred transferring transactional transactionally transactions transfer transferred transferring
transform transformation transient transiently transition transitional transform transformation transient transiently transition transitional transitioned
transitions translatable translate translated translates translating translation transitions translatable translate translated translates translating translation
translations translator transmission transmitted transparent transport travel translations translator transmission transmitted transparent transport travel
traversal traverse traversing tray tread treat treated treatment trede tree trees traversal traverse traversing tray tread treat treated treatment trede tree trees
trial trick tricky tried tries trig trigger triggered triggers trigonometric trim trial trick tricky tried tries trig trigger triggered triggers trigonometric trim
trimmed trims trip trivial trouble true trunc truncate truncated truncates trimmed trims trip trivial trouble true trunc truncate truncated truncates
truncating truncation trunk trust trusted trx try trying tsi tsmsys tsv tucc truncating truncation trunk trust trusted truth trx try trying tsi tsmsys tsv tucc
tucker tuesday tune tunes tuning turkel turkish turn turned turns tutorial tweak tucker tuesday tune tunes tuning turkel turkish turn turned turns tutorial tweak
tweaking tweet twelve twice twitter two txt tymczak type typed typeof types typesafe tweaking tweet twelve twice twitter two txt tymczak type typed typeof types typesafe
typical typically typing typlen typname typo typos typtypmod tzd tzh tzm tzr typical typically typing typlen typname typo typos typtypmod tzd tzh tzm tzr
uacute uarr ubuntu ucase ucb ucirc ucs udt udts uffff ugly ugrave uid uint ujint uacute uarr ubuntu ucase ucb ucirc ucs udt udts uffff ugly ugrave uid uint ujint
ujlong ulimit uml umlaut umr unable unaligned unary unavailability unbound ujlong ulimit ultimate uml umlaut umr unable unaligned unary unavailability unbound
uncached uncaught unchanged unchecked uncle unclear unclosed uncommitted uncommon uncached uncaught unchanged unchecked uncle unclear unclosed uncommitted uncommon
uncompressed undefined under underflow undergraduate underline underlined uncompressed undefined under underflow undergraduate underline underlined
underlying underneath underscore understand understanding understands understood underlying underneath underscore understand understanding understands understood
...@@ -679,7 +680,7 @@ unindexed uninitialized uninstall uninteresting uninterpreted uninterruptible ...@@ -679,7 +680,7 @@ unindexed uninitialized uninstall uninteresting uninterpreted uninterruptible
union unique uniquely uniqueness uniques unit united units universal universally union unique uniquely uniqueness uniques unit united units universal universally
unix unixtime unknown unless unlike unlikely unlimited unlink unlinked unload unloaded unix unixtime unknown unless unlike unlikely unlimited unlink unlinked unload unloaded
unloading unloads unlock unlocked unlocking unlocks unmaintained unmappable unloading unloads unlock unlocked unlocking unlocks unmaintained unmappable
unmapped unmodified unmounted unnamed unnecessarily unnecessary unneeded uno unmapped unmodified unmounted unnamed unnecessarily unnecessary unneeded uno unoccupied
unofficial unordered unpredictable unquoted unrecognized unrecoverable unofficial unordered unpredictable unquoted unrecognized unrecoverable
unreferenced unregister unregisters unrelated unreleased unsafe unsaved unscaled unreferenced unregister unregisters unrelated unreleased unsafe unsaved unscaled
unset unsigned unsorted unspecified unstable unsuccessful unsupported unset unsigned unsorted unspecified unstable unsuccessful unsupported
...@@ -689,7 +690,7 @@ updating upgrade upgraded upgrader upgrades upgrading upload uploaded upon upper ...@@ -689,7 +690,7 @@ updating upgrade upgraded upgrader upgrades upgrading upload uploaded upon upper
uppercase uppercased uppermost ups upsert upset upside upsih upsilon urgent urgently uppercase uppercased uppermost ups upsert upset upside upsih upsilon urgent urgently
uri url urls usa usable usage usd use used useful user userbyid username userpwd uri url urls usa usable usage usd use used useful user userbyid username userpwd
users uses using usr usual usually utc ute utf util utilities utility utilization users uses using usr usual usually utc ute utf util utilities utility utilization
utilize utilizes utils uui uuid uuml vacuum vacuuming val valid validate utilize utilizes utils uui uuid uuml vacancy vacuum vacuuming val valid validate
validated validates validating validation validities validity validly valign validated validates validating validation validities validity validly valign
valuable value values van var varargs varbinary varchar variable variables valuable value values van var varargs varbinary varchar variable variables
variance variant variants varies various varp varray vars vary varying vasilakis variance variant variants varies various varp varray vars vary varying vasilakis
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论