Added comments for clarity

This commit is contained in:
Daylon Wilkins
2020-10-02 11:36:06 -07:00
committed by Daylon Wilkins
parent 7a3e1025c8
commit e7ca7cf6dd
2 changed files with 6 additions and 0 deletions

View File

@@ -156,6 +156,7 @@ SQL
@test "triggers: Upgrade dolt_schemas" {
rm -rf .dolt
# old_dolt_schemas was created using v0.19.1, which is pre-id change
cp -a $BATS_TEST_DIRNAME/helper/old_dolt_schemas/. ./.dolt/
run dolt sql -q "SELECT * FROM dolt_schemas" -r=csv
[ "$status" -eq "0" ]

View File

@@ -220,6 +220,11 @@ const (
// Tags for dolt_schemas table
// for info on unaligned constant: https://github.com/dolthub/dolt/pull/663
const (
// Old tag numbers for reference
//DoltSchemasTypeTag = iota + SystemTableReservedMin + uint64(4003)
//DoltSchemasNameTag
//DoltSchemasFragmentTag
DoltSchemasIdTag = iota + SystemTableReservedMin + uint64(4007)
DoltSchemasTypeTag
DoltSchemasNameTag