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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Tobias Frost
  • Date: 2012-04-04 15:12:07 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120404151207-xwsgn1xegslle4p0
Tags: 1:7.1.32-rc-1
* New upstream release.
* Plugin-filtered-replicator upstream removed and will no longer be built.
* Updating d/*install files to accommodate upstream changes from drizzle7
  to drizzle
* Added symlink in libdrizzledmessage-dev to library
* libdrizzle: soname-bump
* Rename package drizzle-plugin-performance-dictionary to shorten package name
  (due to linitan warning package-has-long-file-name)
* Debian/control: removed unused substitution variable ${shlibs:Depends} for
  -dbg and -dev packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Tests the PRINT_TRANSACTION_MESSAGE() UDF which is part of the
3
 
# transaction log module
4
 
#
5
 
 
6
 
# Populate log with some records...
7
 
--source ../plugin/transaction_log/tests/t/insert.inc
8
 
 
9
 
# Query the INFORMATION_SCHEMA.TRANSACTION_LOG_ENTRIES view
10
 
# and call the PRINT_TRANSACTION_MESSAGE() UDF
11
 
 
12
 
SELECT LENGTH(PRINT_TRANSACTION_MESSAGE('transaction.log', ENTRY_OFFSET)) > 0 as checked
13
 
FROM DATA_DICTIONARY.TRANSACTION_LOG_ENTRIES
14
 
LIMIT 1;
15
 
 
16
 
# Truncate the log file to reset for the next test
17
 
--source ../plugin/transaction_log/tests/t/truncate_log.inc