~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/sync_method_every_write.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Tests the behvaiour of the transaction-log-sync-method
 
3
# configuration option.  At this point, the only thing we
 
4
# can check is that the options appear in the INFORMATION_SCHEMA.VARIABLES
 
5
# view, since I can't think of a way to test fsync() behaviour
 
6
# properly through the test suite...it might be that we just do this
 
7
# basic variables test and rely on LCOV code coverage to check
 
8
# the sync methods?
 
9
#
 
10
 
 
11
SELECT * FROM DATA_DICTIONARY.GLOBAL_VARIABLES
 
12
WHERE Variable_name LIKE 'transaction_log%';